/**
* Mislens 产品前台样式
*
* 文件位置：
* /wp-content/themes/mislens-theme-v2/assets/css/product.css
*
* 覆盖页面：
* - single-product.php
* - archive-product.php
*
* 设计原则：
* - 产品本身优先
* - 黑 / 白 / 灰为主
* - 少装饰
* - PC 信息密度适中
* - Mobile 保持快速浏览
*/


/* ==========================================================================
1. 通用产品容器
========================================================================== */

.mislens-product-page,
.mislens-product-archive {
    width: 100%;
    min-height: 70vh;

    background: #ffffff;

    color: #262626;
}

.mislens-product-container {
    width: min(
        1200px,
        calc(100% - 40px)
    );

    margin: 0 auto;

    padding:
        30px
        0
        80px;
}


/* ==========================================================================
2. 产品单页面包屑
========================================================================== */

.mislens-product-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 9px;

    margin-bottom: 28px;

    color: #888888;

    font-size: 13px;
    line-height: 1.5;
}

.mislens-product-breadcrumbs a {
    color: #666666;

    text-decoration: none;

    transition:
        color 0.2s ease;
}

.mislens-product-breadcrumbs a:hover {
    color: #222222;
}

.mislens-product-breadcrumbs > span:last-child {
    color: #444444;
}


/* ==========================================================================
3. 产品单页第一屏
========================================================================== */

.mislens-product-hero {
    display: grid;

    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(380px, 0.88fr);

    gap:
        clamp(46px, 5vw, 76px);

    align-items: start;

    padding-bottom: 64px;

    border-bottom:
        1px solid #ececec;
}


/* ==========================================================================
4. 产品图库
========================================================================== */

.mislens-product-gallery {
    min-width: 0;
}

.mislens-product-gallery__main {
    position: relative;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    aspect-ratio: 1 / 1;

    background: #f7f7f7;

    border:
        1px solid #eeeeee;

    border-radius: 4px;
}

.mislens-product-gallery__main-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
}

.mislens-product-gallery__thumbs {
    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 10px;

    margin-top: 14px;
}

.mislens-product-gallery__thumb {
    position: relative;

    overflow: hidden;

    display: block;

    aspect-ratio: 1 / 1;

    background: #f7f7f7;

    border:
        1px solid #e6e6e6;

    border-radius: 3px;

    text-decoration: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.mislens-product-gallery__thumb img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.mislens-product-gallery__thumb:hover,
.mislens-product-gallery__thumb.is-active {
    border-color: #222222;

    box-shadow:
        inset 0 0 0 1px #222222;
}

.mislens-product-gallery__empty {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    aspect-ratio: 1 / 1;

    background: #f7f7f7;

    border:
        1px dashed #cccccc;

    color: #999999;

    font-size: 14px;
}


/* ==========================================================================
5. 产品单页右栏
========================================================================== */

.mislens-product-summary {
    min-width: 0;

    padding-top: 4px;
}

.mislens-product-summary__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 9px;

    margin-bottom: 16px;
}

.mislens-product-type-badge,
.mislens-product-replacement {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 28px;

    padding:
        6px
        11px;

    border-radius: 999px;

    font-size: 11px;
    line-height: 1;
    font-weight: 700;

    letter-spacing: 0.05em;

    text-transform: uppercase;
}

.mislens-product-type-badge {
    background: #222222;

    color: #ffffff;
}

.mislens-product-replacement {
    background: #f2f2f2;

    color: #555555;
}

.mislens-product-title {
    margin:
        0
        0
        18px;

    color: #181818;

    font-size:
        clamp(30px, 3.2vw, 46px);

    line-height: 1.12;
    font-weight: 700;

    letter-spacing: -0.025em;
}

.mislens-product-sku {
    display: flex;
    align-items: baseline;

    gap: 10px;

    margin-bottom: 7px;

    color: #777777;

    font-size: 13px;
}

.mislens-product-sku span {
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.07em;

    text-transform: uppercase;
}

.mislens-product-sku strong {
    color: #333333;

    font-family:
        Consolas,
        Monaco,
        "Courier New",
        monospace;

    font-size: 14px;
    font-weight: 600;
}

.mislens-product-id {
    margin-bottom: 10px;

    color: #999999;

    font-size: 12px;
}

.mislens-product-id span {
    color: #666666;

    font-family:
        Consolas,
        Monaco,
        "Courier New",
        monospace;
}

.mislens-product-status {
    display: inline-flex;
    align-items: center;

    min-height: 30px;

    margin-top: 8px;

    padding:
        7px
        11px;

    border-radius: 4px;

    background: #f3f3f3;

    color: #555555;

    font-size: 12px;
    font-weight: 700;
}

.mislens-product-status--coming-soon {
    background: #fff5df;

    color: #8a6415;
}

.mislens-product-status--made-to-order {
    background: #eef3f7;

    color: #496276;
}

.mislens-product-style {
    margin-top: 16px;

    color: #777777;

    font-size: 14px;
    line-height: 1.6;
}


/* ==========================================================================
6. 产品字段标题
========================================================================== */

.mislens-product-field-label {
    margin-bottom: 11px;

    color: #555555;

    font-size: 11px;
    line-height: 1.3;
    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}


/* ==========================================================================
7. Color / SKU 选择
========================================================================== */

.mislens-product-variants {
    margin-top: 30px;
}

.mislens-product-variant-list {
    display: flex;
    flex-wrap: wrap;

    gap: 9px;
}

.mislens-product-variant {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 68px;
    min-height: 42px;

    padding:
        10px
        16px;

    background: #ffffff;

    border:
        1px solid #dcdcdc;

    border-radius: 3px;

    color: #333333;

    font-size: 13px;
    line-height: 1;
    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}

.mislens-product-variant:hover {
    border-color: #222222;

    color: #111111;
}

.mislens-product-variant.is-active {
    background: #222222;

    border-color: #222222;

    color: #ffffff;
}


/* ==========================================================================
8. 产品数据异常提示
========================================================================== */

.mislens-product-validation-notice {
    margin-top: 28px;

    padding:
        13px
        15px;

    border:
        1px solid #ead9b4;

    background: #fffaf0;

    color: #765c29;

    font-size: 13px;
    line-height: 1.55;
}


/* ==========================================================================
9. 商业信息
========================================================================== */

.mislens-product-commercial {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;

    margin-top: 28px;
}

.mislens-product-commercial__item {
    padding:
        15px
        16px;

    background: #f7f7f7;

    border:
        1px solid #ededed;

    border-radius: 3px;
}

.mislens-product-commercial__item span {
    display: block;

    margin-bottom: 5px;

    color: #888888;

    font-size: 10px;
    line-height: 1.3;
    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.mislens-product-commercial__item strong {
    display: block;

    color: #222222;

    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
}


/* ==========================================================================
10. 产品单页操作区
========================================================================== */

.mislens-product-actions {
    display: grid;

    gap: 10px;

    margin-top: 30px;
}

.mislens-product-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 50px;

    padding:
        13px
        22px;

    border-radius: 3px;

    font-size: 14px;
    line-height: 1;
    font-weight: 700;

    cursor: pointer;

    transition:
        opacity 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.mislens-product-button--primary {
    background: #222222;

    border:
        1px solid #222222;

    color: #ffffff;
}

.mislens-product-button--secondary {
    background: #ffffff;

    border:
        1px solid #222222;

    color: #222222;
}

.mislens-product-button:disabled {
    opacity: 0.45;

    cursor: not-allowed;
}

.mislens-product-actions__note {
    margin:
        1px
        0
        0;

    color: #999999;

    font-size: 11px;
    line-height: 1.5;

    text-align: center;
}

.mislens-product-master-note {
    margin-top: 28px;

    padding:
        14px
        16px;

    background: #f7f7f7;

    border-left:
        3px solid #333333;

    color: #555555;

    font-size: 13px;
    line-height: 1.55;
}


/* ==========================================================================
11. 产品内容区标题
========================================================================== */

.mislens-product-section-heading {
    margin-bottom: 28px;
}

.mislens-product-section-heading > span {
    display: block;

    margin-bottom: 8px;

    color: #8b8b8b;

    font-size: 10px;
    line-height: 1.3;
    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.mislens-product-section-heading h2 {
    margin: 0;

    color: #1f1f1f;

    font-size:
        clamp(25px, 2.6vw, 34px);

    line-height: 1.2;
    font-weight: 700;

    letter-spacing: -0.02em;
}


/* ==========================================================================
12. Specifications
========================================================================== */

.mislens-product-specifications {
    padding:
        62px
        0;

    border-bottom:
        1px solid #ececec;
}

.mislens-product-specifications__grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-top:
        1px solid #e7e7e7;

    border-left:
        1px solid #e7e7e7;
}

.mislens-product-specification {
    min-width: 0;

    padding:
        18px
        20px;

    border-right:
        1px solid #e7e7e7;

    border-bottom:
        1px solid #e7e7e7;

    background: #ffffff;
}

.mislens-product-specification span {
    display: block;

    margin-bottom: 7px;

    color: #888888;

    font-size: 10px;
    line-height: 1.3;
    font-weight: 700;

    letter-spacing: 0.07em;

    text-transform: uppercase;
}

.mislens-product-specification strong {
    display: block;

    color: #272727;

    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;

    overflow-wrap: anywhere;
}


/* ==========================================================================
13. Product Resources
========================================================================== */

.mislens-product-media-links {
    padding:
        62px
        0;

    border-bottom:
        1px solid #ececec;
}

.mislens-product-media-links__items {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}

.mislens-product-media-links__items a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding:
        10px
        16px;

    border:
        1px solid #dcdcdc;

    border-radius: 3px;

    background: #ffffff;

    color: #333333;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;
}

.mislens-product-media-links__items a:hover {
    background: #222222;

    border-color: #222222;

    color: #ffffff;
}


/* ==========================================================================
14. Explore This Series
========================================================================== */

.mislens-product-series {
    padding:
        62px
        0;
}

.mislens-product-series__grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}

.mislens-product-series-card {
    min-width: 0;

    border:
        1px solid #e8e8e8;

    background: #ffffff;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.mislens-product-series-card:hover {
    transform:
        translateY(-2px);

    border-color: #d3d3d3;

    box-shadow:
        0 10px 28px
        rgba(0, 0, 0, 0.055);
}

.mislens-product-series-card__image {
    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    width: 100%;

    aspect-ratio: 1 / 1;

    background: #f7f7f7;

    text-decoration: none;
}

.mislens-product-series-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.mislens-product-series-card__no-image {
    color: #a1a1a1;

    font-size: 12px;
}

.mislens-product-series-card__body {
    padding:
        16px
        16px
        18px;
}

.mislens-product-series-card__color {
    display: block;

    margin-bottom: 7px;

    color: #888888;

    font-size: 10px;
    line-height: 1.3;
    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.mislens-product-series-card h3 {
    margin:
        0
        0
        8px;

    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.mislens-product-series-card h3 a {
    color: #222222;

    text-decoration: none;
}

.mislens-product-series-card__sku {
    margin-bottom: 14px;

    color: #888888;

    font-family:
        Consolas,
        Monaco,
        "Courier New",
        monospace;

    font-size: 11px;
}

.mislens-product-series-card__link {
    display: inline-flex;

    color: #333333;

    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;

    text-decoration: none;

    border-bottom:
        1px solid #bbbbbb;
}


/* ==========================================================================
15. 产品归档面包屑
========================================================================== */

.mislens-product-archive-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 7px;

    margin-bottom: 24px;

    color: #888888;

    font-size: 12px;
    line-height: 1.5;
}

.mislens-product-archive-breadcrumbs a {
    color: #555555;

    text-decoration: none;
}

.mislens-product-archive-breadcrumbs a:hover {
    color: #111111;
}

.mislens-product-archive-breadcrumbs span:last-child {
    color: #222222;

    font-weight: 600;
}


/* ==========================================================================
16. 筛选抽屉
========================================================================== */

.mislens-product-filter-drawer {
    margin:
        0
        0
        22px;

    padding: 0;

    border: 0;
}

.mislens-product-filter-drawer__toggle {
    display: none;
}

.mislens-product-filter-drawer__body {
    display: block !important;
}


/* ==========================================================================
17. PC 筛选器
========================================================================== */

.mislens-product-filters {
    margin: 0;

    padding:
        18px
        20px;

    background: #f7f7f7;

    border:
        1px solid #ececec;
}

.mislens-product-filters__form {
    display: grid;

    grid-template-columns:
        minmax(260px, 1.6fr)
        minmax(170px, 0.85fr)
        minmax(170px, 0.85fr)
        minmax(170px, 0.85fr)
        auto
        auto;

    gap: 10px;

    align-items: center;
}

.mislens-product-filter-field {
    min-width: 0;
}

.mislens-product-filter-field input,
.mislens-product-filter-field select {
    width: 100%;
    height: 44px;

    margin: 0;

    padding:
        0
        13px;

    border:
        1px solid #d8d8d8;

    border-radius: 3px;

    background: #ffffff;

    color: #333333;

    font: inherit;

    font-size: 13px;

    outline: none;

    box-shadow: none;
}

.mislens-product-filter-field input:focus,
.mislens-product-filter-field select:focus {
    border-color: #777777;
}

.mislens-product-filter-field input::placeholder {
    color: #999999;
}

.mislens-product-filter-submit {
    min-height: 44px;

    padding:
        0
        23px;

    border:
        1px solid #222222;

    border-radius: 3px;

    background: #222222;

    color: #ffffff;

    font-size: 13px;
    line-height: 1;
    font-weight: 700;

    cursor: pointer;
}

.mislens-product-filter-submit:hover {
    background: #000000;

    border-color: #000000;
}

.mislens-product-filter-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding:
        0
        8px;

    color: #666666;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;
}

.mislens-product-filter-reset:hover {
    color: #111111;
}


/* ==========================================================================
18. 产品结果数量
========================================================================== */

.mislens-product-results-meta {
    display: flex;
    align-items: center;

    margin-bottom: 18px;

    color: #777777;

    font-size: 12px;
    line-height: 1.5;
}


/* ==========================================================================
19. 产品归档网格
========================================================================== */

.mislens-product-archive-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap:
        28px
        20px;
}


/* ==========================================================================
20. 产品卡片
========================================================================== */

.mislens-product-card {
    min-width: 0;

    overflow: hidden;

    background: #ffffff;

    border:
        1px solid #e8e8e8;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.mislens-product-card:hover {
    transform:
        translateY(-2px);

    border-color: #cccccc;

    box-shadow:
        0 10px 28px
        rgba(0, 0, 0, 0.045);
}


/* ==========================================================================
21. 产品卡图片
========================================================================== */

.mislens-product-card__image {
    position: relative;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    aspect-ratio: 1 / 1;

    background: #f6f6f6;

    text-decoration: none;
}

.mislens-product-card__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.mislens-product-card__no-image {
    color: #999999;

    font-size: 12px;
}

.mislens-product-card__status {
    position: absolute;

    top: 10px;
    right: 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 25px;

    padding:
        5px
        8px;

    background:
        rgba(255, 255, 255, 0.94);

    border:
        1px solid rgba(0, 0, 0, 0.08);

    border-radius: 3px;

    color: #444444;

    font-size: 9px;
    line-height: 1;
    font-weight: 700;

    text-transform: uppercase;
}


/* ==========================================================================
22. 产品卡文字区域
========================================================================== */

.mislens-product-card__body {
    padding:
        15px
        15px
        17px;
}

.mislens-product-card__name {
    margin-bottom: 11px;

    color: #202020;

    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
}

.mislens-product-card__sku {
    margin:
        -3px
        0
        11px;

    color: #888888;

    font-family:
        Consolas,
        Monaco,
        "Courier New",
        monospace;

    font-size: 10px;
    line-height: 1.4;
}


/* ==========================================================================
23. Master / SKU 操作按钮
========================================================================== */

.mislens-product-card__action {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 39px;

    margin-top: 3px;

    padding:
        9px
        14px;

    border-radius: 3px;

    font-family: inherit;

    font-size: 11px;
    line-height: 1;
    font-weight: 700;

    text-decoration: none;

    cursor: pointer;

    box-sizing: border-box;
}


/* Master：View Product */

.mislens-product-card__action--view {
    border:
        1px solid #222222;

    background: #ffffff;

    color: #222222;
}

.mislens-product-card__action--view:hover {
    background: #222222;

    color: #ffffff;
}


/* SKU：Add to List */

.mislens-product-card__action--add {
    border:
        1px solid #222222;

    background: #222222;

    color: #ffffff;
}

.mislens-product-card__action--add:hover {
    background: #000000;

    border-color: #000000;
}


/* ==========================================================================
24. Pagination
========================================================================== */

.mislens-product-pagination {
    display: flex;
    align-items: center;
    justify-content: center;

    margin-top: 48px;
}

.mislens-product-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 38px;
    height: 38px;

    margin:
        0
        3px;

    padding:
        0
        10px;

    border:
        1px solid #dedede;

    background: #ffffff;

    color: #444444;

    font-size: 12px;
    line-height: 1;
    font-weight: 600;

    text-decoration: none;
}

.mislens-product-pagination .page-numbers.current {
    background: #222222;

    border-color: #222222;

    color: #ffffff;
}

.mislens-product-pagination a.page-numbers:hover {
    border-color: #999999;

    color: #111111;
}


/* ==========================================================================
25. 空结果
========================================================================== */

.mislens-product-empty {
    padding:
        70px
        20px;

    border:
        1px solid #e8e8e8;

    background: #fafafa;

    text-align: center;
}

.mislens-product-empty h2 {
    margin:
        0
        0
        9px;

    color: #222222;

    font-size: 24px;
}

.mislens-product-empty p {
    margin:
        0
        0
        18px;

    color: #777777;

    font-size: 13px;
}

.mislens-product-empty a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding:
        0
        18px;

    background: #222222;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;
}


/* ==========================================================================
26. 平板
========================================================================== */

@media (max-width: 1100px) {

    .mislens-product-container {
        width:
            calc(100% - 32px);
    }


    /* 单页 */

    .mislens-product-hero {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(330px, 0.9fr);

        gap: 36px;
    }

    .mislens-product-gallery__thumbs {
        grid-template-columns:
            repeat(5, minmax(0, 1fr));
    }

    .mislens-product-specifications__grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .mislens-product-series__grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }


    /* 列表 */

    .mislens-product-filters__form {
        grid-template-columns:
            minmax(220px, 1.3fr)
            repeat(3, minmax(150px, 1fr));

        align-items: stretch;
    }

    .mislens-product-filter-submit,
    .mislens-product-filter-reset {
        width: 100%;
    }

    .mislens-product-archive-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }
}


/* ==========================================================================
27. Mobile
========================================================================== */

@media (max-width: 767px) {

    .mislens-product-container {
        width:
            calc(100% - 28px);

        padding:
            18px
            0
            56px;
    }


    /* ----------------------------------------------------------------------
    单页面包屑
    ---------------------------------------------------------------------- */

    .mislens-product-breadcrumbs {
        gap: 6px;

        margin-bottom: 17px;

        font-size: 11px;
    }


    /* ----------------------------------------------------------------------
    单页第一屏
    ---------------------------------------------------------------------- */

    .mislens-product-hero {
        display: block;

        padding-bottom: 44px;
    }

    .mislens-product-summary {
        padding-top: 28px;
    }

    .mislens-product-title {
        font-size: 29px;
        line-height: 1.15;
    }


    /* ----------------------------------------------------------------------
    单页图库
    ---------------------------------------------------------------------- */

    .mislens-product-gallery__thumbs {
        display: flex;

        gap: 8px;

        overflow-x: auto;

        padding-bottom: 5px;
    }

    .mislens-product-gallery__thumb {
        flex:
            0
            0
            67px;

        width: 67px;
    }


    /* ----------------------------------------------------------------------
    单页选择器
    ---------------------------------------------------------------------- */

    .mislens-product-variants {
        margin-top: 25px;
    }

    .mislens-product-variant {
        min-height: 40px;

        padding:
            9px
            14px;

        font-size: 12px;
    }

    .mislens-product-commercial {
        grid-template-columns: 1fr;

        margin-top: 24px;
    }


    /* ----------------------------------------------------------------------
    单页内容区
    ---------------------------------------------------------------------- */

    .mislens-product-specifications,
    .mislens-product-media-links,
    .mislens-product-series {
        padding:
            44px
            0;
    }

    .mislens-product-specifications__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .mislens-product-media-links__items {
        display: grid;

        grid-template-columns: 1fr;
    }

    .mislens-product-series__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 12px;
    }


    /* ----------------------------------------------------------------------
    列表页 Breadcrumb
    ---------------------------------------------------------------------- */

    .mislens-product-archive-breadcrumbs {
        margin-bottom: 17px;

        font-size: 11px;
    }


    /* ----------------------------------------------------------------------
    Mobile 筛选抽屉
    ---------------------------------------------------------------------- */

    .mislens-product-filter-drawer {
        margin-bottom: 16px;

        border:
            1px solid #e2e2e2;

        background: #ffffff;
    }

    .mislens-product-filter-drawer__toggle {
        display: flex;

        align-items: center;
        justify-content: space-between;

        min-height: 48px;

        padding:
            0
            15px;

        color: #222222;

        font-size: 13px;
        line-height: 1;
        font-weight: 700;

        list-style: none;

        cursor: pointer;
    }

    .mislens-product-filter-drawer__toggle::-webkit-details-marker {
        display: none;
    }

    .mislens-product-filter-drawer__toggle::after {
        content: "+";

        margin-left: auto;

        color: #555555;

        font-size: 20px;
        line-height: 1;
        font-weight: 400;
    }

    .mislens-product-filter-drawer[open]
    .mislens-product-filter-drawer__toggle::after {
        content: "−";
    }

    .mislens-product-filter-drawer__active {
        margin-left: auto;
        margin-right: 12px;

        padding:
            4px
            7px;

        border-radius: 999px;

        background: #f1f1f1;

        color: #666666;

        font-size: 9px;
        line-height: 1;

        letter-spacing: 0.05em;

        text-transform: uppercase;
    }

    .mislens-product-filter-drawer:not([open])
    .mislens-product-filter-drawer__body {
        display: none !important;
    }

    .mislens-product-filter-drawer[open]
    .mislens-product-filter-drawer__body {
        display: block !important;

        border-top:
            1px solid #e7e7e7;
    }

    .mislens-product-filters {
        padding: 12px;

        border: 0;

        background: #f8f8f8;
    }

    .mislens-product-filters__form {
        display: grid;

        grid-template-columns: 1fr;

        gap: 8px;
    }

    .mislens-product-filter-field input,
    .mislens-product-filter-field select,
    .mislens-product-filter-submit,
    .mislens-product-filter-reset {
        width: 100%;
        min-height: 44px;
    }


    /* ----------------------------------------------------------------------
    结果数量
    ---------------------------------------------------------------------- */

    .mislens-product-results-meta {
        margin-bottom: 14px;

        font-size: 11px;
    }


    /* ----------------------------------------------------------------------
    两列产品网格
    ---------------------------------------------------------------------- */

    .mislens-product-archive-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            16px
            10px;
    }

    .mislens-product-card__body {
        padding:
            12px
            11px
            13px;
    }

    .mislens-product-card__name {
        margin-bottom: 8px;

        font-size: 13px;
        line-height: 1.35;
    }

    .mislens-product-card__sku {
        margin-bottom: 8px;

        font-size: 9px;
    }

    .mislens-product-card__action {
        min-height: 36px;

        padding:
            8px
            8px;

        font-size: 10px;
    }
}


/* ==========================================================================
28. 小屏手机
========================================================================== */

@media (max-width: 420px) {

    .mislens-product-container {
        width:
            calc(100% - 22px);
    }

    .mislens-product-title {
        font-size: 27px;
    }

    .mislens-product-specifications__grid {
        grid-template-columns: 1fr;
    }

    .mislens-product-series__grid {
        gap: 9px;
    }

    .mislens-product-archive-grid {
        gap:
            14px
            8px;
    }

    .mislens-product-card__body {
        padding:
            10px
            9px
            11px;
    }

    .mislens-product-card__name {
        font-size: 12px;
    }
}