/* ══════════════════════════════════════════════════
   DESIGN TOKENS — Luxury Neubrutalism
══════════════════════════════════════════════════ */
:root {
    /* STRICT NEUBRUTALISM PALETTE */
    --gold: #FFD700;
    --gold-h: #E6C200;
    --gold-lt: #FFDF33;
    --gold-pale: #FFFFFF;
    /* Forced to white for stark contrast */
    --gold-sheen: #FFD700;

    --cream: #FFFFFF;
    /* Eliminated cream, pure white */
    --cream-2: #FFFFFF;
    /* Eliminated cream, pure white */

    --ink: #0D362B;
    /* Luxury Dark Green */
    --ink-soft: #124B3C;
    --muted: #3A5A4F;
    --border: #0D362B;
    /* High contrast brutalist borders */

    --white: #FFFFFF;
    --red: #D32F2F;
    /* ONLY for alerts/errors */
    --focus: #C5A059;

    /* Neubrutalism Variables */
    --border-w: 2px;
    --shadow-solid: 4px 4px 0px var(--gold);
    --shadow-solid-h: 6px 6px 0px var(--gold);
    --shadow-solid-ink: 4px 4px 0px var(--ink);

    --ff-disp: 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'Outfit', sans-serif;

    --tap: 52px;
    --r: 0px;
    /* Brutalism demands sharp corners (0px) or distinct rounded corners (e.g. 4px). Let's go sharp. */
    --ease: cubic-bezier(.4, 0, .2, 1);

    /* Type scale — mobile-first, generous */
    --t-xs: .875rem;
    --t-sm: 1rem;
    --t-md: 1.125rem;
    --t-lg: 1.375rem;
    --t-xl: clamp(1.75rem, 5vw, 2.5rem);
    --t-2xl: clamp(2.25rem, 7vw, 4rem);
    --t-hero: clamp(2rem, 7vw, 3.75rem);

    /* spacing */
    --px: 1rem;
    --section-py: 3.5rem;
}

@media (min-width: 576px) {
    :root {
        --px: 1.5rem;
    }
}

@media (min-width: 992px) {
    :root {
        --px: 3vw;
        --section-py: 5rem;
    }
}

/* ══════════════════════════════════════════════════
   GLOBAL OVERRIDES FOR BOOTSTRAP / THEME.CSS
══════════════════════════════════════════════════ */
.dominant-bg {
    background: var(--ink) !important;
    color: var(--white) !important;
}

.dominant-bg *,
.dominant-bg a,
.dominant-bg span,
.dominant-bg p,
.dominant-bg h1,
.dominant-bg h2,
.dominant-bg h3,
.dominant-bg h4,
.dominant-bg h5,
.dominant-bg h6 {
    color: var(--white) !important;
}

.extra-color {
    color: var(--gold-pale) !important;
}

.header-top-first {
    background: var(--white) !important;
}

.heading-color,
.body-color {
    color: var(--ink) !important;
}

.hover-dominant:hover {
    color: var(--gold) !important;
}

.text-dark {
    color: var(--ink) !important;
}

.bg-danger {
    background-color: var(--gold) !important;
    color: var(--ink) !important;
}

.text-primary {
    color: var(--ink) !important;
}

.btn-primary {
    background-color: var(--ink) !important;
    border-color: var(--ink) !important;
    color: var(--white) !important;
}

.btn-primary:hover {
    background-color: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--ink) !important;
}

/* ══════════════════════════════════════════════════
   GLOBAL FORM CONTROL OVERRIDES (NEUBRUTALISM)
══════════════════════════════════════════════════ */
.form-control,
.form-select {
    background-color: var(--white) !important;
    border: var(--border-w) solid var(--border) !important;
    border-radius: var(--r) !important;
    color: var(--ink) !important;
    font-family: var(--ff-body);
    font-weight: 500;
    transition: all 0.2s var(--ease);
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.05);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--ink) !important;
    box-shadow: var(--shadow-solid-ink) !important;
    outline: none;
}

/* ══════════════════════════════════════════════════
   STRICT NEUBRUTALISM BACKGROUND & CONTAINER OVERRIDES
══════════════════════════════════════════════════ */
body,
.bg-light,
.bg-white,
.card,
.modal-content,
.offcanvas {
    background-color: var(--white) !important;
}

.offcanvas,
.modal-content,
.card {
    border: var(--border-w) solid var(--ink) !important;
    box-shadow: var(--shadow-solid-ink) !important;
    border-radius: var(--r) !important;
}

.accordion-item {
    background-color: var(--white) !important;
    border: var(--border-w) solid var(--ink) !important;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-solid-ink);
}

.accordion-button {
    font-weight: 800;
    color: var(--ink) !important;
    background-color: var(--white) !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--gold) !important;
    color: var(--ink) !important;
}

/* NEUBRUTALISM PRODUCT CARDS */
.product-card {
    background: var(--white) !important;
    border: var(--border-w) solid var(--border) !important;
    border-radius: var(--r);
    overflow: hidden;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.product-card:hover {
    box-shadow: var(--shadow-solid-ink);
    transform: translate(-2px, -2px);
}

.product-content {
    padding: 1.5rem;
    text-align: center;
    border-top: var(--border-w) solid var(--border);
}

.variant-select {
    width: 100%;
    padding: .5rem 1rem;
    border: var(--border-w) solid var(--border);
    border-radius: var(--r);
    font-size: var(--t-sm);
    color: var(--ink);
    background: var(--white);
    margin-bottom: 1rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230D362B' stroke='%230D362B' stroke-width='3' stroke-linecap='square' stroke-linejoin='miter'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    font-weight: 600;
}

.variant-select:focus {
    outline: none;
    box-shadow: var(--shadow-solid-ink);
}

.product-card .btn-view,
.product-card .btn-style {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    background: var(--white) !important;
    color: var(--ink) !important;
    border: var(--border-w) solid var(--ink);
    border-radius: var(--r);
    padding: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    transition: all 0.2s var(--ease);
    box-shadow: var(--shadow-solid-ink);
}

.product-card .btn-view:hover,
.product-card .btn-style:hover {
    background: var(--gold) !important;
    border-color: var(--ink);
    color: var(--ink) !important;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--ink);
}

/* ── BASE ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    font-size: var(--t-sm);
    line-height: 1.8;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    /* Space for sticky bottom nav on mobile */
    padding-bottom: 72px;
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

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

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

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
    border-radius: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ══════════════════════════════════════════════════
   SKIP LINK
══════════════════════════════════════════════════ */
.skip-link {
    position: absolute;
    top: -200%;
    left: 1rem;
    padding: .8rem 1.5rem;
    background: var(--ink);
    color: var(--white);
    font-size: var(--t-sm);
    font-weight: 600;
    z-index: 9999;
    border-radius: 0 0 var(--r) var(--r);
    transition: top .2s;
}

.skip-link:focus {
    top: 0;
}

/* ══════════════════════════════════════════════════
   STICKY MOBILE BOTTOM NAV
══════════════════════════════════════════════════ */
.mob-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: var(--border-w) solid var(--ink);
    /* Removed soft shadow for brutalism */
}

@media (min-width: 992px) {
    .mob-bottom-nav {
        display: none;
    }
}

.mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: .55rem .25rem;
    min-height: 64px;
    color: var(--ink);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    gap: .2rem;
    transition: all .2s;
    -webkit-tap-highlight-color: transparent;
    border-right: var(--border-w) solid var(--ink);
}

.mob-nav-item:last-child {
    border-right: none;
}

.mob-nav-item i {
    font-size: 1.35rem;
    line-height: 1;
}

.mob-nav-item.active,
.mob-nav-item:focus,
.mob-nav-item:active {
    color: var(--gold);
    background: var(--white);
}

.mob-nav-item.cta-btn {
    background: var(--gold);
    color: var(--ink);
    font-weight: 800;
}

.mob-nav-item.cta-btn:active {
    background: var(--white);
}

/* ══════════════════════════════════════════════════
   NEWSLETTER MODAL
══════════════════════════════════════════════════ */
.newsletter-modal .modal-content {
    border: var(--border-w) solid var(--ink);
    border-radius: 0;
    /* Brutalist sharp modal */
    background: var(--white);
    overflow: hidden;
    box-shadow: var(--shadow-solid-ink);
}

.newsletter-modal .modal-body {
    padding: 0;
}

.newsletter-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-bottom: var(--border-w) solid var(--ink);
}

.newsletter-info {
    padding: 1.75rem 1.75rem 2rem;
    text-align: center;
}

.newsletter-info h2 {
    font-family: var(--ff-disp);
    font-size: var(--t-xl);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: .5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.newsletter-info p {
    font-size: var(--t-sm);
    color: var(--ink);
    font-weight: 500;
}

.news-wrap {
    display: flex;
    margin-top: 1.1rem;
    border: var(--border-w) solid var(--ink);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-solid-ink);
}

.news-wrap input {
    flex: 1;
    border: none;
    background: var(--white);
    padding: 0 1rem;
    height: var(--tap);
    font-size: var(--t-sm);
    font-family: var(--ff-body);
    color: var(--ink);
    outline: none;
}

.news-wrap button {
    width: 58px;
    height: var(--tap);
    background: var(--gold);
    border: none;
    color: var(--white);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}

.news-wrap button:hover {
    background: var(--gold-h);
}

.newsletter-close-btn {
    position: absolute;
    top: .6rem;
    right: .6rem;
    z-index: 5;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, .5);
    border: 2px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}

.newsletter-close-btn:hover {
    background: var(--gold-h);
}

/* ══════════════════════════════════════════════════
   HERO — Mobile-First
══════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 60vh;
    min-height: 60svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 992px) {
    .hero {
        min-height: 85vh;
    }
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(13, 54, 43, .92) 0%,
            rgba(13, 54, 43, .65) 50%,
            rgba(42, 92, 69, .20) 100%);
    z-index: 1;
}

.hero-body {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2.25rem var(--px) 2.5rem;
}

@media (min-width: 768px) {
    .hero-body {
        padding: 4rem var(--px);
        max-width: 800px;
    }
}

@media (min-width: 1200px) {
    .hero-body {
        padding: 6rem var(--px);
        max-width: 900px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(42, 92, 69, .95);
    /* Using Gold (now green) */
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .45rem 1rem;
    border-radius: 2px;
    margin-bottom: 1.1rem;
}

.hero-title {
    font-family: var(--ff-disp);
    font-size: var(--t-hero);
    font-weight: 700;
    color: var(--white);
    line-height: 1.07;
    margin-bottom: .85rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
}

.hero-title em {
    font-style: italic;
    color: var(--gold-sheen);
}

.hero-sub {
    font-size: var(--t-md);
    color: rgba(255, 255, 255, .88);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 480px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .3);
}

/* CTA row — two buttons on mobile */
.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    background: var(--gold);
    color: var(--ink);
    /* Deep Green Text for high contrast */
    font-size: var(--t-sm);
    font-weight: 700;
    padding: .95rem 1.75rem;
    min-height: var(--tap);
    border-radius: var(--r);
    border: var(--border-w) solid var(--ink);
    transition: all .2s var(--ease);
    letter-spacing: .05em;
    flex: 1;
    min-width: 140px;
    box-shadow: var(--shadow-solid-ink);
}

.hero-cta:hover {
    background: var(--white);
    color: var(--ink);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--ink);
}

.hero-cta.outline {
    background: var(--white);
    border-color: var(--ink);
    color: var(--ink);
}

.hero-cta.outline:hover {
    background: var(--gold);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--ink);
}

/* Trust pills */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-top: 1.1rem;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: var(--white);
    border: var(--border-w) solid var(--ink);
    border-radius: 0;
    padding: .3rem .85rem;
    font-size: .78rem;
    color: var(--ink);
    font-weight: 700;
    box-shadow: var(--shadow-solid-ink);
}

.trust-pill i {
    color: var(--gold);
    font-size: .88rem;
}

/* Verified / rating row below CTAs */
.hero-verified {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 1.35rem;
    padding-top: 1rem;
    border-top: var(--border-w) dashed var(--ink);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--white);
    border: var(--border-w) solid var(--ink);
    border-radius: 0;
    padding: .3rem .8rem;
    font-size: .7rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: .06em;
    text-transform: uppercase;
    box-shadow: var(--shadow-solid-ink);
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .78rem;
    color: var(--ink);
    font-weight: 700;
}

.hero-rating .stars {
    color: var(--gold);
    letter-spacing: -.03em;
}

/* ══════════════════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════════════════ */
.sec-hd {
    text-align: center;
    margin-bottom: 2.25rem;
}

@media (min-width: 768px) {
    .sec-hd {
        margin-bottom: 3rem;
    }
}

.sec-eyebrow {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
}

.sec-title {
    font-family: var(--ff-disp);
    font-size: var(--t-xl);
    font-weight: 800;
    /* Brutalism demands heavy weight */
    color: var(--ink);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.sec-rule {
    width: 64px;
    height: 4px;
    background: var(--ink);
    border: none;
    margin: .85rem auto 0;
    border-radius: 0;
}

/* Section header with "View All" link */
.sec-hd-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
    margin-bottom: 1.75rem;
}

.sec-hd-row .sec-hd {
    text-align: left;
    margin-bottom: 0;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: var(--t-xs);
    font-weight: 600;
    color: var(--gold);
    white-space: nowrap;
    border-bottom: 1.5px solid var(--gold-pale);
    padding-bottom: 1px;
    transition: color .2s, border-color .2s;
}

.view-all-link:hover {
    color: var(--gold-h);
    border-color: var(--gold);
}

/* ══════════════════════════════════════════════════
   CATEGORY PILLS — horizontal scroll on mobile
══════════════════════════════════════════════════ */
.cats-sect {
    padding: 2.25rem 0 1rem;
    background: var(--white);
    border-bottom: 2px solid var(--border);
}

.cats-scroll {
    display: flex;
    gap: .75rem;
    overflow-x: auto;
    padding: .25rem var(--px) .5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.cats-scroll::-webkit-scrollbar {
    display: none;
}

.cat-pill {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    flex-shrink: 0;
    background: var(--cream-2);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: .85rem 1.1rem;
    min-width: 88px;
    text-align: center;
    transition: all .25s var(--ease);
    color: var(--ink);
    -webkit-tap-highlight-color: transparent;
}

.cat-pill:hover,
.cat-pill:focus-visible,
.cat-pill.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(42, 92, 69, .3);
}

.cat-pill i {
    font-size: 1.5rem;
    line-height: 1;
}

.cat-pill span {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    line-height: 1.2;
}

.cat-pill .count {
    font-size: .65rem;
    font-weight: 400;
    opacity: .7;
    display: block;
}

/* Category icon map */
.cat-icon-bangle::before {
    content: "\f79a";
}

/* placeholder — use actual RI classes */

/* ══════════════════════════════════════════════════
   CATEGORY CARDS GRID (Featured categories)
══════════════════════════════════════════════════ */
.featured-cats-sect {
    padding: var(--section-py) 0;
    background: var(--cream-2);
}

.cat-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
    padding: 0 var(--px);
}

@media (min-width: 576px) {
    .cat-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 992px) {
    .cat-cards-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

.cat-card {
    position: relative;
    border: var(--border-w) solid var(--ink);
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--white);
    cursor: pointer;
    display: block;
    -webkit-tap-highlight-color: transparent;
    transition: all .3s var(--ease);
    box-shadow: var(--shadow-solid-ink);
}

.cat-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--ink);
}

.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.cat-card:hover img {
    transform: scale(1.06);
}

.cat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 8, 2, .82) 0%, rgba(12, 8, 2, .15) 55%, transparent 100%);
}

.cat-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
}

.cat-card-name {
    font-family: var(--ff-disp);
    font-size: var(--t-md);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    display: block;
}

.cat-card-count {
    font-size: .72rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    display: block;
    margin-top: .15rem;
}

.cat-card-cta {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: var(--gold);
    color: var(--ink);
    border: var(--border-w) solid var(--ink);
    font-size: .72rem;
    font-weight: 800;
    padding: .3rem .75rem;
    border-radius: 0;
    margin-top: .5rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* Fallback if no image */
.cat-card.no-img {
    background: var(--ink);
    display: flex;
    align-items: flex-end;
}

.cat-card.no-img .cat-card-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    font-size: 2.5rem;
    color: rgba(42, 92, 69, .3);
}

/* ══════════════════════════════════════════════════
   PRODUCT CARDS — Mobile-First
══════════════════════════════════════════════════ */
.products-sect {
    padding: var(--section-py) 0;
    background: var(--white);
}

/* Mobile: 2-col grid, Desktop: swiper */
.products-mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .75rem;
    padding: 0 var(--px);
}

@media (min-width: 576px) {
    .products-mobile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (min-width: 768px) {
    .products-mobile-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* On large screens swap to swiper */
@media (min-width: 992px) {
    .products-mobile-grid {
        display: none;
    }

    .products-swiper-wrap {
        display: block !important;
    }
}

.products-swiper-wrap {
    display: none;
}

.product-card {
    background: var(--white);
    border: var(--border-w) solid var(--ink);
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all .2s var(--ease);
    box-shadow: var(--shadow-solid-ink);
}

.product-card:hover,
.product-card:focus-within {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0px var(--ink);
}

.card-img-wrap {
    position: relative;
    width: 100% !important;
    aspect-ratio: 1/1 !important;
    overflow: hidden;
    background: var(--cream-2);
    display: block;
}

.card-img-wrap img {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: opacity .5s var(--ease), transform .6s var(--ease);
}

.card-img-wrap .img2,
.card-img-wrap .hover-img {
    opacity: 0;
}

.product-card:hover .img1,
.product-card:hover .main-img {
    opacity: 0;
    transform: scale(1.05);
}

.product-card:hover .img2,
.product-card:hover .hover-img {
    opacity: 1;
    transform: scale(1.05);
}

.badge-sale {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: var(--gold);
    color: var(--ink);
    border-right: var(--border-w) solid var(--ink);
    border-bottom: var(--border-w) solid var(--ink);
    font-size: .75rem;
    font-weight: 800;
    padding: .35rem .75rem;
    border-radius: 0;
    text-transform: uppercase;
}

/* Wishlist quick button */
.card-wish {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    width: 38px;
    height: 38px;
    background: var(--white);
    border: var(--border-w) solid var(--ink);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--ink);
    cursor: pointer;
    transition: all .2s;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 3px 3px 0px var(--ink);
}

.card-wish:hover,
.card-wish:active {
    background: var(--gold);
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0px var(--ink);
}

.card-body {
    padding: .85rem .85rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: .35rem;
}

@media (min-width: 576px) {
    .card-body {
        padding: 1.2rem 1.1rem 1.4rem;
        gap: .45rem;
    }
}

.card-cat {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
}

.card-name {
    font-family: var(--ff-disp);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 576px) {
    .card-name {
        font-size: var(--t-md);
    }
}

.card-name:hover {
    color: var(--gold);
}

.card-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: .4rem;
}

.price-now {
    font-family: var(--ff-disp);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-h);
}

@media (min-width: 576px) {
    .price-now {
        font-size: var(--t-lg);
    }
}

.price-was {
    font-size: .8rem;
    color: var(--muted);
    text-decoration: line-through;
}

.variant-select {
    width: 100%;
    height: 42px;
    font-size: var(--t-sm);
    font-family: var(--ff-body);
    color: var(--ink);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    background: var(--cream);
    padding: 0 .65rem;
    cursor: pointer;
    margin-top: .25rem;
}

.btn-view {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    width: 100%;
    min-height: 44px;
    margin-top: auto;
    padding: 0 .25rem;
    background: var(--white);
    color: var(--ink);
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .02em;
    white-space: nowrap;
    border-radius: 0;
    border: var(--border-w) solid var(--ink);
    box-shadow: 3px 3px 0px var(--ink);
    transition: all .2s var(--ease);
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 576px) {
    .btn-view {
        font-size: var(--t-sm);
        min-height: var(--tap);
    }
}

.btn-view:hover,
.btn-view:active {
    background: var(--gold);
    color: var(--ink);
    transform: translate(2px, 2px);
    box-shadow: 1px 1px 0px var(--ink);
}

/* Swiper nav */
.swiper-nav {
    display: flex;
    justify-content: center;
    gap: .65rem;
    margin-top: 1.75rem;
}

.swiper-nav button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--ink);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s var(--ease);
}

.swiper-nav button:hover,
.swiper-nav button:focus-visible {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* Mobile "Load more" / scroll hint */
.mobile-show-more {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    padding: 0 var(--px);
}

@media (min-width: 992px) {
    .mobile-show-more {
        display: none;
    }
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    min-height: var(--tap);
    padding: .85rem 2rem;
    border: 2px solid var(--border);
    background: var(--cream-2);
    color: var(--ink-soft);
    font-size: var(--t-sm);
    font-weight: 600;
    border-radius: var(--r);
    transition: all .25s;
    -webkit-tap-highlight-color: transparent;
}

.btn-ghost:hover,
.btn-ghost:active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* ══════════════════════════════════════════════════
   ABOUT — dark
══════════════════════════════════════════════════ */
.about-sect {
    background: var(--white);
    color: var(--ink);
    padding: var(--section-py) 0;
}

.about-hd {
    font-family: var(--ff-disp);
    font-size: var(--t-xl);
    font-weight: 800;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 2.25rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .about-hd {
        font-size: var(--t-2xl);
        margin-bottom: 3rem;
    }
}

.about-hd em {
    font-style: italic;
    color: var(--gold);
    background: transparent;
    padding: 0;
    font-weight: 500;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 576px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 2.5rem;
    }
}

.about-item-icon {
    font-size: 1.8rem;
    color: var(--ink);
    margin-bottom: .6rem;
}

.about-item h3 {
    font-family: var(--ff-disp);
    font-size: var(--t-md);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: .4rem;
    text-transform: uppercase;
}

.about-item p {
    font-size: var(--t-sm);
    color: var(--ink);
    line-height: 1.85;
    font-weight: 500;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    min-height: var(--tap);
    padding: .8rem 1.75rem;
    border: var(--border-w) solid var(--ink);
    color: var(--ink);
    background: var(--white);
    font-size: var(--t-sm);
    font-weight: 800;
    letter-spacing: .05em;
    border-radius: 0;
    margin-top: 1.25rem;
    transition: all .2s var(--ease);
    -webkit-tap-highlight-color: transparent;
    text-transform: uppercase;
    box-shadow: var(--shadow-solid-ink);
}

.btn-outline:hover,
.btn-outline:active {
    background: var(--gold);
    color: var(--ink);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--ink);
}

/* ══════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════ */
.faq-sect {
    padding: var(--section-py) 0;
    background: var(--cream-2);
}

.faq-list {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 var(--px);
}

.faq-item {
    background: var(--white);
    border: var(--border-w) solid var(--ink);
    border-radius: 0;
    margin-bottom: .85rem;
    box-shadow: var(--shadow-solid-ink);
    transition: all .2s;
}

.faq-item:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px var(--ink);
}

.faq-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 1.4rem 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    cursor: pointer;
    min-height: var(--tap);
    transition: background .2s;
    -webkit-tap-highlight-color: transparent;
}

.faq-btn:hover,
.faq-btn[aria-expanded="true"] {
    background: var(--cream);
}

.faq-q-text {
    font-family: var(--ff-disp);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.faq-ico {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 0;
    border: var(--border-w) solid var(--ink);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--ink);
    font-weight: 800;
    transition: all .3s var(--ease);
    box-shadow: 2px 2px 0px var(--ink);
}

.faq-btn[aria-expanded="true"] .faq-ico {
    background: var(--gold);
    color: var(--ink);
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 1.4rem 1.75rem;
    font-size: 1rem;
    color: var(--ink);
    line-height: 1.7;
    border-top: var(--border-w) solid var(--ink);
    font-weight: 500;
}

.faq-answer.open {
    display: block;
}

/* ══════════════════════════════════════════════════
   SERVICES BAR
══════════════════════════════════════════════════ */
.services-sect {
    padding: var(--section-py) 0;
    background: var(--white);
    border-top: 2px solid var(--border);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    margin: 0 var(--px);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.svc-card {
    background: var(--white);
    padding: 2rem 1.2rem;
    text-align: center;
    transition: background .3s;
}

.svc-card:hover {
    background: var(--cream);
}

.svc-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--cream-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold);
    margin: 0 auto 1rem;
    transition: all .3s var(--ease);
}

.svc-card:hover .svc-icon {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.svc-card h3 {
    font-family: var(--ff-disp);
    font-size: var(--t-md);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .3rem;
}

.svc-card p {
    font-size: var(--t-xs);
    color: var(--muted);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   UTILITY
══════════════════════════════════════════════════ */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--px);
}

/* --- Extracted from product.php --- */

/* ══════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════ */
:root {
    --gold: #0D362B;
    --gold-h: #7A5520;
    --gold-lt: #C9941F;
    --gold-pale: #F5E9CC;
    --gold-sheen: #EDD483;
    --cream: #FDFAF3;
    --cream-2: #F4EDDA;
    --ink: #16110A;
    --ink-soft: #3A3020;
    --muted: #6B5D42;
    --border: #DDD0AD;
    --white: #FFFFFF;
    --red: #B91C1C;
    --green: #15803D;
    --focus: #005FCC;

    --ff-disp: 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'Outfit', sans-serif;

    --tap: 52px;
    --r: 8px;
    --ease: cubic-bezier(.4, 0, .2, 1);

    --px: 1rem;
    --section-py: 3rem;
}

@media (min-width: 576px) {
    :root {
        --px: 1.5rem;
    }
}

@media (min-width: 992px) {
    :root {
        --px: 3vw;
        --section-py: 5rem;
    }
}

/* ── BASE ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    padding-bottom: 90px;
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

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

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

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
    border-radius: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ══════════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════════ */
.breadcrumb-bar {
    background: var(--cream-2);
    border-bottom: 1px solid var(--border);
    padding: .65rem var(--px);
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .25rem;
    font-size: .78rem;
    color: var(--muted);
    max-width: 1280px;
    margin: 0 auto;
}

.breadcrumb-inner a {
    color: var(--muted);
    transition: color .2s;
}

.breadcrumb-inner a:hover {
    color: var(--gold);
}

.breadcrumb-inner .sep {
    opacity: .5;
    font-size: .7rem;
}

.breadcrumb-inner .current {
    color: var(--ink);
    font-weight: 500;
}

/* ══════════════════════════════════════════════
   PRODUCT LAYOUT
══════════════════════════════════════════════ */
.pd-section {
    padding: 0.75rem 0 var(--section-py);
}

.pd-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--px);
}

@media (min-width: 992px) {
    .pd-grid {
        grid-template-columns: 52% 1fr;
        gap: 3.5rem;
        align-items: start;
    }
}

/* ══════════════════════════════════════════════
   IMAGE GALLERY  —  MOBILE-FIRST
══════════════════════════════════════════════ */
/* No sticky on mobile — stacks naturally above info panel */
.gallery-wrap {
    min-width: 0;
}

.pd-info {
    min-width: 0;
}

@media (min-width: 992px) {
    .gallery-wrap {
        position: sticky;
        top: 1rem;
    }
}

/*
   GALLERY FIX — padding-bottom intrinsic box trick.
   The outer div has height:0 + padding-bottom which creates a stable
   pixel height the browser calculates BEFORE Swiper JS runs.
   Swiper is absolutely positioned inside and cannot change the outer height.
*/
.gallery-main {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    background: var(--cream-2);
    border: 1px solid var(--border);
    width: 100%;
    aspect-ratio: 1/1;
    /* Modern aspect ratio gives Swiper a firm bounding box */
}

.gallery-main .swiper {
    width: 100%;
    height: 100%;
}

.gallery-main .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Discount ribbon */
.gallery-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    background: var(--red);
    color: var(--white);
    font-size: .68rem;
    font-weight: 700;
    padding: .25rem .65rem;
    border-radius: 3px;
    letter-spacing: .04em;
}

/* Stock tag */
.gallery-stock-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    font-size: .65rem;
    font-weight: 700;
    padding: .25rem .6rem;
    border-radius: 3px;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.in-stock-tag {
    background: rgba(21, 128, 61, .9);
    color: var(--white);
}

.low-stock-tag {
    background: rgba(180, 83, 9, .9);
    color: var(--white);
}

.out-stock-tag {
    background: rgba(185, 28, 28, .9);
    color: var(--white);
}

/* Nav arrows — hidden on very small screens (swipe instead) */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white) !important;
    background: rgba(0, 0, 0, .38);
    border-radius: 50%;
    width: 36px !important;
    height: 36px !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: .8rem !important;
    font-weight: 900;
}

@media (max-width: 400px) {

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
}

/* Thumbs */
.gallery-thumbs {
    margin-top: .6rem;
}

.gallery-thumbs .swiper-slide {
    border: 2px solid transparent;
    border-radius: var(--r);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1/1;
    opacity: .65;
    transition: opacity .2s, border-color .2s;
}

.gallery-thumbs .swiper-slide-thumb-active {
    border-color: var(--gold);
    opacity: 1;
}

.gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--white);
}

/* Share row */
.share-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: .75rem;
    flex-wrap: wrap;
}

.share-label {
    font-size: .75rem;
    color: var(--muted);
    font-weight: 500;
}

.share-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--ink-soft);
    transition: all .2s;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.share-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* ══════════════════════════════════════════════
   PRODUCT INFO PANEL
══════════════════════════════════════════════ */
.pd-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: .65rem;
}

.pd-cat {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-pale);
    padding: .2rem .65rem;
    border-radius: 3px;
}

.pd-sku {
    font-size: .7rem;
    color: var(--muted);
}

.pd-title {
    font-family: var(--ff-disp);
    font-size: clamp(1.45rem, 5vw, 2.2rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: .75rem;
}

.pd-rating {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
    margin-bottom: .9rem;
    padding-bottom: .9rem;
    border-bottom: 1px solid var(--border);
}

.stars-row {
    display: flex;
    gap: .08rem;
}

.stars-row i {
    font-size: .95rem;
    color: var(--gold-lt);
}

.stars-row i.ri-star-line {
    color: var(--border);
}

.pd-rating-text {
    font-size: .8rem;
    color: var(--muted);
}

.pd-rating-text a {
    color: var(--gold);
    font-weight: 600;
    border-bottom: 1px dashed var(--gold-pale);
}

/* Price */
.pd-price-block {
    margin-bottom: 1.1rem;
}

.pd-price-now {
    font-family: var(--ff-disp);
    font-size: clamp(1.6rem, 6vw, 2.5rem);
    font-weight: 700;
    color: var(--gold-h);
    line-height: 1;
    display: inline-block;
}

.pd-price-was {
    font-size: 1rem;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: .55rem;
}

.pd-discount-badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: .68rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 3px;
    margin-left: .45rem;
    vertical-align: middle;
    letter-spacing: .04em;
}

.pd-incl-tax {
    font-size: .7rem;
    color: var(--muted);
    display: block;
    margin-top: .25rem;
}

@keyframes priceFlash {
    0% {
        opacity: 0;
        transform: translateY(-4px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.price-updated {
    animation: priceFlash .22s ease forwards;
}

/* Offers strip */
.offers-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--cream-2);
    border: 1px dashed var(--border);
    border-radius: var(--r);
    padding: .6rem .9rem;
    margin-bottom: 1.1rem;
    font-size: .8rem;
}

.offers-strip a {
    color: var(--gold);
    font-weight: 700;
    font-size: .73rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--gold-pale);
    white-space: nowrap;
}

/* ── VARIANTS ── */
.pd-variants {
    margin-bottom: 1.1rem;
}

.variant-group {
    margin-bottom: .85rem;
}

.vg-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .5rem;
}

.vg-label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: .04em;
    text-transform: uppercase;
}

.vg-selected-val {
    font-size: .78rem;
    color: var(--gold);
    font-weight: 600;
}

.size-guide-link {
    font-size: .73rem;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    border-bottom: 1px dashed var(--border);
    transition: color .2s;
}

.size-guide-link:hover {
    color: var(--gold);
}

.variant-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.chip-input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.chip-label {
    display: inline-flex;
    align-items: center;
    border: var(--border-w) solid var(--border);
    border-radius: var(--r);
    padding: .4rem .85rem;
    font-size: .8rem;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    background: var(--white);
    transition: all .2s var(--ease);
    min-height: 40px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    box-shadow: var(--shadow-solid-ink);
}

.chip-label:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--ink);
}

.chip-input:checked+.chip-label {
    background: var(--gold);
    border-color: var(--ink);
    color: var(--ink);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--ink);
}

.chip-input:focus-visible+.chip-label {
    outline: 3px solid var(--ink);
    outline-offset: 2px;
}

.chip-label.oos {
    opacity: .45;
    cursor: not-allowed;
    position: relative;
    text-decoration: line-through;
    text-decoration-color: var(--red);
}

.chip-label.oos::after {
    content: 'OOS';
    position: absolute;
    top: -6px;
    right: -6px;
    font-size: .52rem;
    font-weight: 800;
    background: var(--red);
    color: var(--white);
    border-radius: 3px;
    padding: 1px 4px;
    letter-spacing: .04em;
    line-height: 1.4;
}

/* ── QTY + CTA ── */
.pd-action-row {
    display: flex;
    align-items: stretch;
    gap: .65rem;
    margin-bottom: 1.1rem;
}

.qty-box {
    display: flex;
    align-items: center;
    border: var(--border-w) solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    height: var(--tap);
    flex-shrink: 0;
    box-shadow: var(--shadow-solid-ink);
    background: var(--white);
}

.qty-btn {
    width: 42px;
    height: 100%;
    border: none;
    background: var(--white);
    color: var(--ink);
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    font-weight: 800;
    -webkit-tap-highlight-color: transparent;
}

.qty-btn:hover {
    background: var(--gold-pale);
}

.qty-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
}

#qty-input {
    width: 46px;
    height: 100%;
    border: none;
    background: var(--white);
    text-align: center;
    font-family: var(--ff-body);
    font-size: .95rem;
    font-weight: 600;
    color: var(--ink);
    -moz-appearance: textfield;
}

#qty-input::-webkit-outer-spin-button,
#qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-atc {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    height: var(--tap);
    background: var(--gold);
    color: var(--ink);
    border: var(--border-w) solid var(--ink);
    border-radius: var(--r);
    font-family: var(--ff-body);
    font-size: .88rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .2s var(--ease);
    box-shadow: var(--shadow-solid-ink);
    -webkit-tap-highlight-color: transparent;
}

.btn-atc:hover,
.btn-atc:focus-visible {
    background: var(--white);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--ink);
}

.btn-atc:disabled {
    background: var(--white);
    border-color: var(--ink);
    color: var(--ink);
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn-wish {
    width: var(--tap);
    height: var(--tap);
    border: var(--border-w) solid var(--ink);
    border-radius: var(--r);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--ink);
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0;
    box-shadow: var(--shadow-solid-ink);
    -webkit-tap-highlight-color: transparent;
}

.btn-wish:hover {
    background: var(--gold);
    color: var(--ink);
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px var(--ink);
}

/* Stock bar */
.stock-bar {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: 1rem;
    font-size: .8rem;
    padding: .5rem .8rem;
    border-radius: var(--r);
    border: 1.5px solid transparent;
}

.stock-bar.state-green {
    background: #F0FDF4;
    border-color: #BBF7D0;
}

.stock-bar.state-orange {
    background: #FFF7ED;
    border-color: #FED7AA;
}

.stock-bar.state-red {
    background: #FEF2F2;
    border-color: #FECACA;
}

.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-green {
    background: #16A34A;
    box-shadow: 0 0 5px rgba(22, 163, 74, .5);
}

.dot-orange {
    background: #D97706;
    box-shadow: 0 0 5px rgba(217, 119, 6, .5);
}

.dot-red {
    background: #DC2626;
    box-shadow: 0 0 5px rgba(220, 38, 38, .5);
}

.stock-text {
    font-weight: 600;
    line-height: 1.3;
}

.stock-text.green {
    color: #15803D !important;
}

.stock-text.orange {
    color: #92400E !important;
}

.stock-text.red {
    color: #991B1B !important;
}

/* Delivery estimate */
.delivery-estimate {
    display: flex;
    align-items: center;
    gap: .6rem;
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: var(--r);
    padding: .65rem .9rem;
    margin-bottom: 1.1rem;
    font-size: .8rem;
    color: var(--ink-soft);
}

.delivery-estimate i {
    font-size: 1.15rem;
    color: var(--green);
    flex-shrink: 0;
}

/* ── TRUST BADGES ── */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .4rem;
    margin-bottom: 1.1rem;
}

.trust-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: .65rem .4rem;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
    -webkit-tap-highlight-color: transparent;
}

.trust-card:hover {
    border-color: var(--gold);
    background: var(--gold-pale);
}

.trust-card i {
    font-size: 1.3rem;
    color: var(--gold-h);
    display: block;
    margin-bottom: .25rem;
}

.trust-card span {
    font-size: .6rem;
    font-weight: 600;
    color: var(--ink-soft);
    line-height: 1.25;
    display: block;
    text-transform: uppercase;
    letter-spacing: .03em;
}

/* ══════════════════════════════════════════════
   STICKY MOBILE ATC BAR
══════════════════════════════════════════════ */
.sticky-atc {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    border-top: 2px solid var(--border);
    padding: .6rem var(--px) calc(.6rem + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    gap: .55rem;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, .1);
}

@media (min-width: 992px) {
    .sticky-atc {
        display: none;
    }
}

.sticky-price {
    flex: 1;
    min-width: 0;
}

.sticky-price strong {
    font-family: var(--ff-disp);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-h);
    display: block;
    line-height: 1.1;
}

.sticky-price del {
    font-size: .73rem;
    color: var(--muted);
}

.sticky-atc-btn {
    flex: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    height: 46px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: var(--r);
    font-family: var(--ff-body);
    font-size: .86rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
    -webkit-tap-highlight-color: transparent;
}

.sticky-atc-btn:hover {
    background: var(--gold-h);
}

.sticky-atc-btn:disabled {
    background: var(--border);
    color: var(--muted);
    cursor: not-allowed;
}

/* ══════════════════════════════════════════════
   TABS
══════════════════════════════════════════════ */
.pd-tabs-section {
    background: var(--white);
    border-top: 2px solid var(--border);
    padding: 2rem 0 var(--section-py);
}

.pd-tabs-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--px);
}

.tab-nav {
    display: flex;
    border-bottom: 2px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.tab-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    flex-shrink: 0;
    padding: .85rem 1.3rem;
    background: none;
    border: none;
    font-family: var(--ff-body);
    font-size: .86rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: color .2s;
    -webkit-tap-highlight-color: transparent;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .25s var(--ease);
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--gold);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-panel {
    display: none;
    padding-top: 1.75rem;
}

.tab-panel.active {
    display: block;
}

/* Description */
.desc-body {
    font-size: .93rem;
    line-height: 1.9;
    color: var(--ink-soft);
    max-width: 760px;
}

.desc-body h2,
.desc-body h3 {
    font-family: var(--ff-disp);
    color: var(--ink);
    margin: 1.5rem 0 .5rem;
}

/* Info table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    max-width: 560px;
    font-size: .88rem;
}

.info-table th,
.info-table td {
    padding: .75rem 1rem;
    border: 1px solid var(--border);
    text-align: left;
}

.info-table th {
    background: var(--cream-2);
    font-weight: 600;
    color: var(--ink);
    width: 38%;
}

.info-table td {
    color: var(--ink-soft);
    background: var(--white);
}

.status-in {
    color: var(--green);
    font-weight: 700;
}

.status-out {
    color: var(--red);
    font-weight: 700;
}

/* Reviews */
.reviews-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .reviews-layout {
        grid-template-columns: 38% 1fr;
        align-items: start;
    }
}

.rating-summary {
    background: var(--cream-2);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 1.5rem;
    text-align: center;
}

.rating-big {
    font-family: var(--ff-disp);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-h);
    line-height: 1;
}

.rating-stars-big {
    display: flex;
    justify-content: center;
    gap: .15rem;
    margin: .4rem 0 .5rem;
}

.rating-stars-big i {
    font-size: 1.15rem;
    color: var(--gold-lt);
}

.rating-stars-big i.ri-star-line {
    color: var(--border);
}

.rating-count {
    font-size: .78rem;
    color: var(--muted);
}

.review-form-box {
    background: var(--cream-2);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 1.35rem;
    margin-bottom: 1.35rem;
}

.review-form-box h3 {
    font-family: var(--ff-disp);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: .9rem;
}

.rv-alert {
    padding: .7rem .9rem;
    border-radius: var(--r);
    font-size: .85rem;
    margin-bottom: .7rem;
}

.rv-success {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    color: var(--green);
}

.rv-danger {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: var(--red);
}

.rv-warn {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    color: #92400E;
}

.rv-label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .3rem;
    display: block;
}

.rv-select,
.rv-textarea {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    background: var(--white);
    font-family: var(--ff-body);
    font-size: .86rem;
    color: var(--ink);
    padding: .55rem .8rem;
    margin-bottom: .8rem;
    outline: none;
    transition: border-color .2s;
}

.rv-select:focus,
.rv-textarea:focus {
    border-color: var(--gold);
}

.rv-textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit-rv {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    height: 42px;
    padding: 0 1.4rem;
    background: var(--ink);
    color: var(--white);
    border: none;
    border-radius: var(--r);
    font-family: var(--ff-body);
    font-size: .83rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}

.btn-submit-rv:hover {
    background: var(--gold);
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.review-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 1rem 1.15rem;
}

.review-head {
    display: flex;
    align-items: flex-start;
    gap: .8rem;
    margin-bottom: .55rem;
}

.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold-pale);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-disp);
    font-size: .95rem;
    font-weight: 700;
    color: var(--gold-h);
    flex-shrink: 0;
}

.review-name {
    font-weight: 600;
    font-size: .88rem;
    color: var(--ink);
}

.review-date {
    font-size: .7rem;
    color: var(--muted);
}

.review-stars {
    display: flex;
    gap: .05rem;
    margin-top: .2rem;
}

.review-stars i {
    font-size: .78rem;
    color: var(--gold-lt);
}

.review-stars i.ri-star-line {
    color: var(--border);
}

.review-text {
    font-size: .86rem;
    color: var(--ink-soft);
    line-height: 1.7;
}

.no-reviews {
    text-align: center;
    padding: 2.25rem 1rem;
    color: var(--muted);
    font-size: .88rem;
    border: 1.5px dashed var(--border);
    border-radius: var(--r);
}

/* ══════════════════════════════════════════════
   MODALS
══════════════════════════════════════════════ */
.hk-modal-body {
    padding: 1.4rem;
    font-size: .88rem;
    color: var(--ink-soft);
    line-height: 1.8;
}

.hk-modal-body ul {
    padding-left: 1.2rem;
    margin-top: .5rem;
}

.hk-modal-body li {
    margin-bottom: .3rem;
}

.modal-header.gold-hd {
    background: var(--gold-pale);
    border-bottom: 1px solid var(--border);
}

.modal-header.gold-hd .modal-title {
    font-family: var(--ff-disp);
    font-weight: 700;
    color: var(--ink);
    font-size: 1.1rem;
}

/* Size guide table */
.size-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .8rem;
}

.size-table th {
    background: var(--cream-2);
    font-weight: 600;
    padding: .55rem .7rem;
    border: 1px solid var(--border);
}

.size-table td {
    padding: .5rem .7rem;
    border: 1px solid var(--border);
    text-align: center;
}

.size-table tr:nth-child(even) td {
    background: var(--cream);
}

/* Coupon chips */
.coupon-chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--cream-2);
    border: 1.5px dashed var(--gold);
    border-radius: var(--r);
    padding: .5rem .9rem;
    font-size: .8rem;
    margin: .3rem 0;
    cursor: pointer;
    transition: background .2s;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
}

.coupon-chip:hover {
    background: var(--gold-pale);
}

.coupon-code {
    font-weight: 700;
    font-family: monospace;
    font-size: .88rem;
    color: var(--gold-h);
}


/* --- Extracted from collection.php --- */

/* ══════════════════════════════════════════════
   TOKENS
══════════════════════════════════════════════ */
:root {
    --gold: #0D362B;
    --gold-hover: #7A5520;
    --gold-pale: #F5E9CC;
    --cream: #FDFAF3;
    --cream-mid: #F0E8CE;
    --ink: #1A1510;
    --ink-soft: #38301F;
    --muted: #6B5D42;
    --border: #CDBF9A;
    --white: #FFFFFF;
    --danger: #B91C1C;
    --focus: #005FCC;

    --ff-display: 'Playfair Display', Georgia, serif;
    --ff-body: 'DM Sans', sans-serif;

    --t-xs: 1rem;
    --t-sm: 1.125rem;
    --t-md: 1.25rem;
    --t-lg: 1.5rem;
    --t-xl: 2rem;

    --tap: 52px;
    --radius: 6px;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ── BASE ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    font-size: var(--t-sm);
    line-height: 1.85;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

/* ── SKIP LINK ── */
.skip-link {
    position: absolute;
    top: -200%;
    left: 1rem;
    padding: .85rem 1.5rem;
    background: var(--ink);
    color: var(--white);
    font-size: var(--t-sm);
    font-weight: 600;
    z-index: 9999;
    text-decoration: none;
    border-radius: 0 0 var(--radius) var(--radius);
    transition: top .2s;
}

.skip-link:focus {
    top: 0;
}

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
    border-radius: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ══════════════════════════════════════════════
   CATEGORY ROW
   FIX: replaced Swiper with native scroll on
   mobile so ALL categories are reachable
══════════════════════════════════════════════ */
.cat-section {
    padding: 2rem 0 1.5rem;
    background: var(--white);
    border-bottom: 2px solid var(--border);
}

.cat-section .container {
    overflow: visible;
}

/* Native horizontal scroll on mobile, grid on desktop */
.cat-scroll-row {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: .5rem .25rem 1rem;
    /* hide scrollbar visually but keep functional */
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.cat-scroll-row::-webkit-scrollbar {
    height: 4px;
}

.cat-scroll-row::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px;
}

/* On desktop: wrap into a neat grid */
@media (min-width: 992px) {
    .cat-scroll-row {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        overflow-x: visible;
        gap: 1.25rem;
        padding: .5rem 0;
    }
}

.cat-item {
    flex: 0 0 88px;
    /* fixed width on mobile */
    scroll-snap-align: start;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
}

@media (min-width: 992px) {
    .cat-item {
        flex: unset;
    }
}

.cat-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border);
    background: var(--cream-mid);
    transition: border-color .3s var(--ease), transform .3s var(--ease);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .cat-circle {
        width: 90px;
        height: 90px;
    }
}

.cat-item:hover .cat-circle,
.cat-item:focus-visible .cat-circle {
    border-color: var(--gold);
    transform: scale(.95);
}

.cat-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.cat-item:hover .cat-circle img {
    transform: scale(1.1);
}

.cat-label {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1.3;
    white-space: wrap;
}

.cat-item:hover .cat-label {
    color: var(--gold);
}

/* Active category highlight */
.cat-item.active .cat-circle {
    border-color: var(--gold);
}

.cat-item.active .cat-label {
    color: var(--gold);
}

/* ══════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════ */
.shop-content {
    padding: 1.5rem 0 5rem;
}

/* ══════════════════════════════════════════════
   SIDEBAR
══════════════════════════════════════════════ */

/* Desktop sticky sidebar */
.shop-sidebar-wrap {
    position: sticky;
    top: 100px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

/* Mobile: drawer from left */
@media (max-width: 1199px) {
    .shop-sidebar-wrap {
        position: fixed;
        top: 0;
        left: -100vw;
        width: min(320px, 90vw);
        height: 100dvh;
        max-height: 100dvh;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 1050;
        border-radius: 0;
        border: none;
        border-right: 2px solid var(--border);
        padding: 1.5rem 1.25rem;
        transition: left .35s var(--ease);
        box-shadow: none;
    }

    .shop-sidebar-wrap.is-open {
        left: 0;
        box-shadow: 4px 0 24px rgba(0, 0, 0, .18);
    }
}

/* Backdrop */
.sidebar-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 1049;
    cursor: pointer;
}

.sidebar-backdrop.is-open {
    display: block;
}

/* Sidebar header (mobile) */
.sidebar-mob-hd {
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}

@media (max-width: 1199px) {
    .sidebar-mob-hd {
        display: flex;
    }
}

.sidebar-close-btn {
    display: flex;
    align-items: center;
    gap: .4rem;
    min-height: var(--tap);
    min-width: var(--tap);
    padding: 0 1rem;
    background: none;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: var(--t-sm);
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    font-family: var(--ff-body);
    transition: background .3s;
}

.sidebar-close-btn:hover {
    background: var(--cream-mid);
}

.filter-section-title {
    font-family: var(--ff-display);
    font-size: var(--t-md);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .35rem;
}

.filter-divider {
    border: none;
    border-top: 2px solid var(--border);
    margin: .6rem 0 1.25rem;
}

/* ── Price Slider ── */
.price-range-slider {
    position: relative;
    width: 100%;
    height: 6px;
    background: var(--cream-mid);
    border-radius: 3px;
    margin: 1.5rem 0 1.25rem;
}

.range-selected {
    height: 100%;
    position: absolute;
    border-radius: 3px;
    background: var(--gold);
}

.range-input {
    position: relative;
    width: 100%;
}

.range-input input {
    position: absolute;
    width: 100%;
    height: 6px;
    top: -6px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    z-index: 2;
}

.range-input input::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 26px;
    width: 26px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--gold);
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
    margin-top: -9px;
    transition: border-color .2s;
}

.range-input input::-webkit-slider-thumb:hover {
    border-color: var(--gold-hover);
}

.range-input input::-moz-range-thumb {
    height: 26px;
    width: 26px;
    border: 4px solid var(--gold);
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}

.price-inputs-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: .5rem;
}

.price-field {
    flex: 1;
    display: flex;
    align-items: center;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--cream);
    padding: 0 .6rem;
    height: var(--tap);
    transition: border-color .25s;
}

.price-field:focus-within {
    border-color: var(--gold);
}

.price-field>span {
    font-size: var(--t-sm);
    font-weight: 600;
    color: var(--muted);
    flex-shrink: 0;
    margin-right: .25rem;
}

.price-field input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: var(--t-sm);
    font-weight: 600;
    color: var(--ink);
    text-align: center;
    outline: none;
    width: 100%;
    font-family: var(--ff-body);
    min-height: 44px;
}

.price-sep {
    color: var(--muted);
    font-size: var(--t-sm);
    font-weight: 500;
}

.btn-filter-apply {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    min-height: var(--tap);
    background: var(--ink);
    color: var(--white);
    border: 2px solid transparent;
    border-radius: var(--radius);
    font-size: var(--t-sm);
    font-weight: 600;
    letter-spacing: .06em;
    cursor: pointer;
    margin-top: 1.25rem;
    transition: background .3s var(--ease);
    font-family: var(--ff-body);
}

.btn-filter-apply:hover,
.btn-filter-apply:focus-visible {
    background: var(--gold);
}

/* ── Size checkboxes ── */
.size-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: .5rem;
}

.size-label {
    position: relative;
    cursor: pointer;
}

.cust-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cust-check {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    min-height: 52px;
    padding: .4rem .85rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    font-size: var(--t-sm);
    font-weight: 600;
    color: var(--ink-soft);
    transition: all .25s var(--ease);
    line-height: 1;
    cursor: pointer;
}

.cust-check:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.cust-checkbox:checked+.cust-check {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.cust-checkbox:focus-visible+.cust-check {
    outline: 3px solid var(--focus);
    outline-offset: 2px;
}

/* ══════════════════════════════════════════════
   GRID HEADER — stacks cleanly on mobile
══════════════════════════════════════════════ */
.grid-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem 1rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.grid-header-title {
    font-family: var(--ff-display);
    font-size: var(--t-xl);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: .15rem;
}

.grid-header-count {
    font-size: var(--t-sm);
    color: var(--muted);
}

.grid-controls {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .65rem;
}

/* Mobile filter open button */
.btn-open-filter {
    display: none;
    /* hidden on desktop */
    align-items: center;
    gap: .5rem;
    min-height: var(--tap);
    padding: 0 1.2rem;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: var(--t-sm);
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    transition: all .3s var(--ease);
    font-family: var(--ff-body);
}

@media (max-width: 1199px) {
    .btn-open-filter {
        display: flex;
    }
}

.btn-open-filter:hover,
.btn-open-filter:focus-visible {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* Sort select */
.sort-select {
    height: var(--tap);
    padding: 0 2.5rem 0 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A6F2A' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    -webkit-appearance: none;
    font-size: var(--t-sm);
    font-family: var(--ff-body);
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    outline: none;
    min-width: 180px;
    transition: border-color .25s;
}

@media (max-width: 480px) {
    .sort-select {
        min-width: 0;
        width: 100%;
    }
}

.sort-select:focus-visible {
    border-color: var(--gold);
}

/* ══════════════════════════════════════════════
   PRODUCT CARDS
══════════════════════════════════════════════ */
.product-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}

.product-card:hover,
.product-card:focus-within {
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
    transform: translateY(-4px);
}

.card-img-area {
    position: relative;
    overflow: hidden;
    background: var(--cream-mid);
}

.card-img-area .primary-img,
.card-img-area .hover-img {
    width: 100%;
    /* Responsive image aspect ratio */
    aspect-ratio: 3/4;
    height: auto;
    object-fit: cover;
    display: block;
    transition: opacity .5s var(--ease), transform .6s var(--ease);
}

.card-img-area .hover-img {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.product-card:hover .primary-img {
    opacity: 0;
    transform: scale(1.04);
}

.product-card:hover .hover-img {
    opacity: 1;
    transform: scale(1.04);
}

.badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    background: var(--danger);
    color: var(--white);
    font-size: .8rem;
    font-weight: 700;
    padding: .3rem .8rem;
    border-radius: 2px;
    letter-spacing: .05em;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    color: var(--ink);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .3s var(--ease);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}

.wishlist-btn:hover,
.wishlist-btn:focus-visible {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.card-body-inner {
    padding: 1rem 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: .4rem;
}

.card-sku {
    font-size: .8rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.card-name {
    font-family: var(--ff-display);
    font-size: var(--t-md);
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    line-height: 1.35;
    /* Clamp to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-name:hover,
.card-name:focus-visible {
    color: var(--gold);
    text-decoration: underline;
}

.card-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: .5rem;
}

.price-now {
    font-family: var(--ff-display);
    font-size: var(--t-lg);
    font-weight: 700;
    color: var(--gold-hover);
}

.price-was {
    font-size: var(--t-sm);
    color: var(--muted);
    text-decoration: line-through;
    opacity: .75;
}

.btn-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    width: 100%;
    min-height: var(--tap);
    margin-top: auto;
    background: var(--ink);
    color: var(--white);
    text-decoration: none;
    font-size: var(--t-sm);
    font-weight: 600;
    letter-spacing: .05em;
    border-radius: var(--radius);
    border: 2px solid transparent;
    transition: background .3s var(--ease);
    padding: 0 .75rem;
}

.btn-card-cta:hover,
.btn-card-cta:focus-visible {
    background: var(--gold);
    color: var(--white);
}

/* ══════════════════════════════════════════════
   EMPTY STATE
══════════════════════════════════════════════ */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--muted);
}

.empty-state i {
    font-size: 4rem;
    opacity: .3;
    display: block;
    margin-bottom: 1.25rem;
}

.empty-state h4 {
    font-family: var(--ff-display);
    font-size: var(--t-xl);
    color: var(--ink);
    margin-bottom: .65rem;
}

.empty-state p {
    font-size: var(--t-sm);
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.btn-clear {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    min-height: var(--tap);
    padding: 0 2rem;
    background: var(--ink);
    color: var(--white);
    text-decoration: none;
    font-size: var(--t-sm);
    font-weight: 600;
    border-radius: var(--radius);
    transition: background .3s;
}

.btn-clear:hover {
    background: var(--gold);
    color: var(--white);
}

/* ══════════════════════════════════════════════
   PAGINATION
══════════════════════════════════════════════ */
.pag-wrap {
    display: flex;
    justify-content: center;
    gap: .4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.pag-wrap .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    min-height: 52px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    font-size: var(--t-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all .3s var(--ease);
    padding: .25rem .5rem;
}

.pag-wrap .page-link:hover,
.pag-wrap .page-link:focus-visible {
    background: var(--cream-mid);
    border-color: var(--gold);
    color: var(--gold);
}

.pag-wrap .page-link.active-page {
    background: var(--ink) !important;
    border-color: var(--ink);
    color: var(--white) !important;
}

/* ══════════════════════════════════════════════
   MOBILE PRODUCT GRID — 1 column below 400px
══════════════════════════════════════════════ */
@media (max-width: 399px) {
    .col-6 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* Cursor pointer utility */
.cursor-pointer {
    cursor: pointer;
}


/* --- Extracted from cart.php --- */

/* ══════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════ */
:root {
    --gold: #0D362B;
    --gold-h: #7A5520;
    --gold-lt: #C9941F;
    --gold-pale: #F5E9CC;
    --cream: #FDFAF3;
    --cream-2: #F4EDDA;
    --ink: #16110A;
    --ink-soft: #3A3020;
    --muted: #6B5D42;
    --border: #DDD0AD;
    --white: #FFFFFF;
    --red: #B91C1C;
    --green: #15803D;
    --focus: #005FCC;

    --ff-disp: 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'Outfit', sans-serif;
    --tap: 52px;
    --r: 8px;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --px: 1rem;
}

@media (min-width: 576px) {
    :root {
        --px: 1.5rem;
    }
}

@media (min-width: 992px) {
    :root {
        --px: 3vw;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    padding-bottom: 80px;
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

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

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

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ══════════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════════ */
.bc-bar {
    background: var(--cream-2);
    border-bottom: 1px solid var(--border);
    padding: .6rem var(--px);
    font-size: .78rem;
    color: var(--muted);
}

.bc-bar a {
    color: var(--muted);
    transition: color .2s;
}

.bc-bar a:hover {
    color: var(--gold);
}

.bc-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .25rem;
}

.bc-sep {
    opacity: .5;
}

.bc-cur {
    color: var(--ink);
    font-weight: 500;
}

/* ══════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════ */
.cart-section {
    padding: 1.75rem 0 3rem;
}

.cart-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--px);
}

.cart-page-title {
    font-family: var(--ff-disp);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: .75rem;
}

.cart-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--white);
    font-family: var(--ff-body);
    font-size: .82rem;
    font-weight: 700;
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 992px) {
    .cart-grid {
        grid-template-columns: 1fr 340px;
        gap: 2.5rem;
    }
}

/* ══════════════════════════════════════════════
   CART ITEM CARDS (Mobile-first — no table)
══════════════════════════════════════════════ */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.cart-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 1rem;
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: .85rem 1rem;
    align-items: start;
    transition: box-shadow .2s var(--ease);
}

.cart-card:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, .07);
}

.cart-img-wrap {
    grid-row: span 2;
}

.cart-img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: var(--r);
    border: 1.5px solid var(--border);
    display: block;
}

@media (min-width: 480px) {
    .cart-card {
        grid-template-columns: 104px 1fr;
    }

    .cart-img {
        width: 104px;
        height: 104px;
    }
}

@media (min-width: 768px) {
    .cart-card {
        grid-template-columns: 120px 1fr auto;
        gap: 1rem 1.5rem;
    }

    .cart-img-wrap {
        grid-row: unset;
    }

    .cart-img {
        width: 120px;
        height: 120px;
    }
}

.cart-product-name {
    font-family: var(--ff-disp);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
    display: block;
    margin-bottom: .2rem;
    transition: color .2s;
}

.cart-product-name:hover {
    color: var(--gold);
}

.cart-variant-tag {
    display: inline-block;
    background: var(--cream-2);
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: .72rem;
    font-weight: 500;
    color: var(--muted);
    padding: .15rem .55rem;
    margin-bottom: .45rem;
}

/* ★ Price row — shows custom/sale/base clearly */
.cart-price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: .6rem;
}

.cart-unit-price {
    font-family: var(--ff-disp);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-h);
}

.cart-orig-price {
    font-size: .8rem;
    color: var(--muted);
    text-decoration: line-through;
}

.cart-price-note {
    font-size: .68rem;
    color: var(--muted);
    font-style: italic;
}

/* Qty + remove row */
.cart-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem;
}

.cart-qty-box {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    height: 40px;
}

.qty-btn {
    width: 36px;
    height: 100%;
    border: none;
    background: var(--cream-2);
    color: var(--ink);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    -webkit-tap-highlight-color: transparent;
}

.qty-btn:hover {
    background: var(--gold-pale);
}

.qty-num {
    width: 44px;
    height: 100%;
    border: none;
    background: var(--white);
    text-align: center;
    font-family: var(--ff-body);
    font-size: .9rem;
    font-weight: 600;
    color: var(--ink);
    -moz-appearance: textfield;
}

.qty-num::-webkit-outer-spin-button,
.qty-num::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.cart-subtotal {
    font-family: var(--ff-disp);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
}

.cart-remove {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: .25rem;
    border-radius: 4px;
    transition: color .2s;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    gap: .25rem;
    font-size: .78rem;
    font-weight: 500;
}

.cart-remove:hover {
    color: var(--red);
}

/* Desktop right-side price column */
@media (min-width: 768px) {
    .cart-right-col {
        text-align: right;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: space-between;
        min-height: 100%;
    }
}

/* Update cart bar */
.cart-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
    padding: 1rem 0 .25rem;
    border-top: 1.5px solid var(--border);
    margin-top: .25rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    height: 44px;
    padding: 0 1.25rem;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--ink-soft);
    font-family: var(--ff-body);
    font-size: .82rem;
    font-weight: 600;
    border-radius: var(--r);
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}

.btn-secondary:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.btn-update {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    height: 44px;
    padding: 0 1.5rem;
    background: var(--ink);
    color: var(--white);
    border: 2px solid var(--ink);
    font-family: var(--ff-body);
    font-size: .82rem;
    font-weight: 600;
    border-radius: var(--r);
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}

.btn-update:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* ══════════════════════════════════════════════
   CART SUMMARY PANEL
══════════════════════════════════════════════ */
.summary-panel {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    position: sticky;
    top: 1rem;
}

.summary-hd {
    background: var(--ink);
    padding: 1rem 1.35rem;
    font-family: var(--ff-disp);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.summary-body {
    padding: 1.35rem;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .65rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .9rem;
}

.summary-row:last-of-type {
    border-bottom: none;
}

.summary-row.total-row {
    padding-top: .85rem;
    margin-top: .1rem;
    border-top: 2px solid var(--border);
}

.summary-label {
    color: var(--muted);
    font-weight: 500;
}

.summary-val {
    font-weight: 600;
    color: var(--ink);
}

.summary-val.free {
    color: var(--green);
    font-weight: 700;
}

.summary-val.total-val {
    font-family: var(--ff-disp);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-h);
}

/* Coupon row */
.coupon-row {
    display: flex;
    gap: .5rem;
    margin: .85rem 0;
}

.coupon-input {
    flex: 1;
    height: 44px;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 0 .85rem;
    font-family: var(--ff-body);
    font-size: .85rem;
    color: var(--ink);
    background: var(--cream);
    outline: none;
    transition: border-color .2s;
}

.coupon-input:focus {
    border-color: var(--gold);
}

.coupon-btn {
    height: 44px;
    padding: 0 1rem;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: var(--r);
    font-family: var(--ff-body);
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s;
}

.coupon-btn:hover {
    background: var(--gold-h);
}

.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    height: var(--tap);
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: var(--r);
    font-family: var(--ff-body);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s;
    -webkit-tap-highlight-color: transparent;
    margin-top: .85rem;
}

.btn-checkout:hover {
    background: var(--gold-h);
}

/* Trust mini strip */
.summary-trust {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: .85rem 0 0;
    margin-top: .75rem;
    border-top: 1px solid var(--border);
}

.mini-trust {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .7rem;
    color: var(--muted);
    font-weight: 500;
}

.mini-trust i {
    color: var(--gold);
    font-size: .85rem;
}

/* ══════════════════════════════════════════════
   EMPTY STATE
══════════════════════════════════════════════ */
.empty-cart {
    text-align: center;
    padding: 4rem var(--px);
    grid-column: 1 / -1;
}

.empty-cart i {
    font-size: 4.5rem;
    color: var(--border);
    display: block;
    margin-bottom: 1.25rem;
}

.empty-cart h2 {
    font-family: var(--ff-disp);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .5rem;
}

.empty-cart p {
    font-size: .95rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
}

.btn-start {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    height: var(--tap);
    padding: 0 2rem;
    background: var(--ink);
    color: var(--white);
    border: 2px solid var(--ink);
    border-radius: var(--r);
    font-family: var(--ff-body);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: all .25s;
}

.btn-start:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* ══════════════════════════════════════════════
   STICKY MOBILE CHECKOUT BAR
══════════════════════════════════════════════ */
.sticky-checkout {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    border-top: 2px solid var(--border);
    padding: .65rem var(--px) calc(.65rem + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    gap: .75rem;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, .1);
}

@media (min-width: 992px) {
    .sticky-checkout {
        display: none;
    }
}

.sc-total {
    flex: 1;
    min-width: 0;
}

.sc-total strong {
    font-family: var(--ff-disp);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-h);
    display: block;
    line-height: 1.1;
}

.sc-total small {
    font-size: .72rem;
    color: var(--muted);
}

.sc-btn {
    flex: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    height: 48px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: var(--r);
    font-family: var(--ff-body);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
    -webkit-tap-highlight-color: transparent;
}

.sc-btn:hover {
    background: var(--gold-h);
}


/* --- Extracted from checkout.php --- */

:root {
    --gold: #0D362B;
    --gold-h: #7A5520;
    --gold-pale: #F5E9CC;
    --cream: #FDFAF3;
    --cream-2: #F4EDDA;
    --ink: #16110A;
    --ink-soft: #3A3020;
    --muted: #6B5D42;
    --border: #DDD0AD;
    --white: #FFFFFF;
    --red: #B91C1C;
    --green: #15803D;
    --focus: #005FCC;

    --ff-disp: 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'Outfit', sans-serif;
    --tap: 52px;
    --r: 10px;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --px: 1rem;
}

@media(min-width:576px) {
    :root {
        --px: 1.5rem;
    }
}

@media(min-width:992px) {
    :root {
        --px: 3vw;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    padding-bottom: 100px;
}

@media(min-width:992px) {
    body {
        padding-bottom: 0;
    }
}

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

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

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ── BREADCRUMB ── */
.bc-bar {
    background: var(--cream-2);
    border-bottom: 1px solid var(--border);
    padding: .6rem var(--px);
    font-size: .78rem;
    color: var(--muted);
}

.bc-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .25rem;
}

.bc-bar a {
    color: var(--muted);
    transition: color .2s;
}

.bc-bar a:hover {
    color: var(--gold);
}

.bc-sep {
    opacity: .45;
}

/* ── PROGRESS STEPS ── */
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 1.1rem var(--px);
    background: var(--white);
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
}

.checkout-steps::-webkit-scrollbar {
    display: none;
}

.step {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    background: var(--cream-2);
    border: 2px solid var(--border);
    color: var(--muted);
}

.step.done .step-num {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.step.active .step-num {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.step.active {
    color: var(--ink);
}

.step-line {
    width: 32px;
    height: 2px;
    background: var(--border);
    flex-shrink: 0;
    margin: 0 .2rem;
}

@media(min-width:576px) {
    .step-line {
        width: 56px;
    }

    .step {
        gap: .55rem;
        font-size: .85rem;
    }
}

/* ── LAYOUT ── */
.co-section {
    padding: 1.5rem 0 3rem;
}

.co-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--px);
}

.co-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: start;
}

@media(min-width:992px) {
    .co-grid {
        grid-template-columns: 1fr 380px;
        gap: 2rem;
    }
}

/* ── SECTION BOX ── */
.co-box {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    margin-bottom: 1rem;
}

.co-box:last-child {
    margin-bottom: 0;
}

.co-box-hd {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .9rem 1.25rem;
    background: var(--cream-2);
    border-bottom: 1px solid var(--border);
    font-family: var(--ff-disp);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
}

.co-box-hd i {
    font-size: 1.2rem;
    color: var(--gold);
}

.co-box-body {
    padding: 1.1rem 1.25rem;
}

/* ── ADDRESS CARDS ── */
.addr-card {
    border: 2px solid var(--border);
    border-radius: var(--r);
    padding: .9rem 1rem;
    margin-bottom: .65rem;
    cursor: pointer;
    transition: all .2s var(--ease);
    position: relative;
    background: var(--white);
}

.addr-card:hover {
    border-color: var(--gold);
    background: var(--gold-pale);
}

.addr-card.active {
    border-color: var(--gold);
    background: var(--gold-pale);
    box-shadow: 0 2px 12px rgba(154, 111, 42, .18);
}

.addr-radio {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 20px;
    height: 20px;
    accent-color: var(--gold);
}

.addr-name {
    font-weight: 700;
    font-size: .95rem;
    margin-bottom: .2rem;
}

.addr-detail {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.55;
}

/* Guest form */
.field-group {
    margin-bottom: .85rem;
}

.field-label {
    font-size: .8rem;
    font-weight: 600;
    color: var(--ink);
    display: block;
    margin-bottom: .35rem;
}

.field-input,
.field-textarea {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    background: var(--cream);
    font-family: var(--ff-body);
    font-size: .9rem;
    color: var(--ink);
    padding: .65rem .9rem;
    outline: none;
    transition: border-color .2s;
}

.field-input:focus,
.field-textarea:focus {
    border-color: var(--gold);
    background: var(--white);
}

.field-textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-add-addr {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    height: 38px;
    padding: 0 1rem;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--ink-soft);
    border-radius: 6px;
    font-family: var(--ff-body);
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    margin-top: .25rem;
}

.btn-add-addr:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ── PAYMENT METHOD ── */
.pay-method {
    border: 2px solid var(--border);
    border-radius: var(--r);
    padding: 1rem 1.1rem;
    margin-bottom: .65rem;
    cursor: pointer;
    transition: all .2s var(--ease);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    background: var(--white);
    -webkit-tap-highlight-color: transparent;
}

.pay-method:hover {
    border-color: var(--gold);
}

.pay-method.active {
    border-color: var(--gold);
    background: var(--gold-pale);
    box-shadow: 0 2px 12px rgba(154, 111, 42, .15);
}

.pay-method-left {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.pay-radio {
    width: 20px;
    height: 20px;
    accent-color: var(--gold);
    flex-shrink: 0;
}

.pay-name {
    font-weight: 700;
    font-size: .95rem;
    color: var(--ink);
}

.pay-sub {
    font-size: .75rem;
    color: var(--muted);
    display: block;
    margin-top: .1rem;
}

.pay-icon {
    font-size: 1.4rem;
    color: var(--muted);
}

.pay-method.active .pay-icon {
    color: var(--gold);
}

/* COD fee notice */
.cod-notice {
    display: none;
    background: #FFF7ED;
    border: 1.5px solid #FED7AA;
    border-radius: var(--r);
    padding: .85rem 1rem;
    margin-top: .5rem;
    font-size: .82rem;
    color: #92400E;
    line-height: 1.6;
}

.cod-notice.show {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
}

.cod-notice i {
    font-size: 1.1rem;
    color: #D97706;
    flex-shrink: 0;
    margin-top: .1rem;
}

.cod-notice strong {
    font-weight: 700;
}

/* ── ORDER SUMMARY PANEL ── */
.summary-panel {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    position: sticky;
    top: 1rem;
}

.summary-hd {
    background: var(--ink);
    padding: .9rem 1.25rem;
    font-family: var(--ff-disp);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.summary-hd span {
    font-family: var(--ff-body);
    font-size: .78rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .6);
}

/* Cart item mini list */
.summary-items {
    max-height: 210px;
    overflow-y: auto;
    padding: .85rem 1.1rem .5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
    border-bottom: 1px solid var(--border);
}

.s-item {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: .7rem;
}

.s-item:last-child {
    margin-bottom: 0;
}

.s-item-img {
    width: 48px;
    height: 48px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid var(--border);
    flex-shrink: 0;
}

.s-item-name {
    font-size: .8rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
}

.s-item-var {
    font-size: .7rem;
    color: var(--muted);
}

.s-item-price {
    font-size: .85rem;
    font-weight: 700;
    color: var(--gold-h);
    margin-left: auto;
    white-space: nowrap;
}

/* Coupon */
.coupon-row {
    display: flex;
    gap: .5rem;
    padding: .85rem 1.1rem;
    border-bottom: 1px solid var(--border);
}

.coupon-input {
    flex: 1;
    height: 42px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    background: var(--cream);
    font-family: var(--ff-body);
    font-size: .85rem;
    color: var(--ink);
    padding: 0 .85rem;
    outline: none;
    transition: border-color .2s;
}

.coupon-input:focus {
    border-color: var(--gold);
}

.coupon-btn {
    height: 42px;
    padding: 0 1rem;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-family: var(--ff-body);
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
}

.coupon-btn:hover {
    background: var(--gold-h);
}

#couponMessage {
    padding: .3rem 1.1rem;
    font-size: .78rem;
}

/* Summary rows */
.summary-body {
    padding: .75rem 1.1rem;
}

.s-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: .88rem;
}

.s-row:last-child {
    border-bottom: none;
}

.s-label {
    color: var(--muted);
    font-weight: 500;
}

.s-val {
    font-weight: 600;
    color: var(--ink);
}

.s-val.free {
    color: var(--green);
}

/* COD fee row */
.s-row.cod-fee-row {
    display: none;
}

.s-row.cod-fee-row.show {
    display: flex;
}

.s-row.cod-fee-row .s-label {
    color: #92400E;
    font-weight: 600;
}

.s-row.cod-fee-row .s-val {
    color: #92400E;
    font-weight: 700;
}

/* COD "pay on delivery" row */
.s-row.cod-delivery-row {
    display: none;
}

.s-row.cod-delivery-row.show {
    display: flex;
}

.s-row.cod-delivery-row .s-label {
    color: var(--muted);
    font-weight: 500;
}

.s-row.cod-delivery-row .s-val {
    color: var(--ink);
    font-weight: 600;
}

/* Non-refundable tag */
.nr-tag {
    display: inline-block;
    font-size: .62rem;
    font-weight: 700;
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
    border-radius: 3px;
    padding: 1px 5px;
    margin-left: .35rem;
    vertical-align: middle;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.s-row.total-row {
    border-top: 2px solid var(--border);
    padding-top: .85rem;
    margin-top: .25rem;
}

.s-row.total-row .s-label {
    font-family: var(--ff-disp);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink);
}

.s-row.total-row .s-val {
    font-family: var(--ff-disp);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-h);
}

/* CTA button */
.btn-place-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    min-height: var(--tap);
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: var(--r);
    font-family: var(--ff-body);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s;
    margin: 1rem 1.1rem .85rem;
    width: calc(100% - 2.2rem);
    -webkit-tap-highlight-color: transparent;
}

.btn-place-order:hover {
    background: var(--gold-h);
}

.btn-place-order:disabled {
    background: var(--border);
    color: var(--muted);
    cursor: not-allowed;
}

.btn-place-order .spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255, 255, 255, .4);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

.btn-place-order.loading .spinner {
    display: block;
}

.btn-place-order.loading .btn-text {
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Secure badges */
.secure-row {
    display: flex;
    justify-content: center;
    gap: 1.1rem;
    flex-wrap: wrap;
    padding: .5rem 1.1rem 1rem;
    font-size: .7rem;
    color: var(--muted);
}

.secure-item {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.secure-item i {
    font-size: .85rem;
    color: var(--gold);
}

/* ── STICKY MOBILE BOTTOM CTA ── */
.sticky-co {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    border-top: 2px solid var(--border);
    padding: .65rem var(--px) calc(.65rem + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    gap: .75rem;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, .1);
}

@media(min-width:992px) {
    .sticky-co {
        display: none;
    }
}

.sc-info {
    flex: 1;
    min-width: 0;
}

.sc-info strong {
    font-family: var(--ff-disp);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-h);
    display: block;
    line-height: 1.1;
}

.sc-info small {
    font-size: .72rem;
    color: var(--muted);
}

.sc-btn {
    flex: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    height: 48px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: var(--r);
    font-family: var(--ff-body);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
    -webkit-tap-highlight-color: transparent;
}

.sc-btn:hover {
    background: var(--gold-h);
}

.sc-btn:disabled {
    background: var(--border);
    color: var(--muted);
    cursor: not-allowed;
}


/* --- Extracted from about.php --- */

/* ══════════════════════════════════════════════
   TOKENS
══════════════════════════════════════════════ */
:root {
    --gold: #0D362B;
    --gold-h: #7A5520;
    --gold-lt: #C9941F;
    --gold-pale: #F5E9CC;
    --gold-sheen: #EDD483;
    --cream: #FDFAF3;
    --cream-2: #F4EDDA;
    --ink: #16110A;
    --ink-soft: #3A3020;
    --muted: #6B5D42;
    --border: #DDD0AD;
    --white: #FFFFFF;
    --green: #15803D;
    --focus: #005FCC;

    --ff-disp: 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'Outfit', sans-serif;
    --tap: 52px;
    --r: 10px;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --px: 1rem;
}

@media(min-width:576px) {
    :root {
        --px: 1.5rem;
    }
}

@media(min-width:992px) {
    :root {
        --px: 3vw;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    font-size: 1rem;
    line-height: 1.85;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

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

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

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ── BREADCRUMB ── */
.bc-bar {
    background: var(--cream-2);
    border-bottom: 1px solid var(--border);
    padding: .65rem var(--px);
    font-size: .78rem;
    color: var(--muted);
}

.bc-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .25rem;
}

.bc-bar a {
    color: var(--muted);
    transition: color .2s;
}

.bc-bar a:hover {
    color: var(--gold);
}

.bc-sep {
    opacity: .45;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.about-hero {
    background: var(--white);
    padding: 4rem var(--px) 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: var(--border-w) solid var(--ink);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 1rem;
}

.hero-eyebrow span {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--ink);
}

.about-hero h1 {
    font-family: var(--ff-disp);
    font-size: clamp(2.4rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: .85rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.about-hero h1 em {
    font-style: normal;
    color: white;
    background: var(--gold);
    padding: 0 1rem;
}

.about-hero p {
    font-size: 1.05rem;
    color: white;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 600;
}

/* Trust micro-bar inside hero */
.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.75rem;
}

.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: var(--white);
    border: var(--border-w) solid var(--ink);
    border-radius: 0;
    padding: .3rem .85rem;
    font-size: .76rem;
    color: var(--ink);
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: var(--shadow-solid-ink);
}

.hero-trust-pill i {
    color: var(--gold);
    font-size: .85rem;
}

/* ══════════════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════════════ */
.sec-hd {
    text-align: center;
    margin-bottom: 2.5rem;
}

.sec-eyebrow {
    display: block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
}

.sec-title {
    font-family: var(--ff-disp);
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
}

.sec-title em {
    font-style: italic;
    color: var(--gold);
}

.sec-rule {
    width: 48px;
    height: 3px;
    background: var(--gold);
    border: none;
    margin: .85rem auto 0;
    border-radius: 2px;
}

.sec-sub {
    font-size: .95rem;
    color: var(--muted);
    max-width: 520px;
    margin: .75rem auto 0;
    line-height: 1.75;
}

/* ══════════════════════════════════════════════
   STORY SECTIONS (alternating image + text)
══════════════════════════════════════════════ */
.story-section {
    padding: 4rem 0;
}

.story-section:nth-child(even) {
    background: var(--white);
}

.story-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media(min-width:900px) {
    .story-inner {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .story-inner.reverse {
        direction: rtl;
    }

    .story-inner.reverse>* {
        direction: ltr;
    }
}

.story-img-wrap {
    position: relative;
    border-radius: 0;
    border: var(--border-w) solid var(--ink);
    box-shadow: var(--shadow-solid-ink);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--white);
}

.story-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating badge on image */
.img-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--white);
    border: var(--border-w) solid var(--ink);
    border-radius: 0;
    box-shadow: var(--shadow-solid-ink);
    padding: .5rem .85rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.img-badge i {
    color: var(--gold);
    font-size: 1.1rem;
}

.img-badge span {
    font-size: .75rem;
    color: var(--ink);
    font-weight: 800;
    text-transform: uppercase;
}

.story-body {}

.story-label {
    display: inline-block;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--gold);
    border: var(--border-w) solid var(--ink);
    box-shadow: 2px 2px 0px var(--ink);
    padding: .3rem .75rem;
    border-radius: 0;
    margin-bottom: .85rem;
}

.story-title {
    font-family: var(--ff-disp);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: .85rem;
    text-transform: uppercase;
}

.story-title em {
    font-style: normal;
    color: var(--cream);
    background: var(--gold);
    padding: 0 0.5rem;
}

.story-text {
    font-size: .95rem;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.story-text strong {
    color: var(--ink);
    font-weight: 800;
}

/* Bullet list */
.story-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.25rem;
}

.story-bullets li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .9rem;
    color: var(--ink-soft);
}

.story-bullets li::before {
    content: '\f267';
    font-family: 'remixicon';
    color: var(--gold);
    font-size: .9rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

/* ══════════════════════════════════════════════
   STATS / COUNTERS
══════════════════════════════════════════════ */
.stats-section {
    background: var(--ink);
    padding: 3.5rem 0;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5px;
    background: rgba(237, 212, 131, .12);
    border: 1.5px solid rgba(237, 212, 131, .12);
    border-radius: var(--r);
    overflow: hidden;
}

@media(min-width:640px) {
    .stats-inner {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: var(--ink);
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .4s var(--ease);
}

.stat-card:hover::after {
    width: 60%;
}

.stat-num {
    font-family: var(--ff-disp);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--gold-sheen);
    line-height: 1;
    display: block;
    margin-bottom: .4rem;
}

.stat-icon {
    font-size: 1.5rem;
    color: rgba(237, 212, 131, .35);
    display: block;
    margin-bottom: .6rem;
}

.stat-label {
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* ══════════════════════════════════════════════
   PROMISE / QUALITY CARDS
══════════════════════════════════════════════ */
.promise-section {
    padding: 4rem 0;
    background: var(--white);
}

.promise-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--px);
}

.promise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media(min-width:640px) {
    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width:992px) {
    .promise-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.promise-card {
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 1.75rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s;
}

.promise-card:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, .08);
    transform: translateY(-4px);
    border-color: var(--gold);
}

.promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}

.promise-card:hover::before {
    transform: scaleX(1);
}

.promise-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold-pale);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold-h);
    margin-bottom: 1.1rem;
    transition: all .3s var(--ease);
}

.promise-card:hover .promise-icon {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.promise-title {
    font-family: var(--ff-disp);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .5rem;
    line-height: 1.25;
}

.promise-text {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.8;
}

/* ══════════════════════════════════════════════
   CERTIFICATES / TRUST ROW
══════════════════════════════════════════════ */
.trust-row-section {
    background: var(--white);
    border-bottom: var(--border-w) solid var(--ink);
    padding: 2rem var(--px);
}

.trust-row-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem 2.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .82rem;
    font-weight: 800;
    color: var(--ink);
    text-transform: uppercase;
}

.trust-badge i {
    font-size: 1.35rem;
    color: var(--gold);
}

.trust-divider {
    width: 2px;
    height: 28px;
    background: var(--ink);
    display: none;
}

@media(min-width:640px) {
    .trust-divider {
        display: block;
    }
}

/* ══════════════════════════════════════════════
   TIMELINE
══════════════════════════════════════════════ */
.timeline-section {
    padding: 4rem 0;
    background: var(--white);
}

.timeline-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 var(--px);
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: .55rem;
    width: 4px;
    background: var(--ink);
}

.tl-item {
    position: relative;
    padding: 0 0 2rem 1.5rem;
}

.tl-item:last-child {
    padding-bottom: 0;
}

.tl-dot {
    position: absolute;
    left: -1.45rem;
    top: .3rem;
    width: 20px;
    height: 20px;
    border-radius: 0;
    background: var(--gold);
    border: var(--border-w) solid var(--ink);
    box-shadow: 2px 2px 0px var(--ink);
}

.tl-year {
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: .25rem;
    display: block;
    background: var(--gold);
    display: inline-block;
    padding: 0.1rem 0.4rem;
    border: var(--border-w) solid var(--ink);
}

.tl-title {
    font-family: var(--ff-disp);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: .3rem;
    margin-top: 0.5rem;
}

.tl-text {
    font-size: .88rem;
    color: var(--ink);
    line-height: 1.75;
    font-weight: 500;
}

/* ══════════════════════════════════════════════
   CTA
══════════════════════════════════════════════ */
.cta-section {
    background: var(--white);
    padding: 4rem var(--px) 4.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: var(--border-w) solid var(--ink);
}

.cta-section h2 {
    font-family: var(--ff-disp);
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: .75rem;
    position: relative;
    text-transform: uppercase;
}

.cta-section h2 em {
    font-style: normal;
    color: var(--cream);
    background: var(--gold);
    padding: 0 0.5rem;
}

.cta-section p {
    font-size: 1rem;
    color: var(--ink);
    font-weight: 500;
    margin-bottom: 2rem;
    position: relative;
}

.cta-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .85rem;
    position: relative;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    min-height: var(--tap);
    padding: 0 2rem;
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
    border-radius: var(--r);
    font-family: var(--ff-body);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: all .25s var(--ease);
    -webkit-tap-highlight-color: transparent;
}

.btn-cta-primary:hover {
    background: var(--gold-h);
    border-color: var(--gold-h);
    color: var(--white);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    min-height: var(--tap);
    padding: 0 2rem;
    background: transparent;
    color: var(--gold-pale);
    border: 2px solid rgba(var(--border) .4);
    border-radius: var(--r);
    font-family: var(--ff-body);
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: all .25s var(--ease);
    -webkit-tap-highlight-color: transparent;
}

.btn-cta-outline:hover {
    background: rgba(237, 212, 131, .1);
    border-color: var(--gold-sheen);
    color: var(--white);
}

/* ══════════════════════════════════════════════
   SCROLL REVEAL UTILITY
══════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}


/* --- Extracted from contact.php --- */

/* ══════════════════════════════════════════════
   TOKENS
══════════════════════════════════════════════ */
:root {
    --gold: #0D362B;
    --gold-h: #7A5520;
    --gold-lt: #C9941F;
    --gold-pale: #F5E9CC;
    --gold-sheen: #EDD483;
    --cream: #FDFAF3;
    --cream-2: #F4EDDA;
    --ink: #16110A;
    --ink-soft: #3A3020;
    --muted: #6B5D42;
    --border: #DDD0AD;
    --white: #FFFFFF;
    --green: #15803D;
    --red: #B91C1C;
    --focus: #005FCC;

    --ff-disp: 'Cormorant Garamond', Georgia, serif;
    --ff-body: 'Outfit', sans-serif;
    --tap: 52px;
    --r: 10px;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --px: 1rem;
    --section-py: 3.5rem;
}

@media(min-width:576px) {
    :root {
        --px: 1.5rem;
    }
}

@media(min-width:992px) {
    :root {
        --px: 3vw;
        --section-py: 5rem;
    }
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

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

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

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
    border-radius: 3px;
}

/* ── BREADCRUMB ── */
.bc-bar {
    background: var(--cream-2);
    border-bottom: 1px solid var(--border);
    padding: .65rem var(--px);
    font-size: .78rem;
    color: var(--muted);
}

.bc-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .25rem;
}

.bc-bar a {
    color: var(--muted);
    transition: color .2s;
}

.bc-bar a:hover {
    color: var(--gold);
}

.bc-sep {
    opacity: .45;
}

/* ══════════════════════════════════════════════
   HERO STRIP
══════════════════════════════════════════════ */
.contact-hero {
    background: var(--ink);
    padding: 3rem var(--px) 2.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 110%, rgba(154, 111, 42, .35) 0%, transparent 70%);
    pointer-events: none;
}

.contact-hero-eyebrow {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-sheen);
    margin-bottom: .65rem;
}

.contact-hero h1 {
    font-family: var(--ff-disp);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: .75rem;
}

.contact-hero h1 em {
    font-style: italic;
    color: var(--gold-sheen);
}

.contact-hero p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .7);
    max-width: 480px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════ */
.contact-section {
    padding: var(--section-py) 0;
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--px);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media(min-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr 420px;
        gap: 3rem;
    }
}

/* ══════════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════════ */
.form-box {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
}

.form-box-hd {
    background: var(--cream-2);
    border-bottom: 1px solid var(--border);
    padding: 1.1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--ff-disp);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ink);
}

.form-box-hd i {
    font-size: 1.3rem;
    color: var(--gold);
}

.form-body {
    padding: 1.5rem;
}

/* Field */
.field-group {
    margin-bottom: 1rem;
}

.field-label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: .38rem;
    letter-spacing: .03em;
}

.field-label .req {
    color: var(--gold);
    margin-left: 2px;
}

.field-input,
.field-textarea {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    background: var(--cream);
    font-family: var(--ff-body);
    font-size: .92rem;
    color: var(--ink);
    padding: .7rem 1rem;
    outline: none;
    transition: border-color .22s var(--ease), box-shadow .22s var(--ease), background .22s;
}

.field-input:focus,
.field-textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(154, 111, 42, .12);
}

.field-input.is-invalid,
.field-textarea.is-invalid {
    border-color: var(--red);
    background: #FEF2F2;
}

.field-textarea {
    resize: vertical;
    min-height: 110px;
}

.field-row-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media(min-width:480px) {
    .field-row-2 {
        grid-template-columns: 1fr 1fr;
        gap: 0 1rem;
    }
}

/* Char counter */
.char-counter {
    font-size: .68rem;
    color: var(--muted);
    text-align: right;
    margin-top: .2rem;
}

/* Error message */
.err-msg {
    font-size: .72rem;
    color: var(--red);
    margin-top: .28rem;
    display: flex;
    align-items: center;
    gap: .25rem;
    min-height: 1rem;
}

.luxury-btn {
    background: var(--ink) !important;
    color: var(--white) !important;
    transition: 0.5s !important;
    border: 2px solid var(--ink) !important;
    box-shadow: var(--shadow-solid);
}

.luxury-btn:hover {
    background: var(--gold) !important;
    color: var(--ink) !important;
    border: 2px solid var(--ink) !important;
    box-shadow: var(--shadow-solid-ink);
}

.err-msg i {
    font-size: .8rem;
}

/* Checkbox agree */
.agree-row {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    margin: 1rem 0;
    padding: .85rem 1rem;
    background: var(--cream-2);
    border: 1px solid var(--border);
    border-radius: var(--r);
}

.agree-check {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    accent-color: var(--gold);
    flex-shrink: 0;
    margin-top: .15rem;
    cursor: pointer;
}

.agree-text {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.55;
}

.agree-text a {
    color: var(--gold);
    font-weight: 600;
    border-bottom: 1px dashed var(--gold-pale);
}

/* Submit button */
.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    width: 100%;
    min-height: var(--tap);
    background: var(--ink);
    color: var(--white);
    border: 2px solid var(--ink);
    border-radius: var(--r);
    font-family: var(--ff-body);
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .25s var(--ease);
    -webkit-tap-highlight-color: transparent;
}

.btn-submit:not(:disabled):hover {
    background: var(--gold);
    border-color: var(--gold);
}

.btn-submit:disabled {
    background: var(--border);
    border-color: var(--border);
    color: var(--muted);
    cursor: not-allowed;
    opacity: .7;
}

.btn-submit .spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255, 255, 255, .35);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

.btn-submit.loading .spinner {
    display: block;
}

.btn-submit.loading .btn-label {
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Success state */
.form-success {
    display: none;
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.form-success.show {
    display: block;
}

.form-success .check-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #DCFCE7;
    border: 2px solid #86EFAC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--green);
    margin: 0 auto 1.1rem;
    animation: popIn .4s cubic-bezier(.17, .89, .32, 1.28) forwards;
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.form-success h3 {
    font-family: var(--ff-disp);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .5rem;
}

.form-success p {
    font-size: .9rem;
    color: var(--muted);
}

.btn-reset {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    margin-top: 1.25rem;
    height: 44px;
    padding: 0 1.5rem;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--ink-soft);
    border-radius: var(--r);
    font-family: var(--ff-body);
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
}

.btn-reset:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ══════════════════════════════════════════════
   INFO SIDEBAR
══════════════════════════════════════════════ */
.info-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Quick contact cards */
.info-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: box-shadow .2s, border-color .2s;
}

.info-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(154, 111, 42, .12);
}

.info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gold-pale);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold-h);
    transition: all .2s;
}

.info-card:hover .info-icon {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.info-content {}

.info-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: .3rem;
}

.info-value {
    font-size: .9rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

.info-value a {
    color: var(--ink-soft);
    transition: color .2s;
}

.info-value a:hover {
    color: var(--gold);
}

/* Hours card */
.hours-card {
    background: var(--ink);
    border-radius: var(--r);
    padding: 1.25rem;
    color: var(--white);
}

.hours-hd {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--ff-disp);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.hours-hd i {
    color: var(--gold-sheen);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem;
    padding: .4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    color: rgba(255, 255, 255, .65);
}

.hours-time {
    font-weight: 600;
    color: var(--gold-sheen);
}

.hours-time.closed {
    color: rgba(255, 255, 255, .35);
}

/* Status badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .25rem .75rem;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 700;
    margin-top: .85rem;
}

.status-open {
    background: rgba(21, 128, 61, .2);
    color: #86EFAC;
}

.status-closed {
    background: rgba(185, 28, 28, .2);
    color: #FCA5A5;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50;
}

.status-dot.green {
    background: #4ADE80;
    box-shadow: 0 0 6px #4ADE80;
}

.status-dot.red {
    background: #F87171;
}

/* WhatsApp CTA */
.wa-card {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: var(--r);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
    -webkit-tap-highlight-color: transparent;
}

.wa-card:hover {
    opacity: .92;
    transform: translateY(-2px);
}

.wa-icon {
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
}

.wa-text {}

.wa-text strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .15rem;
}

.wa-text span {
    font-size: .8rem;
    color: rgba(255, 255, 255, .8);
}

/* ══════════════════════════════════════════════
   MAP
══════════════════════════════════════════════ */
.map-section {
    background: var(--cream-2);
    border-top: 1.5px solid var(--border);
}

.map-section iframe {
    width: 100%;
    height: 280px;
    border: none;
    display: block;
}

@media(min-width:768px) {
    .map-section iframe {
        height: 380px;
    }
}

.map-overlay-bar {
    background: var(--ink);
    padding: .85rem var(--px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem;
}

.map-overlay-bar p {
    font-size: .82rem;
    color: rgba(255, 255, 255, .7);
}

.map-overlay-bar a {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .4rem 1rem;
    background: var(--gold);
    color: var(--white);
    border-radius: 6px;
    font-size: .78rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background .2s;
}

.map-overlay-bar a:hover {
    background: var(--gold-h);
}


/* --- Extracted from login.php --- */

.cursor-pointer {
    cursor: pointer;
}

.input-group-text {
    color: #6c757d;
}

.form-control:focus {
    box-shadow: none;
    border-color: #000;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}


/* --- Extracted from register.php --- */

.cursor-pointer {
    cursor: pointer;
}

.input-group-text {
    color: #6c757d;
}


/* --- Extracted from profile-order.php --- */

/* --- Refined Table Styles --- */
.order-table thead th {
    background-color: #f8f8f8;
    color: #555;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    padding: 15px;
    border: none;
}

.order-table tbody td {
    vertical-align: middle;
    padding: 20px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #333;
}

.order-table tbody tr:hover {
    background-color: #fafafa;
}

/* --- Refined Badges --- */
.badge {
    padding: 6px 14px;
    border-radius: 50px;
    /* Pill shape */
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-pending {
    background-color: #fff8e1;
    color: #f57c00;
}

.badge-processing {
    background-color: #e3f2fd;
    color: #1976d2;
}

.badge-shipped {
    background-color: #e0f2f1;
    color: #00897b;
}

.badge-delivered {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.badge-cancelled {
    background-color: #ffebee;
    color: #c62828;
}

/* --- View Button --- */
.btn-view {
    padding: 6px 18px;
    font-size: 13px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #555;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-view:hover {
    background-color: #333;
    border-color: #333;
    color: #fff;
    text-decoration: none;
}


/* --- Extracted from wishlist.php --- */

.wish-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #eee;
}

.stock-in {
    color: #28a745;
    font-weight: 600;
    font-size: 13px;
}

.stock-out {
    color: #dc3545;
    font-weight: 600;
    font-size: 13px;
}

.table th {
    font-weight: 600;
    color: #333;
}

.table td {
    vertical-align: middle;
}


/* ══════════════════════════════════════════════════
   GLOBAL LUXURY ENFORCEMENTS
══════════════════════════════════════════════════ */
h1,
h2,
h3,
h4,
h5,
h6,
.ff-disp {
    font-family: 'Cormorant Garamond', Georgia, serif !important;
}

body,
p,
span,
a,
div,
.ff-body {
    font-family: 'Outfit', sans-serif;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05) !important;
    border-radius: 12px !important;
}

.luxury-btn {
    background: linear-gradient(135deg, #0D362B 0%, #EDD483 50%, #0D362B 100%) !important;
    background-size: 200% auto !important;
    color: #fff !important;
    transition: 0.5s !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(154, 111, 42, 0.4) !important;
}

.luxury-btn:hover {
    background-position: right center !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* ══════════════════════════════════════════════════
   ANIMATIONS & HOVER EFFECTS
══════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hover-scale {
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.hover-scale:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cat-circle-wrap {
    transition: all 0.4s var(--ease);
    border: 1px solid rgba(13, 54, 43, 0.1);
}

.cat-circle-wrap:hover {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.15);
}

/* ══════════════════════════════════════════════════
   COLLECTION PAGE OVERHAULS
══════════════════════════════════════════════════ */
/* Checkboxes */
.cust-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.cust-check {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--ink);
    transition: color 0.3s ease;
}

.cust-check::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid rgba(13, 54, 43, 0.3);
    border-radius: 4px;
    background: var(--white);
    transition: all 0.3s ease;
}

.cust-checkbox:checked~.cust-check {
    color: var(--gold);
    font-weight: 600;
}

.cust-checkbox:checked~.cust-check::before {
    background: var(--gold);
    border-color: var(--gold);
}

.cust-checkbox:checked~.cust-check::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: solid var(--ink);
    border-width: 0 2px 2px 0;
}

/* Range Sliders */
.range-input input {
    -webkit-appearance: none;
    pointer-events: none;
    z-index: 2;
}

.range-input input::-webkit-slider-thumb {
    -webkit-appearance: none;
    pointer-events: auto;
    width: 18px;
    height: 18px;
    background: var(--gold);
    border: 2px solid var(--white);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.range-input input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.range-selected {
    background: var(--gold) !important;
}

/* Sort Select */
.sort-select {
    appearance: none;
    background: var(--white) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16' height='16'%3E%3Cpath fill='%230D362B' d='M12 16L6 10H18L12 16Z'/%3E%3C/svg%3E") no-repeat right 10px center;
    border: 1px solid rgba(13, 54, 43, 0.2);
    padding: 8px 36px 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s;
}

.sort-select:focus {
    border-color: var(--gold);
}

/* Filter Button */
.btn-filter-apply {
    background: var(--ink);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    width: 100%;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-filter-apply:hover {
    background: var(--gold);
    color: var(--ink);
}

/* =========================================
   ANTI-BRUTALISM RESET FOR COLLECTION PAGE
   ========================================= */
/* Kill solid drop shadows and heavy borders on product cards */
.product-card,
.single-product-wrap,
.single-product {
    border: 1px solid rgba(13, 54, 43, 0.1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
    border-radius: 8px !important;
}

.product-card:hover,
.product-card:focus-within,
.single-product-wrap:hover,
.single-product:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
    transform: translateY(-5px) !important;
    border-color: rgba(192, 154, 77, 0.5) !important;
    /* Gold hint */
}

/* Fix Sort Select and Dropdowns */
.sort-select,
.variant-select {
    border: 1px solid rgba(13, 54, 43, 0.15) !important;
    box-shadow: none !important;
    border-radius: 6px !important;
}

.sort-select:focus,
.variant-select:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1) !important;
}

/* Fix Buttons */
.luxury-btn,
.btn-view,
.add-to-cart {
    border: none !important;
    background: var(--ink) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

.luxury-btn:hover,
.btn-view:hover,
.add-to-cart:hover {
    background: var(--gold) !important;
    color: var(--ink) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-2px) !important;
}

/* Fix Wishlist Button */
.card-wish,
.wishlist-btn {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    border: none !important;
}

.card-wish:hover,
.wishlist-btn:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    transform: scale(1.1) !important;
    color: var(--danger) !important;
}

/* Fix Price Input Text Cut-off */
.price-field {
    border: 1px solid rgba(13, 54, 43, 0.2) !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02) !important;
    padding: 0 0.5rem !important;
}

.price-field input {
    width: 100% !important;
    min-width: 45px !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
}