/* =========================================================
   SHOP PAGE
========================================================= */

.shop-page {
    background: var(--ivory);
    color: #201c18;
}


/* =========================================================
   CONTAINER
========================================================= */

.shop-container {
    width: min(
        1380px,
        calc(100% - 80px)
    );

    margin: 0 auto;
}


/* =========================================================
   SHOP HERO
========================================================= */

.shop-hero {
    min-height: 650px;

    display: flex;

    align-items: flex-end;

    padding:
        170px 0
        90px;

    background:
        linear-gradient(
            90deg,
            rgba(7, 7, 7, .94),
            rgba(7, 7, 7, .62)
        ),
        url('/assets/images/marble.png') no-repeat
        center / cover;

    color: #f7f1e9;
}


.shop-hero-content {
    max-width: 760px;
}


.shop-hero .eyebrow {
    color: #c29d70;

    margin-bottom: 25px;
}


.shop-hero h1 {
    font-family: var(--serif);

    font-size: clamp(
        65px,
        8vw,
        120px
    );

    font-weight: 400;

    line-height: .86;

    letter-spacing: -3px;

    margin: 0 0 35px;
}


.shop-hero-description {
    max-width: 520px;

    color: #c4bbb1;

    font-size: 13px;

    line-height: 1.9;

    margin: 0;
}


/* =========================================================
   CONTENT
========================================================= */

.shop-content {
    padding: 85px 0 120px;
}


/* =========================================================
   TOOLBAR
========================================================= */

.shop-toolbar {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 22px;
}


.shop-result-count {
    font-size: 10px;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    color: #3d362f;
}


.shop-result-count span {
    color: #968b81;

    margin-left: 4px;
}


.shop-filter-toggle {
    display: none;

    border: 0;

    background: transparent;

    padding: 0;

    font-family: var(--sans);

    font-size: 9px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: #302923;

    cursor: pointer;
}


/* =========================================================
   FILTERS
========================================================= */

.shop-filters {
    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        0 0 28px;

    margin-bottom: 5px;

    border-bottom:
        1px solid
        rgba(55, 45, 35, .13);

    overflow-x: auto;

    scrollbar-width: none;
}


.shop-filters::-webkit-scrollbar {
    display: none;
}


.shop-filter {
    flex: 0 0 auto;

    min-height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0 18px;

    border:
        1px solid
        rgba(55, 45, 35, .18);

    color: #655c54;

    font-size: 9px;

    letter-spacing: 1.3px;

    text-transform: uppercase;

    transition:
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}


.shop-filter:hover {
    border-color: #9c7549;

    color: #8c6438;
}


.shop-filter.is-active {
    background: #1b1815;

    border-color: #1b1815;

    color: #f7f0e7;
}


/* =========================================================
   PRODUCT GRID
========================================================= */

.shop-product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap:
        48px 22px;

    padding-top: 30px;
}


/* =========================================================
   APPROVED PRODUCT CARD
========================================================= */

.shop-product-grid .product-card {
    min-width: 0;

    background: transparent;
}


.shop-product-grid .product-card-image {
    display: block;

    width: 100%;

    aspect-ratio: 1 / 1.16;

    overflow: hidden;

    background: #e9dfd3;
}


.shop-product-grid .product-card-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .7s
        cubic-bezier(.2, .65, .2, 1);
}


.shop-product-grid .product-card:hover
.product-card-image img {
    transform: scale(1.035);
}


.shop-product-grid .product-card-content {
    padding-top: 17px;
}


.shop-product-grid .product-card h3 {
    margin: 0;

    font-family: var(--serif);

    font-size: 22px;

    line-height: 1.15;

    font-weight: 400;

    color: #211d19;
}


.shop-product-grid .product-card h3 a {
    transition:
        color .25s ease;
}


.shop-product-grid .product-card h3 a:hover {
    color: #9a7248;
}


.shop-product-grid .product-card-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 10px;
}


.shop-product-grid .product-price {
    font-family: var(--sans);

    font-size: 12px;

    letter-spacing: .5px;

    color: #5f574f;
}


.shop-product-grid .product-price del {
    color: #9b9187;

    margin-right: 5px;
}


.shop-product-grid .product-price ins {
    text-decoration: none;
}


/* =========================================================
   EMPTY
========================================================= */

.shop-empty {
    min-height: 500px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 80px 20px;
}


.shop-empty h2 {
    font-family: var(--serif);

    font-size: clamp(
        45px,
        6vw,
        75px
    );

    font-weight: 400;

    line-height: .95;

    margin: 12px 0 22px;
}


.shop-empty p:not(.eyebrow) {
    color: #756c64;

    font-size: 12px;

    margin: 0 0 28px;
}


/* =========================================================
   STATEMENT
========================================================= */

.shop-statement {
    background: #0a0a09;

    color: #f4eee7;

    padding:
        125px 30px;

    text-align: center;
}


.shop-statement-inner {
    max-width: 850px;

    margin: 0 auto;
}


.shop-statement .eyebrow {
    color: #b89668;

    margin-bottom: 20px;
}


.shop-statement h2 {
    font-family: var(--serif);

    font-size: clamp(
        50px,
        7vw,
        95px
    );

    line-height: .92;

    font-weight: 400;

    letter-spacing: -2px;

    margin: 0 0 30px;
}


.shop-statement p:last-child {
    max-width: 530px;

    margin: 0 auto;

    color: #aaa198;

    font-size: 12px;

    line-height: 1.9;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .shop-product-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .shop-container {
        width: calc(100% - 36px);
    }


    .shop-hero {
        min-height: 570px;

        padding:
            150px 0
            65px;
    }


    .shop-hero h1 {
        font-size:
            clamp(
                56px,
                16vw,
                82px
            );

        letter-spacing: -2px;
    }


    .shop-hero-description {
        max-width: 380px;

        font-size: 12px;
    }


    .shop-content {
        padding:
            60px 0 80px;
    }


    .shop-toolbar {
        margin-bottom: 15px;
    }


    .shop-filter-toggle {
        display: flex;

        align-items: center;

        gap: 12px;
    }


    .shop-filters {
        max-height: 0;

        padding: 0;

        margin: 0;

        overflow: hidden;

        opacity: 0;

        transition:
            max-height .35s ease,
            opacity .3s ease,
            padding .35s ease;
    }


    .shop-filters.is-open {
        max-height: 200px;

        padding-bottom: 20px;

        opacity: 1;
    }


    .shop-product-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            38px 12px;

        padding-top: 25px;
    }


    .shop-product-grid .product-card h3 {
        font-size: 18px;
    }


    .shop-product-grid .product-price {
        font-size: 11px;
    }


    .shop-statement {
        padding:
            85px 20px;
    }

}


@media (max-width: 420px) {

    .shop-container {
        width: calc(100% - 28px);
    }


    .shop-product-grid {
        gap:
            32px 10px;
    }


    .shop-product-grid .product-card h3 {
        font-size: 17px;
    }

}
.product-card-image{
    position:relative;
    display:block;
}

.product-stock-badge{
    position:absolute;
    top:16px;
    left:16px;
    z-index:2;

    padding:8px 12px;

    background:rgba(20,18,16,.92);
    color:#f6efe6;

    font-size:8px;
    font-weight:500;
    letter-spacing:1.6px;
    line-height:1;
    text-transform:uppercase;

    border:1px solid rgba(201,161,107,.35);

    backdrop-filter:blur(8px);
    -webkit-backdrop-filter:blur(8px);
}