/* Nafume Artisan Luxe - Premium Custom Styles (css/style.css) */

/* ── Local Fonts ──────────────────────────────────────────────────── */
@font-face {
    font-family: 'Acumin Pro Wide Medium';
    src: url('../assets/fonts/fonnts.com-Acumin_Pro_Wide_Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stevie Sans';
    src: url('../assets/fonts/Stevie-Sans-Font/WOFF2/Stevie Sans Light.woff2') format('woff2'),
         url('../assets/fonts/Stevie-Sans-Font/TTF/Stevie Sans Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stevie Sans';
    src: url('../assets/fonts/Stevie-Sans-Font/WOFF2/Stevie Sans.woff2') format('woff2'),
         url('../assets/fonts/Stevie-Sans-Font/TTF/Stevie Sans.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stevie Sans';
    src: url('../assets/fonts/Stevie-Sans-Font/WOFF2/Stevie Sans Medium.woff2') format('woff2'),
         url('../assets/fonts/Stevie-Sans-Font/TTF/Stevie Sans Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stevie Sans';
    src: url('../assets/fonts/Stevie-Sans-Font/WOFF2/Stevie Sans Bold.woff2') format('woff2'),
         url('../assets/fonts/Stevie-Sans-Font/TTF/Stevie Sans Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stevie Sans';
    src: url('../assets/fonts/Stevie-Sans-Font/WOFF2/Stevie Sans Black.woff2') format('woff2'),
         url('../assets/fonts/Stevie-Sans-Font/TTF/Stevie Sans Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-surface-warm: #F9F5F0;
    --color-accent-bronze: #C5A059;
    --color-primary: #000000;
    --color-border-muted: #DEDEDE;
    --color-text-secondary: #666666;
    --font-heading: 'Acumin Pro Wide Medium', 'Arial Narrow', sans-serif;
    --font-body:    'Stevie Sans', Arial, sans-serif;
}

html { background-color: #0a0a0a; }
body {
    background-color: var(--color-surface-warm);
    color: var(--color-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-serif {
    font-family: var(--font-heading);
}

/* Global font assignment */
p, span, a, button, input, textarea, select,
label, li, small, td, th, caption,
.price, .product-price, .cart-text,
.shipping-form, .product-description {
    font-family: var(--font-body);
}

.logo, .brand-name, .section-title,
.product-name, .product-title, .page-title, .card-title {
    font-family: var(--font-heading);
}

/* Material Symbols Outlined Configuration */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    font-size: 24px;
    display: inline-block;
    vertical-align: middle;
}

.material-symbols-outlined.icon-fill {
    font-variation-settings: 'FILL' 1, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

/* Ambient Slow-Luxury Transitions */
.transition-slow {
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.transition-medium {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Hide scrollbars but preserve functionality */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Announcement Bar Marquee */
@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    animation: marquee 30s linear infinite;
}

.animate-marquee:hover {
    animation-play-state: paused;
}

/* Ken Burns Hero Effect */
@keyframes kenburns {
    0% { transform: scale(1.05); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1.05); }
}

.animate-kenburns {
    animation: kenburns 30s ease-in-out infinite;
}

/* Fade In Elements */
@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Olfactory Pyramid Decorative Line */
.scent-pyramid-line {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--color-border-muted), transparent);
    left: 50%;
    transform: translateX(-50%);
}

/* Focus Bottom Border Highlight */
.input-minimalist {
    background-color: transparent;
    border-bottom: 1px solid var(--color-border-muted);
    transition: border-color 0.3s ease;
}

.input-minimalist:focus {
    outline: none;
    border-color: var(--color-accent-bronze);
}

/* Custom Accordion Scent Drawers */
.accordion-content {
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease, padding 0.4s ease;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    opacity: 1;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

/* ─────────────────────────────────────────────────────────────
   FAQ SECTION (Homepage)
───────────────────────────────────────────────────────────── */
.nf-faq-section {
    background: var(--color-surface-warm);
    padding: 64px 24px 72px;
    border-top: 1px solid var(--color-border-muted);
}
.nf-faq-title {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 34px);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-style: italic;
    color: #000;
    text-align: center;
    margin: 0 0 52px;
}
.nf-faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.nf-faq-item {
    border-bottom: 1px solid var(--color-border-muted);
}
.nf-faq-item:first-child {
    border-top: 1px solid var(--color-border-muted);
}
.nf-faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: clamp(13px, 1.6vw, 15px);
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #000;
    transition: color 0.2s;
}
.nf-faq-trigger:hover { color: #555; }
.nf-faq-icon {
    font-size: 22px;
    color: #777;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.nf-faq-answer p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: #666;
    line-height: 1.85;
    margin: 0;
}
@media (max-width: 768px) {
    .nf-faq-section { padding: 48px 20px 56px; }
    .nf-faq-title { margin-bottom: 36px; font-size: clamp(18px, 5vw, 26px); }
    .nf-faq-trigger { padding: 18px 0; font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════════════════
   NAFUME UNIVERSAL HEADER  (nf-*)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Announcement Bar ── */
.nf-ann {
    background: #000;
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    font-size: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    user-select: none;
    padding: 9px 0;
    border-bottom: 1px solid #222;
}
.nf-ann-track {
    display: inline-block;
    animation: nfMarquee 30s linear infinite;
}
@keyframes nfMarquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Header Wrapper (sticky) ── */
.nf-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #F9F5F0;
}

/* ── Logo Row: 3-col grid ── */
.nf-logo-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 14px 32px;
    max-width: 1280px;
    margin: 0 auto;
    box-sizing: border-box;
}
.nf-header-left  { display: flex; align-items: center; gap: 4px; }
.nf-header-right { display: flex; align-items: center; gap: 4px; justify-content: flex-end; }

/* ── Logo ── */
.nf-logo {
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
    display: block;
    transition: opacity 0.2s;
}
.nf-logo:hover { opacity: 0.65; }

/* ── Icon Buttons (search / account / cart / hamburger) ── */
.nf-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: none;
    background: none;
    color: #000;
    cursor: pointer;
    position: relative;
    transition: opacity 0.2s;
    text-decoration: none;
    padding: 0;
    flex-shrink: 0;
}
.nf-icon-btn:hover { opacity: 0.5; }
.nf-icon-btn svg {
    width: 20px; height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}

/* ── Cart Count Badge ── */
.nf-cart-badge {
    position: absolute;
    top: 4px; right: 2px;
    background: #000;
    color: #fff;
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 800;
    min-width: 15px; height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 2px;
    box-sizing: border-box;
}
/* Tailwind .hidden = display:none !important — app.js manages visibility */

/* ── Nav Row ── */
.nf-nav-row {
    background: #ffffff;
    width: 100%;
    padding: 12px 24px;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.nf-nav-row::-webkit-scrollbar { display: none; }

.nf-nav-link {
    font-family: var(--font-body);
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #555;
    text-decoration: none;
    padding: 10px 13px;
    white-space: nowrap;
    transition: color 0.15s;
    position: relative;
}
.nf-nav-link:hover { color: #000; }
.nf-nav-link.nf-active { color: #000; }
.nf-nav-link.nf-active::after {
    content: '';
    position: absolute;
    bottom: 0; left: 13px; right: 13px;
    height: 1.5px;
    background: #000;
}

/* ── Responsive header icons ── */
.nf-hamburger-btn { display: none; }
.nf-search-btn    { display: inline-flex; }
.nf-account-btn   { display: inline-flex; }

@media (max-width: 767px) {
    .nf-logo-row      { padding: 11px 16px; }
    .nf-nav-row       { display: none; }
    .nf-hamburger-btn { display: inline-flex; }
    .nf-search-btn    { display: none; }
    .nf-account-btn   { display: none; }
}

/* ── Mobile Drawer ── */
/* Visual styling — transition managed by .drawer-container (app.js uses Tailwind -translate-x-full) */
.nf-mobile-drawer {
    position: fixed;
    inset-y: 0; left: 0;
    width: min(290px, 85vw);
    background: #F9F5F0;
    z-index: 200;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #DEDEDE;
}
.nf-drawer-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #DEDEDE;
    flex-shrink: 0;
}
.nf-drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 8px 20px 24px;
    flex: 1;
    overflow-y: auto;
}
.nf-drawer-link {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    padding: 13px 0;
    border-bottom: 1px solid #ececec;
    transition: color 0.15s;
    display: block;
}
.nf-drawer-link:last-child { border-bottom: none; }
.nf-drawer-link:hover { color: #666; }

/* Glassmorphism Navigation Overlay */
.header-scrolled {
    background-color: rgba(249, 245, 240, 0.85);
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(222, 222, 222, 0.5);
    height: 5rem !important; /* smooth height transition */
}

/* Custom Luxury Grid Card Hover */
.luxury-card img {
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Slide in Overlays */
.drawer-overlay {
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.drawer-container {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Quiz slide steps */
.quiz-step {
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.quiz-step.exit-left {
    opacity: 0;
    transform: translateX(-50px);
}

.quiz-step.enter-right {
    opacity: 0;
    transform: translateX(50px);
}

.quiz-step.active {
    opacity: 1;
    transform: translateX(0);
}

/* ─────────────────────────────────────────────────────────────
   HERO BANNER SLIDER
───────────────────────────────────────────────────────────── */
.hero-banner-slider {
    position: relative;
    width: 100%;
    height: clamp(400px, 65vh, 720px);
    overflow: hidden;
    background: #111;
}
@media (max-width: 767px) {
    .hero-banner-slider { height: clamp(320px, 56vw, 480px); }
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
}
.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.05) 100%);
}
@media (max-width: 767px) {
    .hero-slide-overlay {
        background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.7) 100%);
    }
}
.hero-slide-copy {
    position: absolute;
    left: clamp(24px, 6vw, 80px);
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    max-width: 420px;
}
@media (max-width: 767px) {
    .hero-slide-copy {
        left: 20px;
        right: 20px;
        bottom: 32px;
        top: auto;
        transform: none;
        max-width: none;
    }
}
.hero-slide-label {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C5A059;
    margin: 0 0 10px;
}
.hero-slide-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 52px);
    letter-spacing: 0.12em;
    margin: 0 0 8px;
    line-height: 1.1;
}
.hero-slide-sub {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 24px;
    font-weight: 300;
}
.hero-slide-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: #fff;
    color: #000;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.hero-slide-btn:hover {
    background: #C5A059;
    color: #fff;
}
.hero-slide-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
    z-index: 5;
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, transform 0.3s;
    flex-shrink: 0;
}
.hero-dot.active {
    background: #fff;
    transform: scale(1.25);
}

/* ── Promotional full-bleed banners (Father's Day campaign creatives) ──
   Banners are 2077×757 with copy baked in, so the slider matches their aspect
   ratio to show each edge-to-edge with NO crop or distortion (object-fit:cover
   over a matching ratio = full bleed, no cut). The per-product text overlay and
   gradient are not used for these slides; the whole banner is a clickable CTA.
   Slider timing, dots and behaviour are unchanged. */
.hero-banner-slider--promo {
    height: auto;
    aspect-ratio: 2077 / 757;
}
@media (max-width: 767px) {
    .hero-banner-slider--promo { height: auto; }
}
.hero-slide-link {
    display: block;
    width: 100%;
    height: 100%;
}
.hero-slide-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* Safety: ignore any stray legacy overlay/copy inside promo slides. */
.hero-banner-slider--promo .hero-slide-overlay,
.hero-banner-slider--promo .hero-slide-copy { display: none; }

/* ─────────────────────────────────────────────────────────────
   WATCH AND BUY SECTION
───────────────────────────────────────────────────────────── */
.watch-buy-section {
    padding: 56px 0 48px;
    background: #fff;
    border-bottom: 1px solid #DEDEDE;
    overflow: hidden;
}
.watch-buy-heading {
    text-align: center;
    font-family: var(--font-heading);
    font-size: clamp(20px, 2.4vw, 30px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 32px;
    color: #000;
}
.watch-buy-wrap {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 52px;
}
@media (max-width: 767px) {
    .watch-buy-wrap { padding: 0 40px; }
}
.watch-buy-carousel {
    display: flex;
    gap: 14px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
.watch-carousel-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #DEDEDE;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s, border-color 0.2s;
    flex-shrink: 0;
}
.watch-carousel-arrow:hover {
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
    border-color: #000;
}
.watch-carousel-arrow svg {
    stroke: #000;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.watch-carousel-arrow.left  { left: 4px; }
.watch-carousel-arrow.right { right: 4px; }
.watch-video-card {
    flex: 0 0 calc(20% - 12px);
    min-width: 150px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
@media (max-width: 1024px) {
    .watch-video-card { flex: 0 0 calc(25% - 11px); }
}
@media (max-width: 767px) {
    .watch-video-card { flex: 0 0 calc(45% - 7px); min-width: 130px; }
}
@media (max-width: 480px) {
    .watch-video-card { flex: 0 0 calc(62% - 7px); }
}
.watch-video {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    background: #111;
}
.watch-product-mini {
    padding: 10px 2px 4px;
    display: flex;
    gap: 9px;
    align-items: flex-start;
}
.watch-product-mini-thumb {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
    background: #f5f5f5;
}
.watch-product-mini-info { flex: 1; min-width: 0; }
.watch-product-name {
    font-family: var(--font-heading);
    font-size: 10.5px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 3px;
    color: #000;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.watch-price-row {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}
.watch-product-price {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: #000;
}
.watch-product-mrp {
    font-family: var(--font-body);
    font-size: 10px;
    text-decoration: line-through;
    color: #999;
}
.watch-product-badge {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 2px 6px;
    border-radius: 2px;
}

/* ─────────────────────────────────────────────────────────────
   LAUNCH CART — homepage integration
   (replaces need to load all of launch.css on index.html)
───────────────────────────────────────────────────────────── */
.lp-cart-badge         { display: none; }
.lp-cart-badge.visible { display: flex; }

.lp-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 250;
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lp-overlay.active { opacity: 1; visibility: visible; }

.lp-cart-drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 100%; max-width: 420px;
    background: #fff;
    z-index: 300;
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex; flex-direction: column;
    border-left: 1px solid #DEDEDE;
}
.lp-cart-drawer.open { transform: translateX(0); }

.cart-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #DEDEDE;
    flex-shrink: 0;
}
.cart-drawer-title {
    font-family: var(--font-heading);
    font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
}
.cart-drawer-count {
    font-family: var(--font-body);
    font-size: 11px; color: #888; margin-top: 2px;
}
.cart-close-btn {
    color: #888; padding: 4px;
    transition: color 0.2s; background: none; border: none; cursor: pointer;
}
.cart-close-btn:hover { color: #000; }

.cart-drawer-items {
    flex: 1; overflow-y: auto; padding: 16px 20px;
}
.cart-empty-state {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    height: 200px; text-align: center; gap: 10px;
}
.cart-empty-state .material-symbols-outlined { font-size: 44px; color: #ddd; }
.cart-empty-state p { font-size: 13px; font-weight: 600; color: #888; }
.cart-empty-sub { font-size: 12px; font-weight: 400; color: #bbb; margin-top: -4px; }
.cart-browse-link {
    font-family: var(--font-body);
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #000; text-decoration: underline;
    text-underline-offset: 3px; margin-top: 6px;
}
.cart-ship-bar-wrap {
    background: #f7f7f7; border: 1px solid #ebebeb;
    padding: 10px 12px; margin-bottom: 14px;
    font-family: var(--font-body); font-size: 11px;
}
.ship-bar { height: 3px; background: #e0e0e0; border-radius: 2px; overflow: hidden; margin-top: 6px; }
.ship-fill { height: 100%; background: #000; border-radius: 2px; transition: width 0.4s ease; }

.cart-item {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 14px 0; border-bottom: 1px solid #f0f0f0;
}
.cart-item:last-child { border-bottom: 0; }
.cart-item-img {
    width: 64px; height: 80px; flex-shrink: 0;
    object-fit: cover; background: #F7F5F2;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-family: var(--font-body); font-size: 12px; font-weight: 700; line-height: 1.3; }
.cart-item-sub  { font-size: 10px; color: #888; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 2px; }
.cart-qty-row   { display: flex; align-items: center; margin-top: 8px; }
.cq-btn {
    width: 28px; height: 28px;
    border: 1px solid #ddd; background: #fff;
    font-size: 15px; display: flex; align-items: center;
    justify-content: center; flex-shrink: 0;
    cursor: pointer; transition: border-color 0.15s;
}
.cq-btn:hover { border-color: #000; }
.cq-val {
    width: 34px; height: 28px;
    border-top: 1px solid #ddd; border-bottom: 1px solid #ddd;
    font-size: 12px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    background: #fff; flex-shrink: 0;
}
.cart-item-price-col {
    display: flex; flex-direction: column;
    align-items: flex-end; gap: 3px; flex-shrink: 0; margin-left: 6px;
}
.cart-item-total { font-family: var(--font-body); font-size: 13px; font-weight: 800; }
.cart-item-each  { font-size: 10px; color: #aaa; }
.cart-item-del   { color: #ccc; padding: 2px; margin-top: 4px; transition: color 0.2s; background: none; border: none; cursor: pointer; }
.cart-item-del:hover { color: #e44444; }

.cart-drawer-footer {
    border-top: 1px solid #DEDEDE; padding: 18px 20px; flex-shrink: 0;
}
.cart-totals  { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.cart-row     { display: flex; justify-content: space-between; font-size: 13px; }
.cart-row-total {
    display: flex; justify-content: space-between;
    padding-top: 10px; border-top: 1px solid #e5e5e5;
}
.cart-row-total span:first-child { font-size: 14px; font-weight: 700; }
.cart-row-total span:last-child  { font-size: 16px; font-weight: 900; }
.cart-muted  { color: #888; }
.cart-free   { color: #2D8C3E; font-weight: 700; }
.cart-gst-note { font-size: 10px; color: #aaa; margin-top: 4px; }
.btn-to-shipping {
    display: block; width: 100%; padding: 15px;
    background: #000; color: #fff; text-align: center;
    font-family: var(--font-body);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; transition: background 0.2s;
}
.btn-to-shipping:hover { background: #333; }
.btn-clear-cart {
    width: 100%; margin-top: 10px; padding: 6px; border: none;
    font-family: var(--font-body);
    font-size: 10px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #bbb; transition: color 0.2s; background: none; cursor: pointer;
}
.btn-clear-cart:hover { color: #e44444; }

.lp-toast {
    position: fixed; bottom: 24px; left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #111; color: #fff;
    padding: 9px 18px; font-size: 12px; font-weight: 600;
    z-index: 500; white-space: nowrap; opacity: 0;
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: none; font-family: var(--font-body);
}
.lp-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.lp-sticky-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 200; display: none; align-items: stretch; height: 56px;
    border-top: 1px solid #222;
}
.lp-sticky-bar.visible { display: flex; }
@media (min-width: 768px) { .lp-sticky-bar { display: none !important; } }
body.has-bar { padding-bottom: 0; }
@media (max-width: 767px) {
  body.has-bar .site-footer { padding-bottom: 88px; }
}
.sticky-info {
    background: #000; color: #fff; display: flex; flex-direction: column;
    justify-content: center; padding: 0 12px; min-width: 80px; flex-shrink: 0;
}
.sticky-count { font-size: 9px; font-weight: 500; opacity: 0.55; letter-spacing: 0.08em; text-transform: uppercase; }
.sticky-total { font-family: var(--font-body); font-size: 14px; font-weight: 800; }
.sticky-view-btn {
    flex: 1; background: #333; color: #fff; border: none;
    font-family: var(--font-body); font-size: 10px; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s;
}
.sticky-ship-btn {
    background: #000; color: #fff; border: none; padding: 0 14px;
    font-family: var(--font-body); font-size: 10px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase; flex-shrink: 0;
    display: flex; align-items: center; gap: 5px;
    text-decoration: none; transition: background 0.2s;
}
.sticky-ship-btn:hover { background: #222; color: #fff; }

/* ─────────────────────────────────────────────────────────────
   HOMEPAGE PRODUCT SECTIONS
───────────────────────────────────────────────────────────── */
.home-product-section {
    padding: 64px 24px 48px;
    background: #fff;
    border-top: 1px solid #EBEBEB;
}
@media (min-width: 768px) {
    .home-product-section { padding: 80px 48px 64px; }
}
.home-section-head { text-align: center; margin-bottom: 36px; }
.home-section-title {
    font-family: var(--font-heading);
    font-size: clamp(26px, 3.5vw, 44px);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 12px;
}
.home-section-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    color: #555;
    margin: 0 0 22px;
    font-weight: 300;
    font-style: italic;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.home-section-cta {
    display: inline-flex;
    align-items: center; justify-content: center;
    padding: 13px 40px;
    background: #000; color: #fff;
    font-family: var(--font-body);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.2em; text-transform: uppercase;
    text-decoration: none; transition: background 0.2s;
}
.home-section-cta:hover { background: #C5A059; color: #fff; }

.home-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1300px;
    margin: 0 auto;
}
@media (min-width: 600px) {
    .home-product-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (min-width: 900px) {
    .home-product-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
@media (min-width: 900px) {
    .home-product-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
}

.home-product-card {
    display: flex; flex-direction: column; text-align: center;
}
.home-product-image-wrap {
    display: block; position: relative;
    aspect-ratio: 4 / 5; overflow: hidden;
    background: #F7F7F7; text-decoration: none;
}
.home-product-image {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    transition: transform 0.5s ease; display: block;
}
.home-product-image-wrap:hover .home-product-image { transform: scale(1.04); }

.home-product-badge {
    position: absolute; top: 10px; left: 10px;
    background: #E8524A; color: #fff;
    font-family: var(--font-body);
    font-size: 8px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 20px; z-index: 2;
    white-space: nowrap;
}
.home-product-badge.badge-dark { background: #1a1a1a; }
.home-product-badge.badge-gold { background: #C5A059; }

.home-product-info {
    padding: 14px 4px 0; flex: 1;
    display: flex; flex-direction: column; align-items: center;
}
.home-product-title {
    font-family: var(--font-heading);
    font-size: clamp(12px, 1.1vw, 14px);
    letter-spacing: 0.1em; text-transform: uppercase; color: #000;
    margin: 0 0 4px; text-decoration: none;
    display: block;
}
a.home-product-title:hover { color: #C5A059; }
.home-product-family {
    font-family: var(--font-body);
    font-size: 11px; color: #777; margin: 0 0 8px; font-weight: 300;
}
.home-product-price {
    font-family: var(--font-body);
    font-size: 14px; font-weight: 700; color: #000; margin: 0 0 12px;
}
.home-product-mrp {
    font-size: 11px; font-weight: 400; color: #999;
    text-decoration: line-through; margin-left: 6px;
}
.home-add-cart-btn {
    width: 100%; height: 44px; margin-top: auto;
    border: 1px solid #000; background: #fff; color: #000;
    font-family: var(--font-body);
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s, color 0.2s;
}
.home-add-cart-btn:hover { background: #000; color: #fff; }

/* ─────────────────────────────────────────────────────────────
   TRUST MARQUEE
───────────────────────────────────────────────────────────── */
.trust-marquee-section {
    background: #fff;
    padding: 28px 0;
    border-top: 1px solid #EBEBEB;
    overflow: hidden;
}
.trust-marquee {
    overflow: hidden;
    cursor: default;
}
.trust-marquee-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: trust-scroll 34s linear infinite;
    will-change: transform;
}
.trust-marquee:hover .trust-marquee-track {
    animation-play-state: paused;
}
@keyframes trust-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.trust-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4px 48px;
    gap: 8px;
    flex-shrink: 0;
    border-right: 1px solid #DDDDDD;
}
.trust-icon {
    width: 44px;
    height: 44px;
    display: block;
    color: #111;
    flex-shrink: 0;
}
.trust-label {
    font-family: var(--font-heading);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #111;
    line-height: 1.45;
    white-space: normal;
    max-width: 88px;
    text-align: center;
}

/* ─────────────────────────────────────────────────────────────
   REVIEWS SECTION
───────────────────────────────────────────────────────────── */
.reviews-section {
    background: #fff;
    padding: 72px 48px 80px;
    border-top: 1px solid #EBEBEB;
}
.reviews-heading {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3.2vw, 40px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    color: #000;
    margin: 0 0 52px;
    font-weight: 400;
}
.reviews-heading strong {
    font-weight: 900;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: start;
}
@media (max-width: 900px) {
    .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
    .reviews-section { padding: 52px 28px 60px; }
}
@media (max-width: 560px) {
    .reviews-grid { grid-template-columns: 1fr; gap: 24px; }
    .reviews-section { padding: 44px 20px 52px; }
}
.review-card {
    display: flex;
    flex-direction: column;
}
.review-name {
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 0.05em;
    color: #000;
    margin: 0 0 5px;
}
.review-stars {
    color: #C5A059;
    font-size: 18px;
    letter-spacing: 2px;
    margin: 0 0 10px;
    line-height: 1;
}
.review-title {
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 0.04em;
    color: #000;
    margin: 0 0 10px;
}
.review-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: #555;
    line-height: 1.75;
    margin: 0 0 18px;
    font-weight: 300;
    flex: 1;
}
.review-divider {
    border: none;
    border-top: 1px solid #E8E8E8;
    margin: 0 0 14px;
}
.review-product {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}
.review-product-thumb {
    width: 42px;
    height: 52px;
    object-fit: cover;
    background: #F7F7F7;
    flex-shrink: 0;
}
.review-product-name {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: #222;
    letter-spacing: 0.03em;
}

/* ─────────────────────────────────────────────────────────────
   GLOBAL FOOTER CONTAINER + INSTAGRAM SECTION
───────────────────────────────────────────────────────────── */
#global-footer { background: #0a0a0a; display: block; }
.instagram-section {
    background: #fff;
    padding: 56px 0 48px;
    border-top: 1px solid #EBEBEB;
    text-align: center;
}
.instagram-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3.5vw, 44px);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 32px;
}
.instagram-strip-wrap {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 52px;
}
.instagram-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
}
@media (max-width: 900px) {
    .instagram-strip { grid-template-columns: repeat(3, 1fr); }
    .instagram-strip-wrap { padding: 0 40px; }
}
@media (max-width: 560px) {
    .instagram-strip {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .instagram-strip::-webkit-scrollbar { display: none; }
    .instagram-strip-wrap { padding: 0 36px; }
}
.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
    text-decoration: none;
    scroll-snap-align: start;
    flex-shrink: 0;
}
@media (max-width: 560px) { .instagram-item { width: 55vw; } }
.instagram-item img {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    transition: transform 0.4s ease; display: block;
}
.instagram-item:hover img { transform: scale(1.06); }
.instagram-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 36px; height: 36px; border-radius: 50%;
    background: #fff; border: 1px solid #ddd;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 10; padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.14);
    transition: background 0.2s, border-color 0.2s;
}
.instagram-arrow:hover { background: #000; border-color: #000; }
.instagram-arrow:hover svg { stroke: #fff; }
.instagram-arrow svg { stroke: #333; width: 16px; height: 16px; }
.instagram-arrow.left  { left: 6px; }
.instagram-arrow.right { right: 6px; }

/* ─────────────────────────────────────────────────────────────
   RETAIL LOGO MARQUEE
───────────────────────────────────────────────────────────── */
.retail-marquee-section {
    background: #fff;
    padding: 20px 0;
    border-top: 1px solid #EBEBEB;
    overflow: hidden;
}
.retail-marquee { overflow: hidden; cursor: default; }
.retail-marquee-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: retail-scroll 22s linear infinite;
    will-change: transform;
}
.retail-marquee:hover .retail-marquee-track { animation-play-state: paused; }
@keyframes retail-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.retail-logo {
    display: inline-flex;
    align-items: center;
    padding: 0 40px;
    border-right: 1px solid #E8E8E8;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.01em;
    white-space: nowrap;
    line-height: 44px;
    font-family: var(--font-body);
}
.retail-logo.serif   { font-family: Georgia, 'Times New Roman', serif; font-weight: 400; }
.retail-logo.italic  { font-style: italic; }
.retail-logo.light   { font-weight: 400; font-size: 16px; letter-spacing: 0.04em; }
.retail-logo.small   { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; }

/* ─────────────────────────────────────────────────────────────
   READ MORE BAR
───────────────────────────────────────────────────────────── */
.read-more-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 48px; cursor: pointer;
    border-top: 1px solid #E0E0E0;
    background: #fff; user-select: none;
    transition: background 0.2s;
}
.read-more-bar:hover { background: #FAFAFA; }
.read-more-bar-label {
    font-family: var(--font-body);
    font-size: 14px; font-weight: 500; color: #222;
}
.read-more-bar-icon {
    color: #555; transition: transform 0.3s ease;
    display: flex; align-items: center;
}
.read-more-bar.open .read-more-bar-icon { transform: rotate(180deg); }
.read-more-content {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
    background: #fff;
}
.read-more-content.open { padding: 0 48px 36px; }
.read-more-content { transition: max-height 0.5s ease; }
@media (max-width: 768px) {
    .read-more-bar { padding: 16px 20px; }
    .read-more-content.open { padding: 0 20px 28px; }
}
.read-more-inner { max-width: 860px; }
.read-more-heading {
    font-family: var(--font-heading);
    font-size: clamp(15px, 2vw, 20px);
    letter-spacing: 0.1em; text-transform: uppercase;
    color: #111; margin: 0 0 20px;
}
.read-more-subheading {
    font-family: var(--font-heading);
    font-size: 11px; letter-spacing: 0.12em;
    text-transform: uppercase; color: #333; margin: 28px 0 10px;
}
.read-more-inner p {
    font-family: var(--font-body);
    font-size: 14px; color: #555; line-height: 1.8;
    font-weight: 300; margin: 0 0 14px;
}
.read-more-list {
    list-style: none; padding: 0; margin: 0 0 14px;
}
.read-more-list li {
    font-family: var(--font-body);
    font-size: 14px; color: #555; line-height: 1.75;
    font-weight: 300; padding: 6px 0 6px 20px; position: relative;
}
.read-more-list li::before { content: '—'; position: absolute; left: 0; color: #ccc; }
.read-more-list li strong { font-weight: 600; color: #333; }
.read-more-faq { margin-top: 8px; }
.faq-item { padding: 14px 0; border-bottom: 1px solid #f0f0f0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: #222; margin: 0 0 6px; }
.faq-a { font-family: var(--font-body); font-size: 13px; color: #555; font-weight: 300; line-height: 1.75; margin: 0; }

/* ─────────────────────────────────────────────────────────────
   SITE FOOTER (BLACK)
───────────────────────────────────────────────────────────── */
.site-footer {
    background: #0a0a0a;
    color: #fff;
    padding: 64px 48px 40px;
}
@media (max-width: 768px) { .site-footer { padding: 48px 20px 32px; } }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto 48px;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }
.footer-title {
    font-family: var(--font-heading);
    font-size: 12px; letter-spacing: 0.16em;
    text-transform: uppercase; color: #fff; margin: 0 0 20px;
}
.footer-link {
    display: block;
    font-family: var(--font-body);
    font-size: 14px; font-weight: 300;
    color: rgba(255,255,255,0.72);
    text-decoration: none; margin-bottom: 11px;
    transition: color 0.2s;
}
.footer-link:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-link-plain {
    font-family: var(--font-body);
    font-size: 14px; font-weight: 300;
    color: rgba(255,255,255,0.72);
    margin-bottom: 11px; display: flex; align-items: center; gap: 5px;
}
.footer-subscribe-text {
    font-family: var(--font-body);
    font-size: 13px; font-weight: 300;
    color: rgba(255,255,255,0.65); line-height: 1.7; margin: 0 0 20px;
}
.subscribe-form {
    display: flex; align-items: center;
    border: 1px solid rgba(255,255,255,0.3);
    background: #fff; padding: 0 12px; gap: 8px; margin-bottom: 12px;
}
.subscribe-form svg { color: #888; flex-shrink: 0; width: 16px; height: 16px; }
.subscribe-input {
    flex: 1; border: none; outline: none;
    font-family: var(--font-body);
    font-size: 13px; color: #222; background: transparent; padding: 12px 0;
}
.subscribe-input::placeholder { color: #aaa; }
.subscribe-submit {
    background: none; border: none; cursor: pointer;
    padding: 4px; color: #555; display: flex; align-items: center;
    transition: color 0.2s;
}
.subscribe-submit:hover { color: #000; }
.subscribe-success {
    font-family: var(--font-body);
    font-size: 12px; color: #43b97f; display: none; margin-top: 4px;
}
.footer-socials {
    display: flex; gap: 16px; margin-top: 20px; align-items: center;
}
.footer-social-btn {
    display: flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; color: rgba(255,255,255,0.7);
    transition: color 0.2s; text-decoration: none;
}
.footer-social-btn:hover { color: #fff; }
.footer-social-btn svg { width: 20px; height: 20px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px; text-align: center;
    max-width: 1280px; margin: 0 auto;
}
.footer-copy {
    font-family: var(--font-body);
    font-size: 11px; color: rgba(255,255,255,0.35);
    letter-spacing: 0.06em; text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────
   TRUST MARQUEE ITEMS (replaces retail-logo items)
───────────────────────────────────────────────────────────── */
.trust-item-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 36px;
    border-right: 1px solid #E8E8E8;
    flex-shrink: 0;
    white-space: nowrap;
    line-height: 44px;
}
.trust-pill-icon {
    font-family: 'Material Symbols Outlined';
    font-size: 17px;
    color: #C5A059;
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    line-height: 1;
}
.trust-pill-label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #333;
    text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────
   HOW ORDERING WORKS SECTION
───────────────────────────────────────────────────────────── */
.how-order-section {
    background: #0a0a0a;
    padding: 56px 24px 52px;
    text-align: center;
}
.how-order-inner {
    max-width: 1000px;
    margin: 0 auto;
}
.how-order-title {
    font-family: var(--font-heading);
    font-size: clamp(16px, 2vw, 24px);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 48px;
}
.how-order-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.how-order-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 1;
    max-width: 200px;
    padding: 0 12px;
}
.how-order-connector {
    display: flex;
    align-items: center;
    padding-top: 38px;
    flex-shrink: 0;
}
.how-order-arrow {
    font-size: 20px;
    color: #C5A059;
    opacity: 0.6;
    line-height: 1;
}
.how-order-num {
    font-family: var(--font-heading);
    font-size: 11px;
    letter-spacing: 0.25em;
    color: #C5A059;
    line-height: 1;
}
.how-order-icon {
    font-family: 'Material Symbols Outlined';
    font-size: 28px;
    color: #fff;
    font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
    line-height: 1;
}
.how-order-label {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}
.how-order-desc {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin: 0;
    line-height: 1.5;
}
@media (max-width: 640px) {
    .how-order-steps {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .how-order-step { max-width: 280px; padding: 16px 24px; }
    .how-order-connector { padding-top: 0; transform: rotate(90deg); }
}

/* ─────────────────────────────────────────────────────────────
   HOME PRODUCT CARD RATING (Upgrade 4 — injected by launch.js)
───────────────────────────────────────────────────────────── */
.home-product-rating { margin: 2px 0 4px; }
.home-product-rating .prod-card-rating {
    display: flex; align-items: center; gap: 5px;
    font-family: var(--font-body); font-size: 11px; color: #555; margin: 0;
}
.home-product-rating .rv-stars { color: #C5A059; letter-spacing: 1px; font-size: 11px; }
.home-product-rating .prod-card-rating-val { font-weight: 700; color: #111; }
.home-product-rating .prod-card-rating-count { color: #999; }
.home-product-rating .prod-card-rating--none { color: #aaa; font-size: 10px; }
