:root {

    --bg: #090908;
    --bg-soft: #10100e;

    --panel: #151411;
    --panel-light: #1b1915;

    --white: #fffaf2;
    --cream: #eee3d3;

    --muted: #9c948a;

    --gold: #c99a52;
    --gold2: #efc77e;

    --red: #821f1a;
    --green: #64c987;

    --border:
        rgba(255,255,255,.09);

    --radius: 24px;

    --max: 1320px;

}


* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    min-height: 100vh;

    background: var(--bg);

    color: var(--white);

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    overflow-x: hidden;
}


body.lock {
    overflow: hidden;
}


button,
input,
select,
textarea {
    font: inherit;
}


button {
    cursor: pointer;
}


a {
    color: inherit;
    text-decoration: none;
}


img {
    display: block;
    max-width: 100%;
}


.container {

    width:
        min(
            92%,
            var(--max)
        );

    margin-inline: auto;

}


#scrollProgress {

    position: fixed;

    top: 0;
    left: 0;

    width: 0;
    height: 3px;

    z-index: 9999;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--gold2)
        );

}


/* =====================================================
   NAV
===================================================== */

.nav {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 2000;

    transition: .3s;

}


.nav.scrolled {

    background:
        rgba(8,8,7,.88);

    border-bottom:
        1px solid var(--border);

    backdrop-filter:
        blur(18px);

}


.nav-inner {

    min-height: 95px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.brand img {

    width: 115px;
    height: 78px;

    object-fit: contain;

}


.nav-links {

    display: flex;

    align-items: center;

    gap: 25px;

}


.nav-links a {

    color: #c8c0b5;

    font-size: .84rem;

    transition: .2s;

}


.nav-links a:hover,
.nav-links a.active {
    color: var(--gold2);
}


.nav-actions {

    display: flex;

    align-items: center;

    gap: 9px;

}


.cart-button {

    min-height: 45px;

    padding: 0 14px;

    display: flex;

    align-items: center;

    gap: 9px;

    border:
        1px solid
        rgba(239,199,126,.25);

    border-radius: 999px;

    background:
        rgba(255,255,255,.04);

    color: white;

    backdrop-filter:
        blur(10px);

}


.cart-button b {

    min-width: 23px;
    height: 23px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: var(--gold2);

    color: #17120c;

    font-size: .65rem;

}


.menu-btn {

    display: none;

    width: 46px;
    height: 46px;

    border:
        1px solid var(--border);

    border-radius: 50%;

    background:
        rgba(255,255,255,.04);

    color: white;

}


/* =====================================================
   HERO
===================================================== */

.shop-hero {

    position: relative;

    min-height: 100svh;

    display: flex;

    align-items: center;

    overflow: hidden;

}


.shop-hero-bg {

    position: absolute;

    inset: 0;

    background:
        url("../images/hero1.webp")
        center / cover
        no-repeat;

    transform: scale(1.05);

    animation:
        heroZoom
        14s ease-in-out
        infinite alternate;

}


@keyframes heroZoom {

    to {
        transform: scale(1.10);
    }

}


.shop-hero-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(6,6,5,.98),
            rgba(6,6,5,.86) 40%,
            rgba(6,6,5,.45) 72%,
            rgba(6,6,5,.2)
        ),

        linear-gradient(
            0deg,
            var(--bg),
            transparent 50%
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    padding-top: 135px;

    display: grid;

    grid-template-columns:
        1.25fr .75fr;

    gap: 75px;

    align-items: center;

}


.eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--gold2);

    font-size: .68rem;

    font-weight: 900;

    letter-spacing: .2em;

}


.eyebrow::before {

    content: "";

    width: 35px;
    height: 1px;

    background: currentColor;

}


.hero-copy h1 {

    max-width: 900px;

    margin-top: 22px;

    font-size:
        clamp(
            4.2rem,
            9vw,
            8.8rem
        );

    line-height: .83;

    letter-spacing: -.07em;

}


.hero-copy h1 em {

    display: block;

    margin-top: 22px;

    color: var(--gold2);

    font-family:
        Georgia,
        serif;

    font-style: italic;

    font-weight: 400;

}


.hero-copy p {

    max-width: 610px;

    margin-top: 34px;

    color: #c6bdb1;

    font-size: 1.05rem;

    line-height: 1.7;

}


.hero-actions {

    margin-top: 32px;

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}


.primary-btn,
.ghost-btn {

    min-height: 52px;

    padding: 0 23px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 999px;

    font-weight: 850;

}


.primary-btn {

    border: 0;

    background: var(--gold2);

    color: #16120d;

}


.ghost-btn {

    border:
        1px solid
        rgba(255,255,255,.2);

    background:
        rgba(255,255,255,.04);

    color: white;

}


.hero-delivery-card {

    padding: 28px;

    border:
        1px solid
        rgba(239,199,126,.23);

    border-radius: var(--radius);

    background:
        rgba(13,13,11,.55);

    backdrop-filter:
        blur(17px);

}


.hero-delivery-card > small {

    color: var(--gold2);

    letter-spacing: .16em;

}


.delivery-option {

    margin-top: 16px;

    padding: 16px;

    display: grid;

    grid-template-columns:
        40px 1fr;

    gap: 12px;

    border:
        1px solid var(--border);

    border-radius: 14px;

    background:
        rgba(255,255,255,.02);

}


.delivery-option > span {

    font-size: 1.5rem;

}


.delivery-option p {

    margin-top: 2px;

    color: var(--muted);

    font-size: .76rem;

}


/* =====================================================
   TRUST
===================================================== */

.trust-strip {

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);

    background: #0c0c0b;

}


.trust-grid {

    display: grid;

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

}


.trust-grid > div {

    padding: 22px;

    border-right:
        1px solid var(--border);

}


.trust-grid > div:last-child {
    border-right: 0;
}


.trust-grid strong {

    display: block;

    color: var(--gold2);

    font-size: .82rem;

}


.trust-grid span {

    display: block;

    margin-top: 4px;

    color: var(--muted);

    font-size: .7rem;

}


/* =====================================================
   PRODUCTS
===================================================== */

.products-section {

    padding:
        120px 0;

}


.section-head {

    margin-bottom: 45px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 45px;

}


.section-head h2 {

    margin-top: 14px;

    font-size:
        clamp(
            3rem,
            6vw,
            5.8rem
        );

    line-height: .93;

    letter-spacing: -.06em;

}


.section-head h2 em {

    color: var(--gold2);

    font-family:
        Georgia,
        serif;

    font-weight: 400;

}


.section-head > p {

    max-width: 430px;

    color: var(--muted);

}


.shop-toolbar {

    margin-bottom: 25px;

    display: flex;

    justify-content: space-between;

    gap: 20px;

}


.category-tabs {

    display: flex;

    flex-wrap: wrap;

    gap: 7px;

}


.category-btn {

    min-height: 42px;

    padding: 0 16px;

    border:
        1px solid var(--border);

    border-radius: 999px;

    background:
        rgba(255,255,255,.025);

    color: #aaa299;

}


.category-btn.active {

    border-color:
        rgba(239,199,126,.4);

    background:
        rgba(239,199,126,.12);

    color: var(--gold2);

}


.shop-search {

    min-width: 270px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        0 13px;

    border:
        1px solid var(--border);

    border-radius: 999px;

    background:
        #10100f;

}


.shop-search input {

    width: 100%;

    min-height: 42px;

    border: 0;

    outline: none;

    background: transparent;

    color: white;

}


.products-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;

}


.product-card {

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background:
        linear-gradient(
            145deg,
            #161512,
            #10100e
        );

    transition:
        transform .3s,
        border-color .3s;

}


.product-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(239,199,126,.34);

}


.product-image {

    position: relative;

    height: 295px;

    overflow: hidden;

    background: #141310;

}


.product-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .55s
        cubic-bezier(.16,1,.3,1);

}


.product-card:hover
.product-image img {

    transform:
        scale(1.06);

}


.product-badge {

    position: absolute;

    top: 16px;
    left: 16px;

    padding:
        7px 10px;

    border-radius: 999px;

    background:
        rgba(8,8,7,.74);

    backdrop-filter:
        blur(12px);

    color: var(--gold2);

    font-size: .65rem;

    font-weight: 850;

}


.product-body {

    padding: 22px;

}


.product-category {

    color: var(--gold2);

    font-size: .65rem;

    font-weight: 850;

    letter-spacing: .13em;

}


.product-body h3 {

    margin-top: 5px;

    font-size: 1.55rem;

    letter-spacing: -.04em;

}


.product-description {

    min-height: 48px;

    margin-top: 8px;

    color: var(--muted);

    font-size: .8rem;

    line-height: 1.6;

}


.product-meta {

    margin-top: 18px;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 15px;

}


.product-price strong {

    display: block;

    color: var(--gold2);

    font-size: 1.4rem;

}


.product-price span {

    color: var(--muted);

    font-size: .7rem;

}


.quantity-box {

    display: flex;

    align-items: center;

    border:
        1px solid var(--border);

    border-radius: 999px;

    overflow: hidden;

}


.quantity-box button {

    width: 36px;
    height: 36px;

    border: 0;

    background: transparent;

    color: white;

}


.quantity-box span {

    min-width: 48px;

    text-align: center;

    font-size: .75rem;

}


.add-cart-btn {

    width: 100%;

    min-height: 48px;

    margin-top: 17px;

    border:
        1px solid
        rgba(239,199,126,.3);

    border-radius: 11px;

    background:
        rgba(239,199,126,.08);

    color: var(--gold2);

    font-weight: 850;

    transition:
        background .2s,
        transform .2s;

}


.add-cart-btn:hover {

    background:
        var(--gold2);

    color: #17120d;

}


.add-cart-btn:active {

    transform:
        scale(.98);

}


/* =====================================================
   HOW
===================================================== */

.how-section {

    padding:
        115px 0;

    background: var(--bg-soft);

}


.steps-grid {

    display: grid;

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

    gap: 12px;

}


.steps-grid article {

    padding: 26px;

    border:
        1px solid var(--border);

    border-radius: 18px;

}


.steps-grid article > span {

    color: var(--gold2);

    font-family:
        Georgia,
        serif;

    font-size: 2rem;

}


.steps-grid h3 {

    margin-top: 45px;

}


.steps-grid p {

    margin-top: 8px;

    color: var(--muted);

    font-size: .8rem;

}


/* =====================================================
   CART
===================================================== */

.drawer-overlay {

    position: fixed;

    inset: 0;

    z-index: 4000;

    background:
        rgba(0,0,0,.62);

    backdrop-filter:
        blur(4px);

    opacity: 0;

    visibility: hidden;

    transition: .3s;

}


.drawer-overlay.open {

    opacity: 1;

    visibility: visible;

}


.cart-drawer {

    position: fixed;

    top: 0;
    right: 0;

    width:
        min(
            470px,
            100%
        );

    height: 100vh;

    z-index: 4100;

    display: flex;

    flex-direction: column;

    background: #0d0d0c;

    border-left:
        1px solid var(--border);

    transform:
        translateX(105%);

    transition:
        transform .35s
        cubic-bezier(.16,1,.3,1);

}


.cart-drawer.open {

    transform:
        none;

}


.cart-head {

    padding: 25px;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    border-bottom:
        1px solid var(--border);

}


.cart-head small {

    color: var(--gold2);

    letter-spacing: .15em;

}


.cart-head h2 {

    margin-top: 3px;

    font-size: 2rem;

}


.cart-head button,
.checkout-head button {

    width: 40px;
    height: 40px;

    border:
        1px solid var(--border);

    border-radius: 50%;

    background:
        rgba(255,255,255,.03);

    color: white;

}


.cart-items {

    padding: 20px;

    overflow-y: auto;

    display: grid;

    gap: 10px;

}


.cart-item {

    padding: 13px;

    display: grid;

    grid-template-columns:
        75px 1fr;

    gap: 13px;

    border:
        1px solid var(--border);

    border-radius: 13px;

}


.cart-item img {

    width: 75px;
    height: 75px;

    object-fit: cover;

    border-radius: 10px;

}


.cart-item-head {

    display: flex;

    justify-content: space-between;

    gap: 12px;

}


.cart-item-head button {

    border: 0;

    background: none;

    color: #c26767;

}


.cart-item p {

    color: var(--muted);

    font-size: .72rem;

}


.cart-item-bottom {

    margin-top: 10px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.cart-footer {

    margin-top: auto;

    padding: 22px;

    border-top:
        1px solid var(--border);

    background: #10100f;

}


.cart-total-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

}


.cart-total-row strong {

    color: var(--gold2);

    font-size: 1.7rem;

}


.cart-footer > p {

    margin-top: 5px;

    color: var(--muted);

    font-size: .68rem;

}


.checkout-btn {

    width: 100%;

    min-height: 52px;

    margin-top: 17px;

    border: 0;

    border-radius: 11px;

    background: var(--gold2);

    color: #17120d;

    font-weight: 900;

}


.empty-cart {

    flex: 1;

    display: grid;

    align-content: center;

    justify-items: center;

    padding: 30px;

    text-align: center;

}


.empty-cart span {

    font-size: 3rem;

}


.empty-cart h3 {

    margin-top: 12px;

}


.empty-cart p {

    margin-top: 6px;

    color: var(--muted);

}


/* =====================================================
   CHECKOUT
===================================================== */

.checkout-overlay {

    position: fixed;

    inset: 0;

    z-index: 5000;

    padding: 25px;

    display: none;

    place-items: center;

    background:
        rgba(4,4,3,.85);

    backdrop-filter:
        blur(9px);

}


.checkout-overlay.open {

    display: grid;

}


.checkout-modal {

    width:
        min(
            1250px,
            100%
        );

    max-height:
        calc(100vh - 50px);

    overflow-y: auto;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background: #0e0e0d;

    box-shadow:
        0 40px 120px
        rgba(0,0,0,.55);

}


.checkout-head {

    padding: 22px 25px;

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    border-bottom:
        1px solid var(--border);

}


.checkout-head small {

    color: var(--gold2);

    letter-spacing: .15em;

}


.checkout-head h2 {

    margin-top: 4px;

    font-size: 2rem;

}


.checkout-layout {

    display: grid;

    grid-template-columns:
        1.2fr .8fr;

}


.checkout-layout > div {

    padding: 25px;

}


.checkout-section {

    padding:
        22px 0;

    display: grid;

    grid-template-columns:
        45px 1fr;

    gap: 17px;

    border-bottom:
        1px solid var(--border);

}


.section-number {

    color: var(--gold2);

    font-family:
        Georgia,
        serif;

}


.checkout-section h3 {

    margin-bottom: 16px;

}


.shipping-options {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 10px;

}


.shipping-card {

    padding: 15px;

    display: grid;

    grid-template-columns:
        auto 35px 1fr auto;

    align-items: center;

    gap: 10px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    cursor: pointer;

}


.shipping-card.active {

    border-color:
        rgba(239,199,126,.45);

    background:
        rgba(239,199,126,.06);

}


.shipping-card input {

    accent-color: var(--gold2);

}


.shipping-icon {

    font-size: 1.35rem;

}


.shipping-card p {

    color: var(--muted);

    font-size: .7rem;

}


.shipping-card b {

    color: var(--gold2);

    font-size: .75rem;

}


.checkout-form-grid {

    display: grid;

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

    gap: 13px;

}


.checkout-form-grid label {

    display: grid;

    gap: 6px;

    color: #bdb5aa;

    font-size: .75rem;

}


.checkout-form-grid input,
.checkout-form-grid select,
.checkout-section textarea {

    width: 100%;

    min-height: 44px;

    padding:
        0 12px;

    border:
        1px solid var(--border);

    border-radius: 9px;

    outline: none;

    background: #131311;

    color: white;

}


.checkout-section textarea {

    min-height: 100px;

    padding: 12px;

    resize: vertical;

}


.checkout-form-grid .full {
    grid-column: 1/-1;
}


.checkout-note {

    margin-bottom: 14px;

    color: var(--muted);

    font-size: .76rem;

}


.hidden {
    display: none;
}


.order-summary {

    padding: 25px;

    border-left:
        1px solid var(--border);

    background: #121210;

}


.order-summary > small {

    color: var(--gold2);

    letter-spacing: .15em;

}


.summary-products {

    margin:
        20px 0;

    display: grid;

    gap: 8px;

}


.summary-product {

    padding-bottom: 8px;

    display: flex;

    justify-content: space-between;

    gap: 15px;

    border-bottom:
        1px solid var(--border);

    font-size: .76rem;

}


.summary-product span {

    color: var(--muted);

}


.summary-line {

    padding:
        11px 0;

    display: flex;

    justify-content: space-between;

    color: #aaa298;

}


.summary-total {

    margin-top: 10px;

    padding:
        18px 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-top:
        1px solid var(--border);

}


.summary-total strong {

    color: var(--gold2);

    font-size: 2rem;

}


.checkout-consent {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    margin-top: 15px;

    color: var(--muted);

    font-size: .7rem;

}


.checkout-consent input {

    accent-color: var(--gold2);

}


.place-order-btn {

    width: 100%;

    min-height: 55px;

    margin-top: 15px;

    border: 0;

    border-radius: 11px;

    background:
        linear-gradient(
            90deg,
            var(--gold2),
            #c89649
        );

    color: #17120d;

    font-weight: 900;

}


.summary-demo {

    margin-top: 10px;

    color: #69635b;

    font-size: .62rem;

    line-height: 1.5;

}


/* =====================================================
   INPOST GEOWIDGET - CHECKOUT
===================================================== */

#inpostFields .checkout-section-content {

    min-width: 0;

}


.inpost-widget-shell {

    width: 100%;

    min-height: 520px;

    overflow: hidden;

    border:
        1px solid
        rgba(239,199,126,.18);

    border-radius: 14px;

    background: #131311;

}


.inpost-widget-shell
inpost-geowidget {

    display: block;

    width: 100%;

    min-height: 520px;

}


.inpost-widget-message {

    min-height: 220px;

    padding: 30px;

    display: grid;

    place-content: center;

    gap: 8px;

    text-align: center;

}


.inpost-widget-message strong {

    color: var(--gold2);

}


.inpost-widget-message span {

    color: var(--muted);

    font-size: .76rem;

}


.inpost-selected-point {

    margin-top: 12px;

    padding: 16px;

    border:
        1px solid
        rgba(100,201,135,.28);

    border-radius: 12px;

    background:
        rgba(100,201,135,.07);

}


.inpost-selected-point[hidden] {

    display: none !important;

}


.inpost-selected-point > span {

    display: block;

    color: var(--green);

    font-size: .62rem;

    font-weight: 900;

    letter-spacing: .14em;

}


.inpost-selected-point strong {

    display: block;

    margin-top: 5px;

    color: var(--cream);

    font-size: 1rem;

}


.inpost-selected-point p,
.inpost-selected-point small {

    display: block;

    margin-top: 4px;

    color: var(--muted);

    font-size: .72rem;

    line-height: 1.5;

}


/* =====================================================
   SUCCESS
===================================================== */

.success-overlay {

    position: fixed;

    inset: 0;

    z-index: 6000;

    display: none;

    place-items: center;

    padding: 20px;

    background:
        rgba(5,5,4,.92);

    backdrop-filter:
        blur(12px);

}


.success-overlay.open {

    display: grid;

}


.success-box {

    width:
        min(
            520px,
            100%
        );

    padding: 45px 30px;

    border:
        1px solid
        rgba(239,199,126,.25);

    border-radius: var(--radius);

    background: #141310;

    text-align: center;

}


.success-check {

    width: 80px;
    height: 80px;

    margin:
        0 auto 20px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    border:
        1px solid
        rgba(100,201,135,.35);

    background:
        rgba(100,201,135,.08);

    color: var(--green);

    font-size: 2rem;

}


.success-box > span {

    color: var(--gold2);

    letter-spacing: .17em;

    font-size: .7rem;

}


.success-box h2 {

    margin-top: 8px;

    font-size: 2.3rem;

}


.success-box p {

    margin-top: 10px;

    color: var(--muted);

}


.success-box > strong {

    display: block;

    margin-top: 20px;

    color: var(--gold2);

    font-size: 1.3rem;

}


.success-box button {

    min-height: 48px;

    margin-top: 25px;

    padding: 0 20px;

    border: 0;

    border-radius: 999px;

    background: var(--gold2);

    color: #17120d;

    font-weight: 850;

}


/* =====================================================
   FOOTER
===================================================== */

footer {

    padding:
        60px 0;

    border-top:
        1px solid var(--border);

    background: #070706;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr .7fr .7fr;

    gap: 45px;

}


.footer-grid img {

    width: 120px;

}


.footer-grid p,
.footer-grid a,
.footer-grid button {

    display: block;

    margin-top: 8px;

    border: 0;

    background: none;

    color: var(--muted);

    font-size: .78rem;

}


.footer-grid strong {

    color: var(--gold2);

    font-size: .7rem;

    letter-spacing: .14em;

}


/* =====================================================
   TOAST
===================================================== */

.toast {

    position: fixed;

    right: 23px;
    bottom: 23px;

    z-index: 7000;

    padding:
        13px 17px;

    border:
        1px solid
        rgba(239,199,126,.3);

    border-radius: 10px;

    background: #181713;

    opacity: 0;

    transform:
        translateY(20px);

    pointer-events: none;

    transition: .25s;

}


.toast.show {

    opacity: 1;

    transform: none;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:1000px) {

    .hero-content {
        grid-template-columns: 1fr;
    }


    .hero-delivery-card {
        max-width: 600px;
    }


    .products-grid {
        grid-template-columns:
            repeat(2,1fr);
    }


    .steps-grid {
        grid-template-columns:
            repeat(2,1fr);
    }


    .trust-grid {
        grid-template-columns:
            repeat(2,1fr);
    }


    .checkout-layout {
        grid-template-columns: 1fr;
    }


    .shipping-options {
        grid-template-columns:
            1fr;
    }


    .order-summary {
        border-left: 0;

        border-top:
            1px solid var(--border);
    }

}


@media(max-width:800px) {

    .nav-links {

        position: fixed;

        inset: 0;

        padding: 50px;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

        background:
            rgba(8,8,7,.98);

        transform:
            translateX(100%);

        transition: .3s;

    }


    .nav-links.open {
        transform: none;
    }


    .nav-links a {
        font-size: 1.5rem;
    }


    .menu-btn {
        display: block;

        z-index: 2;
    }


    .section-head {

        align-items: flex-start;

        flex-direction: column;

    }


    .shop-toolbar {
        flex-direction: column;
    }


    .shop-search {
        min-width: 0;
        width: 100%;
    }


    .checkout-overlay {
        padding: 0;
    }


    .checkout-modal {

        max-height: 100vh;

        height: 100vh;

        border-radius: 0;

    }

}


@media(max-width:620px) {

    .cart-label {
        display: none;
    }


    .shop-hero {
        min-height: 100svh;
    }


    .hero-content {
        padding:
            140px 0 80px;
    }


    .hero-copy h1 {

        font-size:
            clamp(
                4rem,
                18vw,
                6.3rem
            );

    }


    .trust-grid {
        grid-template-columns: 1fr;
    }


    .trust-grid > div {

        border-right: 0;

        border-bottom:
            1px solid var(--border);

    }


    .products-grid {
        grid-template-columns: 1fr;
    }


    .steps-grid {
        grid-template-columns: 1fr;
    }


    .shipping-options {
        grid-template-columns: 1fr;
    }


    .checkout-form-grid {
        grid-template-columns: 1fr;
    }


    .checkout-form-grid .full {
        grid-column: auto;
    }


    .checkout-section {

        grid-template-columns: 1fr;

    }


    .inpost-widget-shell,
    .inpost-widget-shell
    inpost-geowidget {

        min-height: 460px;

    }


    .section-number {

        font-size: 1.2rem;

    }


    .footer-grid {
        grid-template-columns: 1fr;
    }

}
 
/* =====================================================
   PRODUCT DETAILS MODAL
===================================================== */

.product-modal-overlay {

    position: fixed;

    inset: 0;

    z-index: 5500;

    padding: 25px;

    display: none;

    place-items: center;

    background:
        rgba(4,4,3,.88);

    backdrop-filter:
        blur(12px);

}


.product-modal-overlay.open {

    display: grid;

}


.product-modal {

    position: relative;

    width:
        min(
            1120px,
            100%
        );

    max-height:
        calc(100vh - 50px);

    overflow-y: auto;

    border:
        1px solid
        rgba(239,199,126,.20);

    border-radius:
        var(--radius);

    background:
        linear-gradient(
            145deg,
            #171612,
            #0e0e0c
        );

    box-shadow:
        0 40px 120px
        rgba(0,0,0,.65);

}


.product-modal-close {

    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 5;

    width: 44px;
    height: 44px;

    display: grid;

    place-items: center;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 50%;

    background:
        rgba(8,8,7,.75);

    backdrop-filter:
        blur(10px);

    color: white;

}


.product-modal-layout {

    display: grid;

    grid-template-columns:
        1.08fr .92fr;

    min-height: 620px;

}


/* =====================================================
   PRODUCT GALLERY
===================================================== */

.product-modal-gallery {

    padding: 25px;

    border-right:
        1px solid
        var(--border);

}


.product-modal-main-image {

    height: 510px;

    overflow: hidden;

    border-radius: 18px;

    background: #11110f;

}


.product-modal-main-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        opacity .2s,
        transform .4s;

}


.product-modal-thumbnails {

    margin-top: 13px;

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 10px;

}


.product-thumbnail {

    height: 90px;

    padding: 0;

    overflow: hidden;

    border:
        1px solid
        var(--border);

    border-radius: 12px;

    background: #111;

    opacity: .65;

    transition: .2s;

}


.product-thumbnail:hover {

    opacity: 1;

}


.product-thumbnail.active {

    opacity: 1;

    border-color:
        var(--gold2);

    box-shadow:
        0 0 0 1px
        rgba(239,199,126,.2);

}


.product-thumbnail img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


/* =====================================================
   PRODUCT MODAL CONTENT
===================================================== */

.product-modal-content {

    padding:
        70px 45px 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.product-modal-category {

    color:
        var(--gold2);

    font-size: .68rem;

    font-weight: 900;

    letter-spacing: .17em;

    text-transform: uppercase;

}


.product-modal-content h2 {

    margin-top: 12px;

    font-size:
        clamp(
            2.8rem,
            5vw,
            4.8rem
        );

    line-height: .94;

    letter-spacing: -.06em;

}


.product-modal-description {

    margin-top: 24px;

    color:
        #aaa197;

    font-size: .95rem;

    line-height: 1.75;

}


.product-modal-price {

    margin-top: 30px;

}


.product-modal-price strong {

    display: block;

    color:
        var(--gold2);

    font-size: 2.1rem;

}


.product-modal-price span {

    display: block;

    margin-top: 3px;

    color:
        var(--muted);

    font-size: .72rem;

}


.product-modal-availability {

    margin-top: 17px;

    display: flex;

    align-items: center;

    gap: 8px;

    color:
        #aaa197;

    font-size: .75rem;

}


.availability-dot {

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        var(--green);

    box-shadow:
        0 0 15px
        rgba(100,201,135,.6);

}


.availability-dot.unavailable {

    background:
        #b64e49;

    box-shadow:
        0 0 15px
        rgba(182,78,73,.45);

}


.product-modal-buy {

    margin-top: 28px;

    display: grid;

    grid-template-columns:
        auto 1fr;

    gap: 10px;

}


.product-modal-buy
.quantity-box {

    min-height: 52px;

}


.product-modal-buy
.quantity-box button {

    width: 43px;

}


.product-modal-buy
.quantity-box span {

    min-width: 70px;

}


.product-modal-add {

    min-height: 52px;

    border: 0;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--gold2),
            #c9974d
        );

    color: #17120d;

    font-weight: 900;

}


.product-modal-add:disabled {

    cursor: not-allowed;

    opacity: .4;

}


.product-modal-info {

    margin-top: 32px;

    padding-top: 22px;

    display: grid;

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

    gap: 10px;

    border-top:
        1px solid
        var(--border);

}


.product-modal-info > div {

    display: flex;

    align-items: center;

    gap: 10px;

}


.product-modal-info > div > span {

    font-size: 1.3rem;

}


.product-modal-info p {

    color:
        var(--muted);

    font-size: .67rem;

}


.product-modal-info strong {

    display: block;

    margin-top: 2px;

    color:
        var(--cream);

}


/* =====================================================
   PRODUCT CARD - OPEN DETAILS
===================================================== */

.product-image {

    cursor: pointer;

}


.product-body h3 {

    cursor: pointer;

}


.product-details-btn {

    width: 100%;

    min-height: 43px;

    margin-top: 8px;

    border: 0;

    background: transparent;

    color:
        #aaa197;

    font-size: .72rem;

    transition: .2s;

}


.product-details-btn:hover {

    color:
        var(--gold2);

}


/* =====================================================
   PRODUCT LOADING
===================================================== */

.shop-loading {

    grid-column:
        1 / -1;

    padding:
        70px 20px;

    text-align: center;

    color:
        var(--muted);

}


.shop-loading strong {

    display: block;

    color:
        var(--gold2);

    font-size: 1rem;

}


.shop-loading span {

    display: block;

    margin-top: 8px;

    font-size: .75rem;

}


/* =====================================================
   PRODUCT MODAL RESPONSIVE
===================================================== */

@media(max-width:900px) {

    .product-modal-layout {

        grid-template-columns:
            1fr;

    }


    .product-modal-gallery {

        border-right: 0;

        border-bottom:
            1px solid
            var(--border);

    }


    .product-modal-main-image {

        height:
            min(
                65vw,
                500px
            );

    }


    .product-modal-content {

        padding:
            35px 25px 40px;

    }

}


@media(max-width:620px) {

    .product-modal-overlay {

        padding: 0;

    }


    .product-modal {

        width: 100%;

        height: 100%;

        max-height: 100vh;

        border-radius: 0;

    }


    .product-modal-gallery {

        padding:
            70px 15px 15px;

    }


    .product-modal-main-image {

        height: 350px;

    }


    .product-modal-thumbnails {

        gap: 7px;

    }


    .product-thumbnail {

        height: 70px;

    }


    .product-modal-content {

        padding:
            30px 18px 45px;

    }


    .product-modal-buy {

        grid-template-columns:
            1fr;

    }


    .product-modal-info {

        grid-template-columns:
            1fr;

    }

}

/* =====================================================
   DISCOUNTS / COUPON - CHECKOUT
===================================================== */

.discount-box {

    margin:
        18px 0 4px;

    padding:
        16px;

    border:
        1px solid
        rgba(239,199,126,.18);

    border-radius:
        14px;

    background:
        linear-gradient(
            145deg,
            rgba(239,199,126,.055),
            rgba(255,255,255,.018)
        );

}


.discount-box label {

    display: block;

    margin-bottom:
        9px;

    color:
        var(--cream);

    font-size:
        .74rem;

    font-weight:
        800;

    letter-spacing:
        .02em;

}


.discount-code-row {

    display: grid;

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

    gap:
        8px;

}


.discount-code-row input {

    min-width: 0;

    height:
        44px;

    padding:
        0 12px;

    border:
        1px solid
        var(--border);

    border-radius:
        9px;

    outline:
        none;

    background:
        #131311;

    color:
        white;

    text-transform:
        uppercase;

    letter-spacing:
        .06em;

    transition:
        border-color .2s,
        box-shadow .2s;

}


.discount-code-row input::placeholder {

    color:
        #6f6a63;

    text-transform:
        none;

    letter-spacing:
        normal;

}


.discount-code-row input:focus {

    border-color:
        rgba(239,199,126,.55);

    box-shadow:
        0 0 0 3px
        rgba(239,199,126,.07);

}


.discount-code-row button {

    min-height:
        44px;

    padding:
        0 15px;

    border:
        1px solid
        rgba(239,199,126,.32);

    border-radius:
        9px;

    background:
        rgba(239,199,126,.10);

    color:
        var(--gold2);

    font-weight:
        850;

    transition:
        background .2s,
        color .2s,
        transform .2s,
        opacity .2s;

}


.discount-code-row button:hover:not(:disabled) {

    background:
        var(--gold2);

    color:
        #17120d;

    transform:
        translateY(-1px);

}


.discount-code-row button:disabled {

    opacity:
        .55;

    cursor:
        wait;

}


#discountMessage {

    display: block;

    margin-top:
        9px;

    color:
        var(--muted);

    font-size:
        .66rem;

    line-height:
        1.5;

}


#discountMessage.success {

    color:
        var(--green);

}


#discountMessage.error {

    color:
        #df7771;

}


#summaryDiscountRow {

    margin-top:
        2px;

    padding:
        10px 0;

    color:
        #9fcfab;

}


#summaryDiscountRow[hidden] {

    display:
        none !important;

}


#summaryDiscount {

    color:
        var(--green);

    font-weight:
        900;

}


/* =====================================================
   DISCOUNTS - MOBILE
===================================================== */

@media(max-width:620px) {

    .discount-box {

        padding:
            14px;

    }


    .discount-code-row {

        grid-template-columns:
            1fr;

    }


    .discount-code-row button {

        width:
            100%;

    }

}

