/* ============================================================
   ZADA MASALA — Homepage Stylesheet
   Compatible with WoodMart Theme (content area only)
   Do NOT rename CSS classes — they are referenced in script.js
   ============================================================ */

/* ── 1. CSS Variables ─────────────────────────────────────── */
:root {
    --gold: #E8A020;
    --gold-dark: #B87010;
    --gold-light: rgba(232, 160, 32, 0.15);
    --brown-dark: #1A0D00;
    --brown: #2D1F12;
    --brown-mid: #8B3A00;
    --cream: #F5EDD8;
    --cream-light: #FAF5EC;
    --cream-card: #F5E8C8;
    --red-accent: #C0392B;
    --dark-card: #1A120B;
    --muted: #6B5A48;
    --muted-light: rgba(107, 90, 72, 0.5);
    --whatsapp: #25D366;
    --newsletter-bg: #6B1022;
    --border-light: rgba(196, 168, 130, 0.3);
    --white: #ffffff;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'DM Sans', system-ui, sans-serif;
    --radius-card: 1.75rem;
    --radius-pill: 999px;
    --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --max-width: 1400px;
}

/* ── 2. Base Reset (Scoped to #homepage-content to prevent WoodMart theme conflicts) ── */
#homepage-content,
#homepage-content *,
#homepage-content *::before,
#homepage-content *::after {
    box-sizing: border-box;
}

#homepage-content {
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    color: var(--brown);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    width: 100%;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

blockquote {
    quotes: none;
}

/* ── 3. Utilities ─────────────────────────────────────────── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 3rem;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 5rem;
    }
}

.no-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Section headings */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow--gold {
    color: var(--gold);
}

.eyebrow--gold-dark {
    color: var(--brown-mid);
}

.eyebrow--red {
    color: var(--red-accent);
}

.eyebrow-line {
    display: block;
    width: 2.5rem;
    height: 1px;
    background: var(--gold);
}

.eyebrow-line--short {
    display: block;
    width: 2.5rem;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--brown-dark);
}

.section-title--dark {
    color: var(--brown);
}

.section-title__italic {
    font-style: italic;
    font-weight: 400;
    color: var(--brown-mid);
}

.section-subtitle {
    font-size: 1.0625rem;
    font-weight: 300;
    color: var(--muted);
    max-width: 32rem;
    margin: 1rem auto 0;
    line-height: 1.6;
}

/* Scroll-reveal base */
.reveal {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 0.65s var(--transition), transform 0.65s var(--transition);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

.reveal-delay-4.visible {
    transition-delay: 0.4s;
}

.reveal-delay-5.visible {
    transition-delay: 0.5s;
}

/* Scroll arrows (reused across sections) */
.scroll-arrows {
    display: flex;
    gap: 0.75rem;
}

.scroll-arrow {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-dark);
    transition: background var(--transition), color var(--transition);
}

.scroll-arrow svg {
    width: 1rem;
    height: 1rem;
}

.scroll-arrow:hover {
    background: var(--brown-dark);
    color: var(--cream);
    border-color: var(--brown-dark);
}

/* ── 4. Button System ─────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.75rem 1.75rem;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn svg {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(0);
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 24px rgba(232, 160, 32, 0.4);
}

.btn--gold:hover {
    box-shadow: 0 8px 32px rgba(232, 160, 32, 0.5);
}

.btn--outline-light {
    background: transparent;
    color: rgba(245, 237, 216, 0.85);
    border: 1px solid rgba(245, 237, 216, 0.22);
}

.btn--outline-dark {
    background: transparent;
    color: var(--brown-dark);
    border: 2px solid var(--brown-dark);
}

.btn--outline-dark:hover {
    background: var(--brown-dark);
    color: var(--cream);
}

.btn--outline-dark.btn--sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.8125rem;
}

.btn--whatsapp {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35);
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn--white-full {
    background: var(--white);
    color: var(--brown-dark);
    width: 100%;
    justify-content: center;
}

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

.btn--white-outline-full {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 100%;
    justify-content: center;
}

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

.btn--gold-full {
    background: var(--gold);
    color: var(--white);
    width: 100%;
    justify-content: center;
}

.btn--gold-full:hover {
    background: var(--gold-dark);
}

.btn--white-solid {
    background: var(--white);
    color: var(--newsletter-bg);
    border-radius: var(--radius-pill);
    padding: 0 1.75rem;
    font-weight: 700;
    border: none;
    flex-shrink: 0;
}

.btn__icon {
    width: 0.875rem;
    height: 0.875rem;
}

.btn__arrow {
    width: 0.875rem;
    height: 0.875rem;
}

/* Add-to-cart small button */
.btn-add {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--brown-dark);
    color: var(--cream);
    cursor: pointer;
    border: none;
    transition: background var(--transition);
}

.btn-add svg {
    width: 0.75rem;
    height: 0.75rem;
}

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

/* ── 5. Announcement Bar ──────────────────────────────────── */
.announcement-bar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #C4830A;
    color: var(--white);
    height: 42px;
    overflow: hidden;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.announcement-bar.is-hidden {
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.announcement-bar__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.announcement-bar__track {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    overflow: hidden;
    height: 100%;
}

.announcement-bar__messages {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-bar__message {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-align: center;
}

.announcement-bar__message.is-active {
    display: flex;
}

.announcement-bar__message .icon {
    width: 0.875rem;
    height: 0.875rem;
    flex-shrink: 0;
}

.announcement-bar__actions {
    position: absolute;
    right: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.announcement-bar__whatsapp {
    display: none;
    align-items: center;
    gap: 0.375rem;
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 700;
    background: #1A9C4C;
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
}

.announcement-bar__whatsapp svg {
    width: 0.75rem;
    height: 0.75rem;
}

@media (min-width: 640px) {
    .announcement-bar__whatsapp {
        display: flex;
    }
}

.announcement-bar__close {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition);
}

.announcement-bar__close svg {
    width: 1rem;
    height: 1rem;
}

.announcement-bar__close:hover {
    color: var(--white);
}

/* ── 6. Hero ──────────────────────────────────────────────── */
.hero {
    position: relative;
    width: 100%;
    height: 100dvh;
    min-height: 560px;
    max-height: 980px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero__slides {
    position: relative;
    flex: 1;
    min-height: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 60%;
    opacity: 0;
    transition: opacity 1.1s ease;
    pointer-events: none;
}

.hero__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero__overlay {
    position: absolute;
    inset: 0;
}

.hero__overlay--slide1 {
    background: linear-gradient(105deg,
            rgba(6, 2, 0, 0.93) 0%,
            rgba(6, 2, 0, 0.80) 35%,
            rgba(6, 2, 0, 0.45) 62%,
            rgba(6, 2, 0, 0.15) 100%);
}

.hero__overlay--slide2 {
    background: linear-gradient(100deg,
            rgba(8, 3, 0, 0.97) 0%,
            rgba(8, 3, 0, 0.88) 30%,
            rgba(8, 3, 0, 0.60) 55%,
            rgba(8, 3, 0, 0.25) 75%,
            rgba(8, 3, 0, 0.10) 100%);
}

.hero__vignette {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to top, rgba(8, 3, 0, 0.88) 0%, transparent 100%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 10;
    padding: 2rem 1.25rem 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: var(--max-width);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero__content {
        padding: 2rem 2.5rem 0;
    }
}

@media (min-width: 1280px) {
    .hero__content {
        padding: 2rem 6rem 0;
    }
}

/* Eyebrow */
.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.hero__eyebrow-text {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero__eyebrow-divider {
    display: block;
    width: 2rem;
    height: 1px;
    background: rgba(232, 160, 32, 0.45);
}

.hero__eyebrow-sub {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 237, 216, 0.38);
    display: none;
}

@media (min-width: 640px) {
    .hero__eyebrow-sub {
        display: inline;
    }
}

/* Headline */
.hero__headline {
    margin-bottom: 0.875rem;
}

.hero__line {
    display: block;
    font-family: var(--font-serif);
    line-height: 0.92;
    font-size: clamp(2.4rem, 5.5vw, 6.2rem);
}

.hero__line--light {
    font-weight: 300;
    color: #F5EDD8;
}

.hero__line--gold {
    color: var(--gold);
    text-shadow: 0 0 60px rgba(232, 160, 32, 0.3);
}

.hero__line--italic {
    font-style: italic;
    font-weight: 700;
}

/* Subheadline (slide 1) */
.hero__subheadline {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 600;
    color: rgba(245, 237, 216, 0.75);
    margin-bottom: 0.625rem;
}

/* Description */
.hero__desc {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: clamp(0.8125rem, 1.4vw, 1rem);
    color: rgba(245, 237, 216, 0.55);
    line-height: 1.6;
    max-width: 26rem;
    margin-bottom: 1.5rem;
}

/* CTA buttons */
.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

/* Stats */
.hero__stats {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(245, 237, 216, 0.1);
}

@media (min-width: 640px) {
    .hero__stats {
        gap: 2rem;
    }
}

.hero__stat-value {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 1.8vw, 1.6rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero__stat-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.625rem;
    font-weight: 500;
    color: rgba(245, 237, 216, 0.38);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.hero__stat-divider {
    display: none;
    width: 1px;
    height: 1.75rem;
    background: rgba(245, 237, 216, 0.1);
}

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

/* Floating badges (desktop only) */
.hero__badges {
    position: absolute;
    inset: 0;
    z-index: 20;
    pointer-events: none;
}

.hero__badge {
    position: absolute;
    background: rgba(8, 3, 0, 0.72);
    border: 1px solid rgba(232, 160, 32, 0.28);
    border-radius: 0.75rem;
    padding: 0.625rem 0.875rem;
    min-width: 8.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    display: none;
}

@media (min-width: 1024px) {
    .hero__badge {
        display: block;
    }
}

.hero__badge--1 {
    top: 22%;
    right: 4%;
    animation: floatBadge1 4s ease-in-out infinite;
}

.hero__badge--2 {
    top: 52%;
    right: 3%;
    animation: floatBadge2 5s ease-in-out infinite;
}

.hero__badge--3 {
    bottom: 20%;
    right: 5%;
    animation: floatBadge3 4.5s ease-in-out infinite;
}

@keyframes floatBadge1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes floatBadge2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

@keyframes floatBadge3 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.hero__badge-stars {
    color: var(--gold);
    font-size: 0.5rem;
    margin-bottom: 0.25rem;
    letter-spacing: 0.1em;
}

.hero__badge-name {
    font-family: var(--font-serif);
    font-size: 0.8125rem;
    font-weight: 600;
    color: #F5EDD8;
    line-height: 1.2;
}

.hero__badge-price {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 0.25rem;
}

/* Hero nav */
.hero__nav {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.hero__nav-btn {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: transparent;
    transition: background var(--transition);
}

.hero__nav-btn svg {
    width: 1rem;
    height: 1rem;
}

.hero__nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero__dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero__dot {
    border-radius: var(--radius-pill);
    height: 3px;
    background: rgba(255, 255, 255, 0.28);
    border: none;
    cursor: pointer;
    transition: width 0.4s ease, background 0.4s ease;
    width: 6px;
}

.hero__dot.is-active {
    width: 20px;
    background: var(--gold);
}

/* Hero ticker */
.hero__ticker-wrap {
    position: relative;
    z-index: 10;
    overflow: hidden;
    background: rgba(232, 160, 32, 0.07);
    border-top: 1px solid rgba(232, 160, 32, 0.14);
    padding: 0.5rem 0;
}

.hero__ticker {
    display: flex;
    white-space: nowrap;
    animation: heroTicker 28s linear infinite;
}

@keyframes heroTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero__ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    color: rgba(245, 237, 216, 0.42);
}

.hero__ticker-item i {
    display: inline-block;
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background: rgba(232, 160, 32, 0.5);
    font-style: normal;
}

/* ── 7. Marquee Ticker ────────────────────────────────────── */
.marquee {
    overflow: hidden;
    padding: 1rem 0;
    background: hsl(350, 65%, 25%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee__track {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee__item {
    display: inline-flex;
    align-items: center;
    gap: 3rem;
    padding: 0 2rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    color: var(--cream);
}

.marquee__item svg {
    width: 0.5rem;
    height: 0.5rem;
    color: #F5A623;
    flex-shrink: 0;
}

/* ── 8. Categories ────────────────────────────────────────── */
.categories {
    padding: 5rem 0;
    background: var(--cream);
}

.categories__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.categories__track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.categories__track::-webkit-scrollbar {
    display: none;
}

.cat-card {
    position: relative;
    flex-shrink: 0;
    width: 12.5rem;
    height: 17.5rem;
    border-radius: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    display: block;
    transition: transform var(--transition);
}

.cat-card:hover {
    transform: translateY(-4px);
}

.cat-card.is-active {
    background: linear-gradient(160deg, #F5E8C8 0%, #E8CFA0 100%) !important;
}

.cat-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: background var(--transition);
}

.cat-card.is-active .cat-card__overlay {
    display: none;
}

.cat-card:hover .cat-card__overlay {
    background: rgba(0, 0, 0, 0.2);
}

.cat-card__icon-wrap {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.cat-card.is-active .cat-card__icon-wrap {
    background: rgba(255, 255, 255, 0.75);
    color: var(--brown-mid);
}

.cat-card__icon-wrap svg {
    width: 1rem;
    height: 1rem;
}

.cat-card__label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: center;
}

.cat-card__label span {
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cat-card__label svg {
    width: 0.875rem;
    height: 0.875rem;
    display: none;
}

.cat-card.is-active .cat-card__label span {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.cat-card.is-active .cat-card__label svg {
    display: inline;
}

/* ── 9. Most Loved ────────────────────────────────────────── */
.most-loved {
    padding: 5rem 0;
    background: var(--cream-light);
}

.most-loved__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 1.5rem;
}

.most-loved__header .section-subtitle {
    margin: 0.75rem 0 0 0;
    text-align: left;
    max-width: 32rem;
}

.most-loved__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.most-loved__view-all-mobile {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .most-loved__view-all-mobile {
        display: none;
    }
}

/* Product Row */
.products-row {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.products-row::-webkit-scrollbar {
    display: none;
}

/* Product Card */
.product-card {
    flex-shrink: 0;
    width: clamp(14rem, 25vw, 16.5rem);
    scroll-snap-align: start;
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: box-shadow var(--transition), transform var(--transition);
    display: flex;
    flex-direction: column;
}

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

.product-card__image {
    position: relative;
    height: 13rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.product-card__image--placeholder {
    background: linear-gradient(135deg, #F5E8C8 0%, #E8CFA0 100%);
}

.product-card__image--blend1 {
    background: linear-gradient(135deg, #3D1A00 0%, #6B2D08 100%);
}

.product-card__image--blend2 {
    background: linear-gradient(135deg, #2D0810 0%, #5C1020 100%);
}

.product-card__image--blend3 {
    background: linear-gradient(135deg, #1A2D0D 0%, #3A5C1A 100%);
}

.product-card__image--tea {
    background: linear-gradient(135deg, #0D2010 0%, #1A4020 100%);
}

.product-card__svg-icon {
    width: 5rem;
    height: 5rem;
    opacity: 0.5;
}

.product-card__heat-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-pill);
    padding: 0.25rem 0.625rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.product-card__heat-label {
    font-family: var(--font-sans);
    font-size: 0.5625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.product-card__wishlist {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background var(--transition);
    color: var(--muted);
}

.product-card__wishlist svg {
    width: 1rem;
    height: 1rem;
}

.product-card__wishlist:hover {
    background: var(--white);
    color: var(--red-accent);
}

.product-card__wishlist.is-wishlisted {
    color: var(--red-accent);
}

/* Heat dots */
.product-card__dots {
    display: flex;
    gap: 0.25rem;
}

/* Set via JS based on data-level */
.product-card__dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: #D6C5B0;
}

.product-card__dot.is-active {
    background: var(--red-accent);
}

.product-card__body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card__cat {
    font-family: var(--font-sans);
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--red-accent);
    margin-bottom: 0.25rem;
}

.product-card__name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--brown-dark);
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.product-card__stars {
    font-size: 0.75rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.product-card__stars span {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    color: var(--muted);
    margin-left: 0.25rem;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.product-card__price {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--brown-dark);
}

/* ── 10. Bundles ──────────────────────────────────────────── */
.bundles {
    padding: 6rem 0;
    background: var(--white);
}

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

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

.bundle-card {
    position: relative;
    border-radius: var(--radius-card);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: box-shadow var(--transition), transform var(--transition);
    overflow: hidden;
}

.bundle-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-8px);
}

.bundle-card--spice {
    background: linear-gradient(145deg, #3D1A00, #6B2D08);
}

.bundle-card--chai {
    background: linear-gradient(145deg, #0D2010, #1A4020);
}

.bundle-card--essentials {
    background: linear-gradient(145deg, #2D0810, #5C1020);
}

.bundle-card__save-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--white);
    color: var(--brown-dark);
    font-family: var(--font-sans);
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-pill);
}

.bundle-card__icons {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.bundle-card__icon-wrap {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.bundle-card__icon-wrap svg {
    width: 1.25rem;
    height: 1.25rem;
}

.bundle-card__name {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    margin-bottom: 2rem;
}

.bundle-card__items {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.875rem;
    padding: 1.5rem;
    flex: 1;
    margin-bottom: 2rem;
}

.bundle-card__items li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 0;
}

.bundle-card__items li::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.bundle-card__items li+li {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bundle-card__price-wrap {
    text-align: center;
    margin-bottom: 2rem;
}

.bundle-card__original {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.bundle-card__price {
    font-family: var(--font-sans);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

/* ── 11. Products Grid ────────────────────────────────────── */
.products-grid {
    padding: 4rem 0 6rem;
    background: var(--white);
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3.5rem;
}

.filter-pill {
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: transparent;
    color: var(--brown);
    border: 1px solid rgba(45, 31, 18, 0.2);
    cursor: pointer;
    transition: all var(--transition);
}

.filter-pill:hover {
    border-color: var(--brown-dark);
}

.filter-pill.is-active {
    background: var(--brown-dark);
    color: var(--cream);
    border-color: var(--brown-dark);
}

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

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

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

.grid-card {
    background: var(--white);
    border: 1px solid rgba(196, 168, 130, 0.18);
    border-radius: 0.75rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition);
}

.grid-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.grid-card--hidden {
    display: none;
}

.grid-card__image {
    position: relative;
    height: 11rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.grid-card__image:hover .grid-card__quick {
    opacity: 1;
    transform: translateY(0);
}

.grid-card__svg-icon {
    width: 4.5rem;
    height: 4.5rem;
}

.grid-card__label-name {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-serif);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    white-space: nowrap;
}

.grid-card__quick {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%) translateY(0.5rem);
    opacity: 0;
    background: var(--white);
    color: var(--brown-dark);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-pill);
    padding: 0.375rem 1rem;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity var(--transition), transform var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Grid card image variants */
.grid-card__image--spice1 {
    background: linear-gradient(135deg, #3D1A00, #6B2D08);
}

.grid-card__image--spice2 {
    background: linear-gradient(135deg, #2D0818, #5C1030);
}

.grid-card__image--spice3 {
    background: linear-gradient(135deg, #1A2D00, #3A5C0A);
}

.grid-card__image--baking1 {
    background: linear-gradient(135deg, #2D1A08, #5C3A1A);
}

.grid-card__image--baking2 {
    background: linear-gradient(135deg, #1A1A08, #3D3A10);
}

.grid-card__image--herbs1 {
    background: linear-gradient(135deg, #0A2010, #1E4028);
}

.grid-card__image--tea1 {
    background: linear-gradient(135deg, #0D2010, #1A4020);
}

.grid-card__image--tea2 {
    background: linear-gradient(135deg, #102018, #20403A);
}

.grid-card__image--blend3 {
    background: linear-gradient(135deg, #1A0820, #3A1040);
}

.grid-card__body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.grid-card__cat {
    font-family: var(--font-sans);
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.grid-card__name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--brown);
    line-height: 1.25;
    margin-bottom: 0.375rem;
}

.grid-card__stars {
    font-size: 0.75rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.grid-card__intensity {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

/* Set via JS */
.grid-card__intensity-dot {
    width: 1rem;
    height: 0.25rem;
    border-radius: 2px;
}

.grid-card__price-row {
    margin-bottom: 0.875rem;
    margin-top: auto;
}

.grid-card__price {
    font-family: var(--font-sans);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gold);
}

.products-grid__actions,
.products-grid__explore {
    display: flex;
    justify-content: center;
    margin-top: 3.5rem;
}

/* ── 12. Flash Sale ───────────────────────────────────────── */
.flash-sale {
    padding: 6rem 1.5rem;
    background: #1A120B;
}

.flash-sale__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .flash-sale__inner {
        flex-direction: row;
        align-items: flex-start;
    }
}

.flash-sale__info {
    width: 100%;
    text-align: center;
    color: var(--white);
}

@media (min-width: 1024px) {
    .flash-sale__info {
        width: 33%;
        text-align: left;
    }
}

.flash-sale__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .flash-sale__eyebrow {
        justify-content: flex-start;
    }
}

.flash-sale__title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.flash-sale__desc {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 26rem;
    line-height: 1.6;
}

.flash-sale__timer {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 1024px) {
    .flash-sale__timer {
        justify-content: flex-start;
    }
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-unit__value {
    width: 4.5rem;
    height: 4.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.875rem;
    color: var(--gold);
}

.timer-unit__label {
    font-family: var(--font-sans);
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.75rem;
}

.flash-sale__products {
    width: 100%;
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.flash-sale__products::-webkit-scrollbar {
    display: none;
}

@media (min-width: 1024px) {
    .flash-sale__products {
        width: 67%;
    }
}

.flash-card {
    min-width: 17.5rem;
    width: 17.5rem;
    flex-shrink: 0;
    background: #221810;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.875rem;
    padding: 1.5rem;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition);
}

.flash-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.flash-card__save {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--red-accent);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-pill);
}

.flash-card__image {
    width: 100%;
    height: 12rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
}

.flash-card__image--chili {
    background: linear-gradient(135deg, rgba(60, 0, 0, 0.6), rgba(120, 0, 0, 0.4));
}

.flash-card__image--garam {
    background: linear-gradient(135deg, rgba(45, 20, 0, 0.6), rgba(90, 40, 0, 0.4));
}

.flash-card__image--saffron {
    background: linear-gradient(135deg, rgba(45, 30, 0, 0.6), rgba(90, 60, 0, 0.4));
}

.flash-card__image--ghee {
    background: linear-gradient(135deg, rgba(30, 25, 0, 0.6), rgba(60, 50, 0, 0.4));
}

.flash-card__name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.flash-card__prices {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.flash-card__price {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
}

.flash-card__original {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

/* ── 13. About / Brand Story ──────────────────────────────── */
.about {
    padding: 5rem 0 6rem;
    background: var(--white);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.about__text {
    order: 2;
}

@media (min-width: 1024px) {
    .about__text {
        order: 1;
    }
}

.about__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.about__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--brown-dark);
    margin-bottom: 1.5rem;
}

.about__br {
    display: none;
}

@media (min-width: 640px) {
    .about__br {
        display: inline;
    }
}

.about__body {
    margin-bottom: 1.5rem;
}

.about__body p {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about__urdu {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--brown-mid);
    margin-right: 0.5rem;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(196, 168, 130, 0.3);
    margin-bottom: 1.5rem;
}

.about__stat-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brown-mid);
}

.about__stat-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.25rem;
}

.about__tagline {
    background: linear-gradient(135deg, rgba(232, 160, 32, 0.12) 0%, rgba(139, 58, 0, 0.08) 100%);
    border: 1px solid rgba(232, 160, 32, 0.2);
    border-radius: 0.875rem;
    padding: 0.75rem 1.25rem;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--brown-mid);
    letter-spacing: 0.03em;
}

/* Right visual */
.about__visual {
    order: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 26rem;
}

@media (min-width: 1024px) {
    .about__visual {
        order: 2;
    }
}

.about__ring {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(196, 168, 130, 0.3);
    pointer-events: none;
}

.about__ring--outer {
    width: 80%;
    aspect-ratio: 1;
}

.about__ring--inner {
    width: 92%;
    aspect-ratio: 1;
    border-color: rgba(196, 168, 130, 0.15);
}

.about__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.about__glow--gold {
    top: 0;
    right: 0;
    width: 12rem;
    height: 12rem;
    background: rgba(232, 160, 32, 0.15);
}

.about__glow--red {
    bottom: 0;
    left: 0;
    width: 14rem;
    height: 14rem;
    background: rgba(192, 57, 43, 0.1);
}

.about__logo-card {
    position: relative;
    z-index: 10;
    width: min(23.75rem, 90%);
    aspect-ratio: 1;
    border-radius: 2.5rem;
    overflow: hidden;
    background: linear-gradient(145deg, #F5E8C8 0%, #E8CFA0 100%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    animation: logoFloat 5s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.about__logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2.5rem;
}

.about__badge {
    position: absolute;
    z-index: 20;
    border-radius: 0.875rem;
    padding: 0.75rem 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about__badge--since {
    bottom: -1.5rem;
    left: 0;
    background: var(--brown-dark);
    color: var(--cream);
}

@media (min-width: 640px) {
    .about__badge--since {
        bottom: -1.5rem;
        left: -1.5rem;
    }
}

.about__badge-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.about__badge-year {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
}

.about__badge--pure {
    top: -0.75rem;
    right: 0;
    background: var(--white);
    border: 1px solid #E8CFA0;
}

@media (min-width: 640px) {
    .about__badge--pure {
        top: -1rem;
        right: -1rem;
    }
}

.about__badge-pct {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red-accent);
}

.about__badge-text {
    display: block;
    font-family: var(--font-serif);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--brown-dark);
}

/* ── 14. Features / Why Choose Us ────────────────────────── */
.features {
    padding: 6rem 0;
    background: var(--cream);
    position: relative;
}

.features::before,
.features::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(45, 31, 18, 0.1), transparent);
}

.features::before {
    top: 0;
}

.features::after {
    bottom: 0;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

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

@media (min-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.feature-card {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(45, 31, 18, 0.06);
    border-radius: 1.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: box-shadow var(--transition), transform var(--transition), background var(--transition);
    cursor: default;
}

.feature-card:hover {
    background: var(--white);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

.feature-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.875rem;
    margin: 0 auto 1rem;
    background: rgba(139, 58, 0, 0.07);
    border: 1px solid rgba(139, 58, 0, 0.12);
    color: var(--brown-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}

.feature-card__icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.feature-card:hover .feature-card__icon {
    transform: scale(1.05);
}

.feature-card__title {
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 0.5rem;
    line-height: 1.25;
}

.feature-card__desc {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--muted);
    line-height: 1.6;
}

/* ── 15. Testimonials ─────────────────────────────────────── */
.testimonials {
    padding: 6rem 0;
    background: var(--white);
    overflow: hidden;
}

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

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

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

.review-card {
    background: var(--dark-card);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.review-card__stars {
    color: var(--gold);
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.review-card__text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2.5rem;
    flex: 1;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review-card__avatar {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.review-card__name {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--white);
}

.review-card__location {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.125rem;
}

/* ── 16. Newsletter ───────────────────────────────────────── */
.newsletter {
    position: relative;
    background: var(--newsletter-bg);
    color: var(--white);
    padding: 6rem 1.5rem;
    overflow: hidden;
}

.newsletter__glow {
    position: absolute;
    top: -6rem;
    right: -6rem;
    width: 24rem;
    height: 24rem;
    background: rgba(245, 166, 35, 0.2);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.newsletter__inner {
    position: relative;
    z-index: 10;
    max-width: 50rem;
    margin: 0 auto;
    text-align: center;
}

.newsletter__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.newsletter__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.newsletter__desc {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.newsletter__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .newsletter__actions {
        flex-direction: row;
        justify-content: center;
    }
}

.newsletter__divider {
    display: none;
    width: 1px;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .newsletter__divider {
        display: block;
    }
}

.newsletter__form {
    width: 100%;
}

@media (min-width: 768px) {
    .newsletter__form {
        width: auto;
    }
}

.newsletter__input-wrap {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    padding: 0.25rem;
    gap: 0.5rem;
}

.newsletter__mail-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    margin-left: 1rem;
}

.newsletter__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--white);
    padding: 0.75rem 0.5rem;
    min-width: 0;
    width: 100%;
}

.newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 640px) {
    .newsletter__input {
        min-width: 18rem;
    }
}

/* ── 17. Responsive Adjustments ───────────────────────────── */
@media (max-width: 480px) {
    .hero__ctas {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .categories__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .most-loved__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .most-loved__actions .btn--outline-dark {
        display: none;
    }

    .flash-sale__inner {
        gap: 2.5rem;
    }

    .about__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
}

/* ── 18. Full-Screen Search Modal ──────────────────────────── */
.announcement-bar__search {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.announcement-bar__search:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: var(--white);
}

.announcement-bar__search svg {
    width: 0.9375rem;
    height: 0.9375rem;
}

/* Search Modal Overlay */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    background: rgba(10, 7, 5, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
}

.search-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.search-modal__backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.search-modal__close {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    z-index: 10;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.search-modal__close:hover {
    color: var(--gold);
    transform: scale(1.1);
}

.search-modal__close svg {
    width: 1.75rem;
    height: 1.75rem;
}

.search-modal__container {
    position: relative;
    z-index: 5;
    width: min(64rem, 94vw);
    margin: 3rem auto 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-modal__input-wrapper {
    width: 100%;
    max-width: 48rem;
    position: relative;
    margin-bottom: 2rem;
}

.search-modal__input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 0.75rem 1rem;
    text-align: center;
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: var(--white);
    outline: none;
    transition: border-color 0.3s ease;
}

.search-modal__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-serif);
    font-style: italic;
}

.search-modal__input:focus {
    border-bottom-color: var(--gold);
}

/* Category Filter Pills */
.search-modal__categories {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.search-modal__pill {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    padding: 0.45rem 1.4rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.search-modal__pill:hover {
    background: rgba(255, 255, 255, 0.25);
}

.search-modal__pill.is-active {
    background: var(--gold);
    color: #1A120B;
    font-weight: 700;
}

/* Results Grid */
.search-modal__results {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
}

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

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

.search-modal__card {
    display: flex;
    align-items: center;
    height: 5.5rem;
    background: #FAF7F2;
    border-radius: 1.125rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.search-modal__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.search-modal__card-img {
    width: 5.5rem;
    height: 100%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    position: relative;
    border-top-left-radius: 1.125rem;
    border-bottom-left-radius: 1.125rem;
}

.search-modal__card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 58, 0, 0.25) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.search-modal__card-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.125rem;
    min-width: 0;
}

.search-modal__card-info {
    min-width: 0;
    margin-right: 0.5rem;
}

.search-modal__card-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: #1A120B;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0.25rem;
}

.search-modal__card-price {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gold);
}

.search-modal__card-btn {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    border: 1px solid rgba(26, 18, 11, 0.15);
    background: transparent;
    color: #1A120B;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
}

.search-modal__card-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: scale(1.08);
}

.search-modal__card-btn svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* ── 19. Section 7.5 — Custom Order CTA Banner ──────────────── */
.custom-order-cta {
    padding: 5rem 0;
    background: var(--cream);
    position: relative;
}

.custom-order-cta__card {
    position: relative;
    background: linear-gradient(135deg, #1D130B 0%, #3D2311 50%, #150B05 100%);
    border-radius: 2.5rem;
    padding: 3.5rem 2.5rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(232, 160, 32, 0.2);
}

@media (min-width: 768px) {
    .custom-order-cta__card {
        padding: 4.5rem 4rem;
    }
}

.custom-order-cta__glow {
    position: absolute;
    top: -5rem;
    right: -5rem;
    width: 22rem;
    height: 22rem;
    background: rgba(232, 160, 32, 0.18);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.custom-order-cta__content {
    position: relative;
    z-index: 5;
    max-width: 44rem;
}

.custom-order-cta__badge {
    margin-bottom: 1.25rem;
}

.custom-order-cta__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.custom-order-cta__desc {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.custom-order-cta__features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.custom-order-cta__feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gold);
}

.custom-order-cta__feature-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold);
}

/* ── 20. Customize Your Order Dedicated Page Styles ──────────── */
.custom-order-page {
    background: #FAF7F2;
    min-height: 100vh;
}

.custom-order-header {
    background: #1D130B;
    border-bottom: 1px solid rgba(232, 160, 32, 0.2);
    padding: 1rem 0;
}

.custom-order-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-order-header__back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.custom-order-header__back:hover {
    color: var(--white);
}

.custom-order-header__back svg {
    width: 1.125rem;
    height: 1.125rem;
}

.custom-order-header__logo img {
    height: 3rem;
    width: auto;
    object-fit: contain;
}

.custom-order-header__badge span {
    background: rgba(232, 160, 32, 0.15);
    border: 1px solid rgba(232, 160, 32, 0.3);
    color: var(--gold);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.custom-order-hero {
    background: linear-gradient(135deg, #1D130B 0%, #2A1A0E 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.custom-order-hero__content {
    max-width: 44rem;
    margin: 0 auto;
}

.custom-order-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 700;
    margin: 0.75rem 0 1rem;
    color: var(--white);
}

.custom-order-hero__desc {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Form Layout Grid */
.custom-order-form-section {
    padding: 4rem 0;
}

.custom-order-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 992px) {
    .custom-order-form-grid {
        grid-template-columns: 1.8fr 1fr;
    }
}

.form-card {
    background: var(--white);
    border-radius: 1.75rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(45, 31, 18, 0.08);
    margin-bottom: 2rem;
}

.form-card__header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(45, 31, 18, 0.08);
}

.form-card__step {
    width: 2.25rem;
    height: 2.25rem;
    background: var(--gold);
    color: #1A120B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.form-card__title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: #1A120B;
    margin-bottom: 0.25rem;
}

.form-card__sub {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--muted);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-label {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: #1A120B;
}

.required {
    color: #C0392B;
}

.optional {
    color: var(--muted);
    font-weight: 400;
    font-size: 0.8125rem;
}

.form-control {
    width: 100%;
    background: #FAF7F2;
    border: 1px solid rgba(45, 31, 18, 0.15);
    border-radius: 0.875rem;
    padding: 0.85rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: #1A120B;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(232, 160, 32, 0.15);
}

/* Custom Product Selection Card Grid */
.custom-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .custom-products-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.custom-product-item {
    display: flex;
    align-items: center;
    padding: 0.85rem;
    background: #FAF7F2;
    border: 1px solid rgba(45, 31, 18, 0.1);
    border-radius: 1rem;
    gap: 0.85rem;
    transition: all 0.2s ease;
}

.custom-product-item.is-selected {
    background: #FFFDF9;
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(232, 160, 32, 0.15);
}

.custom-product-item__check input {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--gold);
    cursor: pointer;
}

.custom-product-item__img {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.custom-product-item__info {
    flex: 1;
    min-width: 0;
}

.custom-product-item__title {
    display: block;
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1A120B;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-product-item__price {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--gold);
}

.custom-product-item__qty {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--white);
    border: 1px solid rgba(45, 31, 18, 0.15);
    border-radius: 0.5rem;
    padding: 0.2rem;
}

.qty-btn-sub, .qty-btn-add {
    width: 1.5rem;
    height: 1.5rem;
    border: none;
    background: transparent;
    font-weight: 700;
    cursor: pointer;
    color: #1A120B;
}

.qty-btn-sub:disabled, .qty-btn-add:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.qty-input {
    width: 1.75rem;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 0.875rem;
}

/* Packaging Radios */
.packaging-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

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

.pkg-card input {
    display: none;
}

.pkg-card__box {
    display: block;
    background: #FAF7F2;
    border: 1px solid rgba(45, 31, 18, 0.12);
    border-radius: 1rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pkg-card input:checked + .pkg-card__box {
    background: #FFFDF9;
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(232, 160, 32, 0.15);
}

.pkg-card__box strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 0.9375rem;
    color: #1A120B;
    margin-bottom: 0.25rem;
}

.pkg-card__box small {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--muted);
}

/* Summary Sidebar */
.summary-card {
    position: sticky;
    top: 2rem;
    background: var(--white);
    border-radius: 1.75rem;
    padding: 2rem;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(45, 31, 18, 0.08);
}

.summary-card__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A120B;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(45, 31, 18, 0.08);
}

.summary-items-list {
    min-height: 6rem;
    margin-bottom: 1rem;
}

.empty-summary-text {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: var(--muted);
    font-style: italic;
}

.summary-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    margin-bottom: 0.65rem;
}

.summary-divider {
    height: 1px;
    background: rgba(45, 31, 18, 0.08);
    margin: 1.25rem 0;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.summary-row--total {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gold);
}

.summary-delivery-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 160, 32, 0.12);
    border-radius: 0.75rem;
    padding: 0.75rem;
    font-size: 0.75rem;
    color: var(--brown-mid);
    margin: 1.25rem 0;
}

.summary-delivery-note svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--gold);
    flex-shrink: 0;
}

.summary-guarantee {
    font-size: 0.75rem;
    color: var(--muted);
    text-align: center;
    margin-top: 1rem;
}

/* ── 21. Quick View, Recipe Drawer & Social Proof Toast ────── */
.quick-view-modal, .recipe-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quick-view-modal.is-open, .recipe-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.quick-view-modal__backdrop, .recipe-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 7, 5, 0.8);
    backdrop-filter: blur(8px);
}

.quick-view-modal__content, .recipe-modal__content {
    position: relative;
    z-index: 10;
    background: var(--white);
    border-radius: 2rem;
    width: min(56rem, 94vw);
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.quick-view-modal__close, .recipe-modal__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #FAF7F2;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.quick-view-modal__close:hover, .recipe-modal__close:hover {
    background: var(--gold);
    color: var(--white);
}

.quick-view-modal__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .quick-view-modal__grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.quick-view-modal__image-wrapper {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
}

.quick-view-modal__img {
    width: 100%;
    height: 100%;
    max-height: 22rem;
    object-fit: cover;
}

.quick-view-modal__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: #1A120B;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
}

.quick-view-modal__title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: #1A120B;
    margin-bottom: 0.5rem;
}

.quick-view-modal__price {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-right: 0.75rem;
}

.variant-pills {
    display: flex;
    gap: 0.5rem;
    margin: 0.5rem 0 1.5rem;
}

.variant-pill {
    padding: 0.4rem 1rem;
    border-radius: 0.625rem;
    border: 1px solid rgba(45, 31, 18, 0.15);
    background: #FAF7F2;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
}

.variant-pill.is-active {
    background: var(--gold);
    color: #1A120B;
    border-color: var(--gold);
}

.quick-view-modal__actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.quantity-picker {
    display: flex;
    align-items: center;
    border: 1px solid rgba(45, 31, 18, 0.15);
    border-radius: 0.875rem;
    padding: 0.35rem 0.75rem;
    gap: 0.75rem;
}

.quantity-picker .qty-btn {
    border: none;
    background: transparent;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
}

/* Recipe Modal */
.recipe-modal__header {
    text-align: center;
    margin-bottom: 2rem;
}

.recipe-modal__tag {
    color: var(--gold);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.recipe-modal__title {
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 700;
    color: #1A120B;
    margin: 0.5rem 0;
}

.recipe-spice-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    background: #FAF7F2;
    border-radius: 0.875rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-sans);
}

.recipe-modal__bundle-box {
    background: linear-gradient(135deg, #1D130B 0%, #3D2311 100%);
    border-radius: 1.5rem;
    padding: 1.5rem;
    color: var(--white);
    margin-top: 1.5rem;
}

.bundle-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.bundle-total .total-price {
    font-size: 1.375rem;
    color: var(--gold);
}

/* Social Proof Toast */
.social-proof-toast {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 9999;
    background: var(--white);
    border-radius: 1.25rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 24rem;
    border: 1px solid rgba(232, 160, 32, 0.25);
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.social-proof-toast.is-show {
    transform: translateY(0);
    opacity: 1;
}

.social-proof-toast__close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    background: transparent;
    border: none;
    font-size: 0.75rem;
    color: var(--muted);
    cursor: pointer;
}

.social-proof-toast__avatar {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(232, 160, 32, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.toast-text {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    color: #1A120B;
    line-height: 1.4;
}

.toast-time {
    display: block;
    font-size: 0.75rem;
    color: var(--gold);
    margin-top: 0.25rem;
}

/* ── 22. Dynamic Order Builder & WhatsApp Integration Styles ── */
.title-sub-highlight {
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 500;
    color: var(--gold);
    display: inline-block;
    margin-top: 0.35rem;
}

.order-mode-tabs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.mode-tab {
    flex: 1;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(45, 31, 18, 0.15);
    background: var(--white);
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1A120B;
    cursor: pointer;
    transition: all 0.25s ease;
}

.mode-tab.is-active {
    background: #1D130B;
    color: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(29, 19, 11, 0.2);
}

.builder-search-box {
    background: #FAF7F2;
    border-radius: 1.125rem;
    padding: 1.25rem;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(45, 31, 18, 0.1);
}

.builder-search-input-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    border: 1px solid rgba(45, 31, 18, 0.15);
    border-radius: 0.875rem;
    padding: 0.65rem 1rem;
    margin-bottom: 0.85rem;
}

.builder-search-input-wrap svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--muted);
    flex-shrink: 0;
}

.builder-search-input {
    width: 100%;
    border: none;
    outline: none;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: #1A120B;
}

.builder-quick-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
}

.quick-tag-btn {
    background: var(--white);
    border: 1px solid rgba(232, 160, 32, 0.3);
    color: #1A120B;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-pill);
    font-size: 0.78125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-tag-btn:hover {
    background: var(--gold);
    color: #1A120B;
    border-color: var(--gold);
}

.builder-rows-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.builder-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
    background: #FAF7F2;
    border: 1px solid rgba(45, 31, 18, 0.1);
    border-radius: 1.125rem;
    padding: 1.125rem;
    align-items: end;
    transition: border-color 0.2s ease;
}

@media (min-width: 640px) {
    .builder-row {
        grid-template-columns: 2.2fr 1.2fr 1.2fr auto;
    }
}

.builder-row:hover {
    border-color: var(--gold);
}

.row-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #1A120B;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.row-qty-picker {
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid rgba(45, 31, 18, 0.15);
    border-radius: 0.875rem;
    padding: 0.35rem;
    gap: 0.25rem;
}

.row-qty-btn {
    width: 2rem;
    height: 2rem;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    color: #1A120B;
}

.row-qty-input {
    width: 2.25rem;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 0.9375rem;
}

.row-remove-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.875rem;
    border: 1px solid rgba(192, 57, 43, 0.2);
    background: rgba(192, 57, 43, 0.08);
    color: #C0392B;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.row-remove-btn:hover {
    background: #C0392B;
    color: var(--white);
    border-color: #C0392B;
}

.add-product-btn {
    width: 100%;
    justify-content: center;
    border-style: dashed;
    border-width: 2px;
    padding: 0.9rem;
    font-weight: 700;
}

.whatsapp-submit-btn {
    background: linear-gradient(135deg, #E8A020 0%, #D48C10 100%) !important;
    border-color: #E8A020 !important;
    color: #1A120B !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 25px rgba(232, 160, 32, 0.35) !important;
}

.whatsapp-submit-btn:hover {
    background: linear-gradient(135deg, #F5B030 0%, #E8A020 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(232, 160, 32, 0.5) !important;
}

/* ── WoodMart Theme Full-Width & Page Title Overrides ── */
.page-template-template-homepage .page-title-default,
.page-template-template-homepage .title-size-default,
.page-title-default {
    display: none !important;
}

.page-template-template-homepage .main-page-wrapper,
.page-template-template-homepage .site-content,
.page-template-template-homepage #homepage-content,
#homepage-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden !important;
}

#homepage-content .container {
    width: 100% !important;
    max-width: 1320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
}
