:root {
    --ink: #11100e;
    --charcoal: #2a2723;
    --ivory: #fbf7ef;
    --cream: #f4eadb;
    --beige: #d9c4a1;
    --gold: #b8924b;
    --blush: #f3e0dc;
    --olive: #6d7350;
    --line: rgba(17, 16, 14, .12);
    --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    --sans: "Poppins", "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html, body {
    max-width: 100%;
    overflow-x: hidden;
}
body {
    margin: 0;
    color: var(--ink);
    background: var(--ivory);
    font-family: var(--sans);
    letter-spacing: .01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, .navbar-brand { font-family: var(--serif); letter-spacing: -.03em; }
.eyebrow {
    color: var(--gold);
    font-size: .78rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 700;
}

.lux-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: rgba(251, 247, 239, .74);
    backdrop-filter: blur(10px);
    transition: opacity .6s ease, visibility .6s ease;
}
.lux-loader img { width: min(190px, 42vw); animation: breathe 1.6s ease-in-out infinite; }
.lux-loader.is-hidden { opacity: 0; visibility: hidden; }
@keyframes breathe { 0%, 100% { transform: scale(.98); opacity: .72; } 50% { transform: scale(1); opacity: 1; } }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(251, 247, 239, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.topline {
    text-align: center;
    padding: .42rem 1rem;
    color: var(--ivory);
    background: var(--ink);
    font-size: .76rem;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.navbar-brand img { width: clamp(150px, 20vw, 245px); }
.navbar .nav-link, .nav-icon { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; }
.cart-pill {
    border: 1px solid var(--ink);
    border-radius: 999px;
    padding: .48rem .9rem;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.hero { min-height: 62vh; background: linear-gradient(135deg, var(--ivory), var(--cream)); }
.hero .carousel-item { height: 72vh; min-height: 520px; position: relative; }
.hero .carousel-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.1)); }
.hero .carousel-item img { width: 100%; height: 100%; object-fit: cover; }
.hero-copy {
    position: absolute;
    z-index: 2;
    left: clamp(1.4rem, 8vw, 7rem);
    bottom: clamp(2rem, 12vw, 7rem);
    color: white;
    max-width: 580px;
}
.hero-copy h1, .hero-minimal h1 { font-size: clamp(2.7rem, 7vw, 6.5rem); line-height: .9; }
.hero-minimal {
    min-height: 68vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 6rem 1rem;
    background:
        radial-gradient(circle at 15% 20%, rgba(184,146,75,.18), transparent 28%),
        radial-gradient(circle at 85% 25%, rgba(109,115,80,.14), transparent 24%),
        linear-gradient(135deg, var(--ivory), #fff);
}
.hero-minimal img { width: min(330px, 70vw); margin-bottom: 2rem; }
.section-pad { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.category-section {
    padding: clamp(2rem, 4vw, 3.2rem) 0 clamp(2.6rem, 5vw, 4rem);
}
.section-heading { margin-bottom: 2rem; }
.section-heading h2 { font-size: clamp(2.1rem, 4vw, 4rem); }
.category-heading {
    text-align: center;
    margin-bottom: clamp(1.4rem, 3vw, 2.25rem);
}
.category-heading h2 {
    color: #050505;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.4vw, 2.85rem);
    font-weight: 700;
    letter-spacing: -.02em;
    text-transform: uppercase;
}
.page-hero.compact {
    padding: clamp(3rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, var(--cream), var(--ivory));
}
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 5.2rem); }

.category-grid, .product-grid {
    display: grid;
    gap: 1.3rem;
}
.category-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.product-grid {
    grid-template-columns: repeat(auto-fill, minmax(210px, 260px));
    justify-content: center;
    align-items: start;
}
.category-tile, .product-card, .summary-card, .checkout-card, .auth-card, .newsletter-card {
    background: rgba(255,255,255,.72);
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(17,16,14,.06);
}
.category-tile { position: relative; min-height: 240px; display: grid; place-items: end start; padding: 1.2rem; }
.category-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.category-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent, rgba(0,0,0,.52)); }
.category-tile span { color: white; position: relative; z-index: 2; font-family: var(--serif); font-size: 1.8rem; }

.product-card { width: 100%; max-width: 260px; justify-self: center; transition: transform .3s ease, box-shadow .3s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(17,16,14,.08); }
.product-image { display: block; aspect-ratio: 3 / 4; background: var(--cream); overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.product-card:hover .product-image img { transform: scale(1.04); }
.product-card-body { padding: 1rem; }
.product-card h3 { font-size: 1.35rem; min-height: 2.9rem; }
.price-line { display: flex; align-items: center; gap: .7rem; margin: .8rem 0; }
.price-line del, .detail-price del { color: #8e8274; font-size: .9rem; }

.editorial-strip { padding: 5rem 0; background: var(--ink); color: var(--ivory); }
.editorial-card { position: relative; display: block; min-height: 420px; border-radius: 30px; overflow: hidden; }
.editorial-card img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; opacity: .78; }
.editorial-card div { position: absolute; left: 2rem; bottom: 2rem; }
.editorial-card h2 { font-size: 3rem; }
.blush { background: var(--blush); }
.testimonial { background: white; border-radius: 26px; padding: 2rem; min-height: 220px; font-family: var(--serif); font-size: 1.5rem; }
.testimonial cite { display: block; margin-top: 1rem; font-family: var(--sans); font-size: .9rem; color: var(--gold); }
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: .8rem;
}
.instagram-grid a { aspect-ratio: 1; border-radius: 24px; overflow: hidden; background: var(--cream); }
.instagram-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.instagram-grid a:hover img { transform: scale(1.06); }

.newsletter { padding: 5rem 0; }
.newsletter-card { text-align: center; padding: clamp(2rem, 7vw, 5rem); background: linear-gradient(135deg, #fff, var(--cream)); }
.newsletter-form { display: flex; max-width: 560px; margin: 1.5rem auto 0; border: 1px solid var(--ink); border-radius: 999px; overflow: hidden; background: white; }
.newsletter-form input { border: 0; flex: 1; padding: 1rem 1.4rem; outline: 0; }
.newsletter-form button { border: 0; background: var(--ink); color: white; padding: 0 1.6rem; }

.filter-bar, .search-page-form, .coupon-form { display: grid; grid-template-columns: repeat(5, minmax(120px, 1fr)); gap: .8rem; }
.search-page-form { grid-template-columns: 1fr auto; }
.cart-row, .order-card, .dashboard-links a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
}
.cart-row img { width: 92px; height: 120px; object-fit: cover; border-radius: 16px; }
.qty { max-width: 90px; }
.cart-remove-link {
    border: 0;
    padding: 0;
    background: transparent;
    color: #9a4b3f;
    font-size: .82rem;
    text-decoration: underline;
}
.summary-card, .checkout-card { padding: 1.4rem; }
.summary-card h2, .checkout-card h2 { font-size: 1.7rem; }
.summary-card div { display: flex; justify-content: space-between; padding: .65rem 0; border-bottom: 1px solid var(--line); }
.summary-card .total { font-size: 1.25rem; border-bottom: 0; }
.payment-choice { display: block; padding: 1rem; border: 1px solid var(--line); border-radius: 18px; margin-top: .8rem; }

.product-gallery { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
.product-gallery img:first-child { grid-column: 1 / -1; }
.product-gallery img { width: 100%; border-radius: 28px; aspect-ratio: 3 / 4; object-fit: cover; background: var(--cream); }
.detail-price { font-size: 1.7rem; margin: 1rem 0; }
.whatsapp-link { color: var(--olive); font-weight: 700; }
.product-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    align-items: center;
}
.product-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .85rem;
    margin: 1rem 0 1.4rem;
}
.product-trust-grid article {
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,.78);
    box-shadow: 0 14px 36px rgba(17,16,14,.05);
}
.product-trust-grid strong {
    display: block;
    font-family: var(--serif);
    font-size: 1.12rem;
}
.product-trust-grid span {
    display: block;
    margin-top: .25rem;
    color: #6f665d;
    font-size: .82rem;
    line-height: 1.45;
}
.auth-section { min-height: 70vh; display: grid; place-items: center; padding: 4rem 1rem; }
.auth-card, .setup-card { max-width: 520px; width: 100%; padding: 2rem; margin: auto; }
.setup-shell { background: radial-gradient(circle at 20% 20%, rgba(184,146,75,.17), transparent 30%), var(--ivory); }
.setup-logo { width: min(260px, 75vw); margin: 0 auto 1.4rem; }
.requirement { border: 1px solid var(--line); border-radius: 16px; padding: .8rem; font-size: .9rem; }
.requirement.ok { background: #eef8ed; }
.requirement.bad { background: #fff0ee; }
.empty-state { border: 1px dashed var(--line); border-radius: 28px; padding: 3rem; text-align: center; color: #766d63; background: rgba(255,255,255,.62); }
.narrow-content { max-width: 840px; }
.tracking-json { background: #111; color: #f5f5f5; border-radius: 18px; padding: 1rem; margin-top: 1rem; white-space: pre-wrap; }
.map-frame { width: 100%; min-height: 300px; border: 0; border-radius: 24px; filter: grayscale(.25); }

.site-footer { background: var(--ink); color: var(--ivory); padding: 5rem 0; }
.footer-logo { width: min(260px, 70vw); filter: drop-shadow(0 8px 20px rgba(255,255,255,.05)); }
.site-footer h3 { color: var(--beige); font-size: 1.1rem; text-transform: uppercase; letter-spacing: .16em; font-family: var(--sans); }
.footer-link { display: block; color: rgba(255,255,255,.78); margin: .45rem 0; }
.whatsapp-float {
    position: fixed;
    right: clamp(.75rem, 2vw, 1.15rem);
    bottom: clamp(.75rem, 2vw, 1.15rem);
    border-radius: 999px;
    z-index: 1600;
    width: 52px !important;
    height: 52px !important;
    max-width: 52px !important;
    max-height: 52px !important;
    display: grid !important;
    place-items: center;
    padding: 0 !important;
    background: transparent !important;
    border: 0;
    animation: whatsappFloat 2.8s ease-in-out infinite;
    overflow: hidden;
    line-height: 0;
}
.whatsapp-float img {
    display: block !important;
    width: 52px !important;
    height: 52px !important;
    max-width: 52px !important;
    max-height: 52px !important;
    object-fit: contain;
    filter: drop-shadow(0 16px 28px rgba(0,0,0,.22));
}
@keyframes whatsappFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.error-page { display: grid; min-height: 100vh; place-items: center; background: var(--ivory); }
.error-logo { width: min(260px, 70vw); margin-inline: auto; }

.search-trigger {
    border: 0;
    background: transparent;
    color: inherit;
    padding: 0;
}

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: start center;
    padding: clamp(1rem, 4vw, 3rem);
    background: rgba(17, 16, 14, .58);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s ease, visibility .28s ease;
}

.search-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.search-panel {
    position: relative;
    width: min(760px, 100%);
    margin-top: 8vh;
    padding: clamp(1.25rem, 4vw, 2.5rem);
    border-radius: 32px;
    background: var(--ivory);
    box-shadow: 0 35px 120px rgba(0,0,0,.28);
    transform: translateY(-18px);
    transition: transform .28s ease;
}

.search-overlay.is-open .search-panel { transform: translateY(0); }
.search-panel h2 { font-size: clamp(2rem, 5vw, 4rem); }
.search-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    font-size: 1.6rem;
    line-height: 1;
}
.search-input {
    width: 100%;
    border: 1px solid var(--ink);
    border-radius: 999px;
    padding: 1rem 1.25rem;
    background: white;
    outline: none;
}
.search-results {
    display: grid;
    gap: .75rem;
    margin-top: 1rem;
    max-height: 55vh;
    overflow-y: auto;
}
.search-result {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: .9rem;
    align-items: center;
    padding: .7rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,.72);
}
.search-result img {
    width: 70px;
    height: 86px;
    object-fit: cover;
    border-radius: 14px;
    background: var(--cream);
}
.search-result strong { display: block; font-family: var(--serif); font-size: 1.2rem; }
.search-empty { padding: 1rem; color: #786f66; }

.category-circle-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: clamp(1rem, 2.4vw, 1.8rem);
    overflow: hidden;
    padding: .45rem .1rem 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.category-circle {
    flex: 0 0 clamp(92px, 9vw, 118px);
    display: grid;
    gap: .7rem;
    justify-items: center;
    text-align: center;
    scroll-snap-align: start;
    font-family: var(--serif);
    font-size: clamp(.92rem, 1.25vw, 1.08rem);
    line-height: 1.2;
}
.category-circle-image {
    width: clamp(84px, 8vw, 106px);
    aspect-ratio: 1;
    display: block;
    overflow: hidden;
    border-radius: 999px;
    border: 1px solid rgba(184,146,75,.42);
    background: linear-gradient(135deg, #fff, var(--cream));
    box-shadow: 0 18px 45px rgba(17,16,14,.08);
    transition: transform .35s ease, box-shadow .35s ease;
    animation: categoryFloatIn .7s ease both;
}
.category-circle:hover .category-circle-image {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 24px 65px rgba(17,16,14,.12);
}
.category-circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@keyframes categoryFloatIn {
    from { opacity: 0; transform: translateY(18px) scale(.94); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.full-hero-slider .carousel-item {
    height: calc(100svh - 112px);
    min-height: 620px;
}
.hero-static {
    position: relative;
    height: clamp(520px, 72svh, 760px);
    min-height: 520px;
    overflow: hidden;
}
.hero-static::after {
    display: none;
}
.hero-static picture,
.hero-static img {
    width: 100%;
    height: 100%;
    display: block;
}
.hero-static img {
    object-fit: cover;
}
.section-media-banner {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    margin-bottom: 1.75rem;
    background: var(--cream);
    box-shadow: 0 26px 70px rgba(17,16,14,.08);
}
.section-media-banner img,
.section-media-banner video {
    width: 100%;
    height: clamp(340px, 52vw, 600px);
    min-height: 340px;
    object-fit: cover;
    display: block;
}

.compact-products.product-grid {
    grid-template-columns: none;
    gap: 1.65rem;
}
.product-carousel-shell {
    position: relative;
}
.product-rail {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: .2rem .2rem 1rem;
    justify-content: flex-start;
}
.product-rail .product-card {
    max-width: none;
    flex: 0 0 clamp(205px, 18vw, 285px);
    scroll-snap-align: start;
}
.compact-products .product-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
}
.compact-products .product-card-body {
    padding: .8rem .25rem 0;
}
.compact-products .product-card h3 {
    font-size: 1.06rem;
    line-height: 1.25;
    min-height: 2.6rem;
    margin-bottom: .25rem;
}
.compact-products .product-image {
    position: relative;
    border-radius: 0;
    box-shadow: none;
}
.listing-products.product-grid {
    grid-template-columns: repeat(auto-fill, minmax(210px, 260px));
    justify-content: center;
    align-items: start;
    gap: clamp(1.15rem, 2vw, 1.8rem);
}
.listing-products .product-card {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
}
.listing-products .product-card:hover {
    box-shadow: none;
    transform: translateY(-5px);
}
.listing-products .product-card-body {
    padding: .8rem .25rem 0;
}
.listing-products .product-card h3 {
    font-size: 1.06rem;
    line-height: 1.25;
    min-height: 2.6rem;
    margin-bottom: .25rem;
}
.listing-products .product-image {
    border-radius: 0;
    box-shadow: none;
}
.listing-products .price-line {
    justify-content: center;
    margin: .35rem 0 .55rem;
}
.product-badge,
.stock-badge {
    position: absolute;
    right: .65rem;
    z-index: 2;
    background: white;
    padding: .28rem .6rem;
    font-family: Georgia, serif;
    font-size: .76rem;
}
.product-badge { top: .65rem; }
.stock-badge { top: 2.55rem; }
.price-line {
    justify-content: center;
    margin: .25rem 0 .55rem;
    font-family: Georgia, serif;
}
.price-line em {
    color: #b4513d;
    font-style: normal;
}
.product-swatches {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .25rem;
    min-height: 34px;
    margin: .35rem 0 .5rem;
}
.product-swatches img {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    object-fit: cover;
    border: 1px solid rgba(17,16,14,.16);
}
.product-swatches small,
.rating-row small {
    font-family: Georgia, serif;
    font-size: .82rem;
}
.rating-row {
    display: flex;
    justify-content: center;
    gap: .35rem;
    align-items: center;
    font-family: Georgia, serif;
    font-size: .84rem;
}
.product-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .45rem;
    margin-top: .75rem;
}
.product-card-actions .btn {
    width: 100%;
    white-space: nowrap;
}
.rating-row span {
    letter-spacing: .03em;
}
.compact-products form {
    display: none;
}
.product-arrow,
.watch-arrow {
    border: 1px solid rgba(17,16,14,.35);
    background: white;
    color: var(--ink);
    border-radius: 999px;
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    font-size: 1.6rem;
    line-height: 1;
}
.product-arrow {
    position: absolute;
    top: 38%;
    z-index: 5;
}
.product-arrow[data-product-scroll="-1"] { left: -1.25rem; }
.product-arrow[data-product-scroll="1"] { right: -1.25rem; }

.watch-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    text-align: center;
}
.watch-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 3.2vw, 2.8rem);
}
.watch-shop-rail {
    display: flex;
    gap: 1.35rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: .5rem .25rem 1.5rem;
}

.watch-shop-card {
    position: relative;
    flex: 0 0 clamp(245px, 20vw, 315px);
    scroll-snap-align: start;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: white;
    box-shadow: 0 8px 22px rgba(17,16,14,.16);
}
.reel-frame {
    aspect-ratio: 9 / 14;
    background:
        url("../images/brand/monogram-transparent.png") center / 38% auto no-repeat,
        linear-gradient(135deg, rgba(251,247,239,.92), rgba(244,234,219,.82));
}
.reel-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.reel-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.attached-product { display: none; }
.view-pill {
    position: absolute;
    left: .65rem;
    top: .65rem;
    z-index: 3;
    border-radius: 6px;
    background: rgba(0,0,0,.62);
    color: white;
    padding: .16rem .45rem;
    font-family: Georgia, serif;
    font-size: .95rem;
}
.watch-product-overlay {
    position: absolute;
    left: .7rem;
    right: .7rem;
    bottom: .7rem;
    z-index: 3;
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: .75rem;
    align-items: end;
    color: white;
    text-shadow: 0 3px 14px rgba(0,0,0,.6);
}
.watch-product-overlay img {
    width: 52px;
    height: 70px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.5);
    box-shadow: 0 8px 20px rgba(0,0,0,.22);
}
.watch-product-overlay strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.24rem;
    line-height: 1.05;
}

.testimonial img {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    object-fit: cover;
    margin-bottom: 1rem;
}
.stars {
    color: var(--gold);
    letter-spacing: .08em;
    font-family: var(--sans);
    font-size: .95rem;
    margin-bottom: .75rem;
}
.review-list {
    display: grid;
    gap: 1rem;
}
.review-card,
.review-form {
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: 26px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 18px 48px rgba(17,16,14,.06);
}
.review-form h3 {
    font-family: var(--serif);
    font-size: 1.8rem;
}
.star-rating {
    display: inline-flex;
    flex-direction: row;
    gap: .2rem;
    padding: .45rem .6rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
}
.star-rating button {
    border: 0;
    background: transparent;
    color: #cfc4b1;
    font-size: 1.65rem;
    line-height: 1;
    padding: .1rem;
    transition: color .2s ease, transform .2s ease;
}
.star-rating button.is-active {
    color: var(--gold);
}
.star-rating button:hover {
    transform: translateY(-2px);
}
.review-thankyou {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(17,16,14,.54);
}
.review-thankyou > div {
    position: relative;
    width: min(460px, 100%);
    padding: clamp(1.5rem, 4vw, 2.4rem);
    border-radius: 30px;
    background: var(--ivory);
    box-shadow: 0 30px 110px rgba(0,0,0,.28);
    text-align: center;
}
.review-thankyou button {
    position: absolute;
    top: .85rem;
    right: .85rem;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    font-size: 1.35rem;
    line-height: 1;
}
.review-thankyou h3 {
    font-size: clamp(2rem, 5vw, 3rem);
}
.legal-content {
    font-size: 1.02rem;
    line-height: 1.85;
    white-space: pre-line;
}
.legal-content::first-line {
    font-family: var(--serif);
    font-size: 1.35rem;
}
.return-top {
    position: fixed;
    right: 1rem;
    bottom: 4.65rem;
    z-index: 1550;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(251,247,239,.94);
    color: var(--ink);
    padding: .55rem .8rem;
    box-shadow: 0 16px 40px rgba(17,16,14,.12);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
}
.return-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.product-showcase.float .section-media-banner {
    animation: mediaFloat 5s ease-in-out infinite;
}
.product-showcase.editorial .section-media-banner img,
.product-showcase.editorial .section-media-banner video {
    filter: saturate(.92) contrast(1.06);
}
@keyframes mediaFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 991px) {
    .filter-bar { grid-template-columns: 1fr 1fr; }
    .hero .carousel-item { min-height: 520px; }
    .navbar-brand { margin-right: 0 !important; }
}

@media (max-width: 640px) {
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .8rem; }
    .product-card h3 { font-size: 1.05rem; min-height: auto; }
    .filter-bar, .search-page-form, .newsletter-form { grid-template-columns: 1fr; display: grid; border-radius: 22px; }
    .newsletter-form button { padding: 1rem; }
    .cart-row { align-items: flex-start; flex-wrap: wrap; }
    .product-trust-grid { grid-template-columns: 1fr; }
    .product-action-row .btn { flex: 1 1 150px; }
    .hero-copy { left: 1.2rem; right: 1.2rem; }
    .hero-copy h1, .hero-minimal h1 { font-size: 2.7rem; }
}

/* Bombay-inspired ecommerce rhythm, adapted for Zdhoorkya identity. */
.service-strip {
    overflow: hidden;
    padding: .45rem 1rem;
    background: var(--ink);
    color: var(--ivory);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    white-space: nowrap;
}
.marquee-track {
    display: inline-flex;
    width: max-content;
    gap: 3rem;
    will-change: transform;
    animation: marqueeSlide 18s linear infinite;
}
.marquee-track span { white-space: nowrap; }
@keyframes marqueeSlide { from { transform: translate3d(0,0,0); } to { transform: translate3d(-25%,0,0); } }

.site-header .navbar {
    padding: .45rem 0;
    background: rgba(251, 247, 239, .96);
}

.site-header .container {
    position: relative;
}

.navbar-brand {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    z-index: 2;
}

.navbar-brand img {
    width: clamp(82px, 8vw, 118px);
    max-height: 56px;
    object-fit: contain;
}

.primary-menu {
    min-height: 56px;
    align-items: center;
    gap: .35rem;
    padding-right: 150px;
}

.primary-menu .nav-link {
    color: var(--ink);
    font-size: .76rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .85rem .55rem;
}

.primary-menu .nav-link:hover {
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-left: auto;
    min-height: 56px;
}

.header-actions .nav-icon {
    font-size: .73rem;
    letter-spacing: .1em;
}

.recommendation-bar {
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.78);
}

.recommendation-bar .container {
    display: flex;
    align-items: center;
    gap: .75rem;
    overflow-x: auto;
    padding-top: .55rem;
    padding-bottom: .55rem;
    scrollbar-width: none;
}

.recommendation-bar span {
    flex: 0 0 auto;
    color: var(--gold);
    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
}

.recommendation-bar a {
    flex: 0 0 auto;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .35rem .75rem;
    font-size: .78rem;
    background: var(--ivory);
}

.hero .carousel-item {
    height: min(78vh, 820px);
    min-height: 560px;
}

.hero picture,
.hero picture img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero picture img {
    object-fit: cover;
}

.fallback-hero-slider .carousel-item::after {
    display: none;
}

.hero-minimal {
    min-height: min(78vh, 820px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .65rem;
    background:
        linear-gradient(120deg, rgba(17,16,14,.08), rgba(255,255,255,.35)),
        radial-gradient(circle at 12% 26%, rgba(184,146,75,.24), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(109,115,80,.18), transparent 24%),
        linear-gradient(135deg, var(--ivory), var(--cream));
}

.hero-minimal img {
    width: min(104px, 30vw) !important;
    max-height: 104px;
    object-fit: contain;
}

.hero-minimal p:not(.eyebrow) {
    max-width: 560px;
    margin: 0 auto 1.4rem;
    color: #5c544b;
}

.category-tile:not(:has(img)) {
    min-height: 160px;
    place-items: center;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(184,146,75,.18), rgba(251,247,239,.92)),
        var(--cream);
}

.category-tile:not(:has(img))::after {
    display: none;
}

.category-tile:not(:has(img)) span {
    color: var(--ink);
}

.card-carousel .carousel-item {
    padding: .25rem;
}

.carousel-card-grid,
.watch-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

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

.look-card,
.watch-card {
    position: relative;
    display: block;
    border-radius: 26px;
    overflow: hidden;
    background: var(--cream);
    aspect-ratio: 3 / 4;
}

.watch-card {
    aspect-ratio: 9 / 14;
}

.look-card img,
.watch-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.look-card:hover img,
.watch-card:hover img {
    transform: scale(1.05);
}

.look-card span,
.watch-card span {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2;
    color: white;
    font-family: var(--serif);
    font-size: 1.45rem;
    text-shadow: 0 8px 22px rgba(0,0,0,.38);
}

.look-card::after,
.watch-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 45%, rgba(0,0,0,.58));
}

@media (max-width: 991px) {
    .site-header .navbar .container {
        display: grid;
        grid-template-columns: 44px 1fr auto;
        align-items: center;
        min-height: 58px;
    }

    .navbar-toggler {
        grid-column: 1;
        width: 42px;
        height: 42px;
        padding: .35rem;
        z-index: 4;
    }

    .navbar-brand {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        z-index: 3;
    }

    .navbar-brand img {
        width: 86px;
        max-height: 48px;
    }

    .header-actions {
        grid-column: 3;
        gap: .5rem;
        margin-left: auto;
        min-height: 42px;
        z-index: 4;
    }

    .header-actions .nav-icon[href*="login"] { display: none; }
    .header-actions .search-trigger { display: inline-grid; place-items: center; min-width: 44px; height: 38px; font-size: 0; }
    .header-actions .search-trigger::before { content: "Search"; font-size: .68rem; letter-spacing: .08em; }

    .primary-menu {
        grid-column: 1 / -1;
        padding-right: 0;
        align-items: flex-start;
        min-height: auto;
        padding-top: 1rem;
    }

    .hero .carousel-item,
    .hero-minimal {
        min-height: 610px;
        height: calc(100svh - 104px);
    }

    .hero-static {
        height: clamp(500px, 72svh, 680px);
        min-height: 500px;
    }

    .carousel-card-grid,
    .watch-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .primary-menu .nav-item:nth-child(n+6) {
        display: none;
    }
}

@media (max-width: 640px) {
    .service-strip {
        font-size: .66rem;
    }

    .cart-pill {
        padding: .38rem .65rem;
        font-size: .68rem;
    }

    .whatsapp-float,
    .whatsapp-float img {
        width: 46px !important;
        height: 46px !important;
        max-width: 46px !important;
        max-height: 46px !important;
    }

    .category-circle-row {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 1.05rem;
        margin-inline: -.75rem;
        padding-inline: .75rem;
    }

    .category-circle {
        flex-basis: 98px;
        font-size: .98rem;
    }

    .category-circle-image {
        width: 88px;
    }

    .recommendation-bar .container {
        padding-left: .75rem;
        padding-right: .75rem;
    }

    .hero .carousel-item,
    .hero-minimal {
        min-height: 640px;
        height: calc(100svh - 104px);
    }

    .hero-static,
    .section-media-banner img,
    .section-media-banner video {
        min-height: 430px;
        height: clamp(430px, 68svh, 620px);
    }

    .hero-copy {
        bottom: 3.2rem;
    }

    .carousel-card-grid,
    .watch-grid {
        display: flex;
        gap: .85rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: .4rem;
    }

    .look-card,
    .watch-card {
        flex: 0 0 78%;
        scroll-snap-align: start;
    }

    .watch-shop-grid {
        display: flex;
    }

    .watch-shop-card {
        flex-basis: 76%;
        scroll-snap-align: start;
    }

    .product-rail .product-card {
        flex-basis: 62%;
    }

    .product-arrow {
        display: none;
    }

    .search-result {
        grid-template-columns: 58px 1fr;
    }

    .search-result .price {
        grid-column: 2;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }
    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
    .marquee-track,
    .whatsapp-float,
    .category-circle-image {
        animation-duration: 18s !important;
        animation-iteration-count: infinite !important;
    }
}

/* Responsive polish layer for phones, iPads, tablets, and desktop hover devices. */
.menu-toggle {
    border: 0;
    background: transparent;
    width: 44px;
    height: 44px;
    display: none;
    place-items: center;
    gap: 4px;
    padding: 10px;
    box-shadow: none !important;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 99px;
    background: var(--ink);
    transition: transform .32s cubic-bezier(.2,.8,.2,1), opacity .22s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.section-heading h2,
.hero-copy h1,
.hero-minimal h1 {
    animation: titleLift .9s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes titleLift {
    from { opacity: 0; transform: translateY(26px); filter: blur(8px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes menuBloom {
    from { opacity: 0; transform: translateY(-12px) scale(.98); filter: blur(6px); }
    to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@media (max-width: 991px) {
    body.menu-open { overflow: hidden; }
    .menu-toggle { display: grid; }
    .site-header .navbar .container {
        display: grid;
        grid-template-columns: 44px 1fr auto;
        align-items: center;
        min-height: 60px;
    }
    .navbar-brand {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .navbar-brand img {
        width: clamp(84px, 13vw, 130px);
        max-height: 58px;
    }
    .header-actions {
        grid-column: 3;
        min-height: 42px;
        gap: .5rem;
        z-index: 4;
    }
    .header-actions .nav-icon[href*="login"] { display: none; }
    .navbar-collapse {
        position: fixed;
        top: calc(100% + 1px);
        left: .75rem;
        right: .75rem;
        max-height: calc(100svh - 122px);
        overflow-y: auto;
        border: 1px solid rgba(17,16,14,.12);
        border-radius: 28px;
        background: rgba(251,247,239,.98);
        box-shadow: 0 30px 90px rgba(17,16,14,.18);
        padding: .75rem;
        transform-origin: top center;
    }
    .navbar-collapse.collapsing,
    .navbar-collapse.show {
        animation: menuBloom .32s cubic-bezier(.2,.8,.2,1) both;
    }
    .primary-menu {
        padding: 0;
        min-height: auto;
        align-items: stretch;
        gap: .22rem;
    }
    .primary-menu .nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: .95rem 1rem;
        border-radius: 18px;
        background: rgba(255,255,255,.62);
        font-size: .86rem;
    }
    .primary-menu .nav-link::after {
        content: "→";
        opacity: .55;
    }
    .hero-static {
        height: clamp(520px, 72svh, 720px);
        min-height: 520px;
    }
    .section-media-banner img,
    .section-media-banner video {
        height: clamp(360px, 58vw, 560px);
        min-height: 360px;
    }
}

@media (min-width: 641px) and (max-width: 991px) {
    .category-circle-row {
        justify-content: flex-start;
        overflow-x: auto;
        padding-inline: 1rem;
        margin-inline: -1rem;
    }
    .product-rail .product-card {
        flex-basis: clamp(220px, 30vw, 285px);
    }
    .watch-shop-card {
        flex-basis: clamp(245px, 36vw, 315px);
    }
}

@media (min-width: 992px) and (max-width: 1180px) {
    .primary-menu {
        padding-right: 128px;
        gap: .1rem;
    }
    .primary-menu .nav-link {
        font-size: .68rem;
        padding-inline: .36rem;
    }
    .header-actions {
        gap: .55rem;
    }
    .navbar-brand img {
        width: 96px;
    }
}

@media (hover: hover) and (pointer: fine) {
    .btn,
    .cart-pill,
    .recommendation-bar a,
    .product-card-actions .btn {
        transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
    }
    .btn:hover,
    .cart-pill:hover,
    .recommendation-bar a:hover,
    .product-card-actions .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 36px rgba(17,16,14,.14);
    }
    .btn-dark:hover {
        background: var(--gold);
        border-color: var(--gold);
    }
}
