/* =============================================================
   S.V. SNACKS COMPANY — brand stylesheet
   Palette: brass gold, kumkum red, turmeric, banana-leaf green,
   rice-flour cream, roasted-coffee ink.
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600;1,700&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
    --cream: #12080a;
    /* Sleek rich dark royal maroon background */
    --cream-2: #1e0d11;
    --ink: #FFFFFF;
    /* High contrast white for readable text on dark */
    --ink-soft: #E8D3C8;
    /* Soft golden cream for body text */
    --brass: #D4AF37;
    /* Metallic Royal Gold */
    --brass-dark: #AA7C11;
    /* Burnished Royal Gold */
    --kumkum: #800020;
    /* Royal Maroon Burgundy */
    --kumkum-2: #5c0016;
    /* Deep Maroon shadow */
    --turmeric: #F3E5AB;
    /* Light Gold / Vanilla Cream */
    --leaf: #D4AF37;
    --leaf-dark: #AA7C11;
    --white: #1a0b0e;
    /* Royal dark red container card backgrounds */

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

    --radius-s: 8px;
    --radius-m: 20px;
    --radius-l: 32px;

    --shadow-card: 0 15px 40px rgba(0, 0, 0, 0.6);
    --shadow-soft: 0 4px 20px rgba(212, 175, 55, 0.15);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    margin: 0;
    color: var(--kumkum);
    line-height: 1.05;
}

p {
    margin: 0;
}

.container {
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =================== NAV =================== */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(18, 8, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--brass);
}

.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--brass);
    letter-spacing: 1px;
}

.brand .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: conic-gradient(from 220deg, var(--turmeric), var(--brass), var(--kumkum), var(--brass));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #12080a;
    font-weight: 900;
    font-size: 1.1rem;
    box-shadow: 0 0 10px var(--brass);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink-soft);
}

.nav-links a {
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--brass);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--brass);
    color: #12080a !important;
    padding: 12px 24px;
    border-radius: var(--radius-s);
    font-weight: 800;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: #e5c158;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.6));
    display: block;
}

.brand-badge-new {
    display: inline-block;
    padding: 3px 8px;
    background: var(--brass);
    color: #12080a;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 1px;
    border-radius: 4px;
    text-transform: uppercase;
}

.brand-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--ink);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
}

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

/* Kolam / Temple background texture at 4% opacity */
@keyframes heroGlow {

    0%,
    100% {
        opacity: 0.12;
    }

    50% {
        opacity: 0.22;
    }
}

/* Floating keyframes with slight rotations for organic feel */
@keyframes floatA {

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

    50% {
        transform: translateY(-5px) rotate(1.5deg);
    }
}

@keyframes floatB {

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

    50% {
        transform: translateY(-4px) rotate(-1deg);
    }
}

@keyframes floatC {

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

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

@keyframes floatD {

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

    50% {
        transform: translateY(-3px) rotate(-1.5deg);
    }
}

/* Arrow slide on hover for CTA */
@keyframes arrowSlide {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

.hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    padding: 50px 0;
    display: flex;
    align-items: center;
    /* Radial golden light behind hero composition */
    background:
        radial-gradient(ellipse 60% 70% at 72% 52%, rgba(212, 175, 55, 0.18) 0%, transparent 65%),
        radial-gradient(ellipse 50% 60% at 15% 90%, rgba(128, 0, 32, 0.28), transparent 60%),
        #12080a;
    border-bottom: 3px solid var(--brass);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Faint kolam / temple geometry at 4% opacity using SVG background-image */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ccircle cx='60' cy='60' r='55' fill='none' stroke='%23D4AF37' stroke-width='0.5' opacity='0.6'/%3E%3Ccircle cx='60' cy='60' r='42' fill='none' stroke='%23D4AF37' stroke-width='0.4' opacity='0.5'/%3E%3Ccircle cx='60' cy='60' r='28' fill='none' stroke='%23D4AF37' stroke-width='0.3' opacity='0.4'/%3E%3Cline x1='60' y1='5' x2='60' y2='115' stroke='%23D4AF37' stroke-width='0.3' opacity='0.35'/%3E%3Cline x1='5' y1='60' x2='115' y2='60' stroke='%23D4AF37' stroke-width='0.3' opacity='0.35'/%3E%3Cline x1='20' y1='20' x2='100' y2='100' stroke='%23D4AF37' stroke-width='0.3' opacity='0.3'/%3E%3Cline x1='100' y1='20' x2='20' y2='100' stroke='%23D4AF37' stroke-width='0.3' opacity='0.3'/%3E%3C/svg%3E");
    background-size: 120px 120px;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

/* =================== HERO LAYOUT =================== */
.hero-layout {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 0;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-text-col {
    text-align: left;
    padding-right: 16px;
    padding-left: 0;
    margin-left: -20px;
    /* Push text flush to left edge */
}

.hero-text-col h1 {
    font-size: clamp(2.8rem, 4vw, 4.6rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--ink);
    margin: 16px 0 24px;
    font-family: var(--font-display);
    word-break: keep-all;
    hyphens: none;
    white-space: nowrap;
}

.hero-sub {
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 34px;
    max-width: 100%;
}

.hero-actions {
    display: flex;
    justify-content: flex-start;
    gap: 14px;
}

/* =================== HERO SHOWCASE — Circular Orbit =================== */
.hero-showcase-col {
    width: 100%;
    position: relative;
}

.hero-image-trio {
    position: relative;
    width: 100%;
    height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Shift slightly left for balanced composition */
    margin-left: -3%;
}

/* Orbit ring — subtle gold ellipse at 8% opacity */
.hero-image-trio::before {
    content: "";
    position: absolute;
    width: 76%;
    height: 76%;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.14);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    animation: heroGlow 5s ease-in-out infinite;
}

/* Warm golden halo glow BEHIND the center platter only */
.hero-image-trio::after {
    content: "";
    position: absolute;
    width: 55%;
    height: 55%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
    animation: heroGlow 4s ease-in-out infinite;
}

/* Main Centerpiece Platter — 15-20% bigger, closest to viewer */
.trio-img-main {
    position: relative;
    width: 68%;
    height: 90%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trio-img-main img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter:
        drop-shadow(0 30px 55px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 40px rgba(212, 175, 55, 0.5));
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.35, 1), filter 0.6s ease;
    /* Subtle realistic ground shadow */
    transform-origin: bottom center;
}

.trio-img-main:hover img {
    transform: scale(1.06) translateY(-8px);
    filter:
        drop-shadow(0 40px 70px rgba(0, 0, 0, 0.98)) drop-shadow(0 0 60px rgba(212, 175, 55, 0.75));
}

/* --- Four bowls in circular orbit --- */
/* orbit radius ≈ 38% of container, placed at 45°, 135°, 225°, 315° */
.trio-img-sub {
    position: absolute;
    width: 21%;
    height: 36%;
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.35, 1), z-index 0s;
    /* Realistic shadow beneath each bowl */
    filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.88)) drop-shadow(0 0 16px rgba(212, 175, 55, 0.25));
}

.trio-img-sub::after {
    content: attr(data-label);
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--brass);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.4s ease;
    white-space: nowrap;
    pointer-events: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.trio-img-sub:hover::after {
    opacity: 1;
}

/* Orbit positions — use top/right/bottom/left so float animations don't override */
/* Top-right bowl */
.sub-right {
    top: 4%;
    right: 3%;
    left: auto;
    bottom: auto;
    animation: floatA 4.2s ease-in-out infinite;
}

/* Bottom-right bowl */
.sub-bot-right {
    bottom: 4%;
    right: 3%;
    top: auto;
    left: auto;
    animation: floatB 3.8s ease-in-out infinite;
}

/* Bottom-left bowl */
.sub-left {
    bottom: 4%;
    left: 3%;
    top: auto;
    right: auto;
    animation: floatC 5s ease-in-out infinite;
}

/* Top-left bowl */
.sub-top-left {
    top: 4%;
    left: 3%;
    bottom: auto;
    right: auto;
    animation: floatD 4.6s ease-in-out infinite;
}

.trio-img-sub img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.35, 1), filter 0.5s ease;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 12px rgba(212, 175, 55, 0.2));
}

.trio-img-sub:hover {
    z-index: 20;
    filter:
        drop-shadow(0 22px 40px rgba(0, 0, 0, 0.96)) drop-shadow(0 0 28px rgba(212, 175, 55, 0.6));
}

.trio-img-sub:hover img {
    transform: scale(1.10) translateY(-8px);
}

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

/* Disable floating & spinning animations on Mobile and Tablet (< 1024px) */
@media (max-width: 1023px) {
    .sub-right,
    .sub-bot-right,
    .sub-left,
    .sub-top-left,
    .trio-img-sub {
        animation: none !important;
    }
}

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .hero-text-col h1 {
        font-size: 3rem;
    }

    .hero-image-trio {
        height: 600px;
    }
}

/* Tablet (768px – 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .hero {
        padding: 40px 0;
        min-height: auto;
    }

    .hero-layout {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: center;
    }

    .hero-text-col h1 {
        font-size: clamp(2.2rem, 4.2vw, 3.2rem);
        white-space: normal;
        line-height: 1.15;
    }

    .hero-sub {
        font-size: 1.05rem;
        margin-top: 16px;
        max-width: 100%;
    }

    .hero-image-trio {
        height: 380px;
        margin-left: 0;
    }

    .trio-img-main {
        width: 66%;
        height: 82%;
    }

    .trio-img-sub {
        width: 22%;
        height: 30%;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        min-height: auto;
        padding: 32px 0 24px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .hero-text-col {
        text-align: center;
        padding-right: 0;
        margin-left: 0;
        order: 1;
    }

    .hero-showcase-col {
        order: 2;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .hero-text-col h1 {
        font-size: clamp(1.8rem, 6.5vw, 2.5rem);
        white-space: normal;
        line-height: 1.2;
    }

    .hero-sub {
        font-size: 0.96rem;
        margin: 14px auto 0;
        max-width: 92%;
        line-height: 1.6;
    }

    .hero-actions {
        margin-top: 24px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image-trio {
        height: 320px;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .trio-img-main {
        width: 62%;
        height: 78%;
    }

    .trio-img-sub {
        width: 24%;
        height: 28%;
    }

    .trio-img-sub::after {
        display: none;
    }

    .sub-top-left { top: 2%; left: 2%; }
    .sub-right { top: 2%; right: 2%; }
    .sub-left { bottom: 2%; left: 2%; }
    .sub-bot-right { bottom: 2%; right: 2%; }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
    .hero-image-trio {
        height: 260px;
        max-width: 300px;
    }

    .trio-img-main {
        width: 58%;
        height: 74%;
    }

    .trio-img-sub {
        width: 24%;
        height: 26%;
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brass);
    background: rgba(212, 175, 55, 0.1);
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 24px;
}

.eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brass);
}

.hero h1 {
    font-size: clamp(3.2rem, 6.2vw, 5.2rem);
    font-weight: 900;
    color: var(--ink);
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--brass);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.hero h1 .accent-turmeric {
    color: var(--brass);
}

.hero-sub {
    margin-top: 24px;
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 48ch;
    font-weight: 400;
}

.hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 18px 36px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.5px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #F0C84A 50%, #C9981E 100%);
    color: #12080a;
    box-shadow: 0 6px 24px rgba(212, 175, 55, 0.35), 0 2px 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: "→";
    position: absolute;
    right: 18px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-6px);
}

.btn-primary:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #e5c158 0%, #FFD966 50%, #D4AF37 100%);
    box-shadow: 0 14px 36px rgba(212, 175, 55, 0.55), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--brass);
    border: 2px solid var(--brass);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 44px;
    flex-wrap: wrap;
}

.hero-stats div {
    min-width: 110px;
}

.hero-stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--brass-dark);
}

.hero-stats span {
    font-size: 0.82rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* ---- Hero visual: rotating urli bowl with tossing snacks ---- */
.bowl-stage {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 520px;
    margin: 0 auto;
}

.hero-video {
    position: absolute;
    inset: 6%;
    width: 88%;
    height: 88%;
    border-radius: 50%;
    object-fit: cover;
    z-index: 3;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
    display: block;
}

.bowl-fallback {
    display: none;
}

.bowl-ring {
    position: absolute;
    inset: 6%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.55), transparent 45%),
        conic-gradient(from 180deg, var(--brass) 0deg, var(--turmeric) 90deg, var(--brass-dark) 180deg, var(--turmeric) 270deg, var(--brass) 360deg);
    box-shadow:
        inset 0 12px 24px rgba(43, 27, 20, 0.35),
        inset 0 -10px 18px rgba(255, 253, 248, 0.25),
        0 25px 50px -18px rgba(43, 27, 20, 0.4);
    animation: bowl-rotate 14s linear infinite;
}

@keyframes bowl-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.bowl-well {
    position: absolute;
    inset: 20%;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 30%, #7A5620, #4A3113 75%);
    box-shadow: inset 0 10px 18px rgba(0, 0, 0, 0.5);
}

.toss-item {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 46px;
    height: 46px;
    margin: -23px 0 0 -23px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-soft);
    animation-name: toss-arc;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.toss-item.chip {
    background: var(--turmeric);
    animation-duration: 3.2s;
    animation-delay: 0s;
}

.toss-item.mixture {
    background: var(--leaf);
    color: var(--white);
    animation-duration: 3.6s;
    animation-delay: .5s;
}

.toss-item.laddu {
    background: var(--brass-dark);
    animation-duration: 3.4s;
    animation-delay: 1s;
}

.toss-item.jamun {
    background: var(--kumkum);
    animation-duration: 3.8s;
    animation-delay: 1.5s;
}

@keyframes toss-arc {
    0% {
        transform: translate(0, 0) scale(0.7);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    50% {
        transform: translate(var(--tx, 0), var(--ty, -160px)) scale(1.05) rotate(180deg);
        opacity: 1;
    }

    85% {
        opacity: 1;
    }

    100% {
        transform: translate(0, 0) scale(0.7) rotate(360deg);
        opacity: 0;
    }
}

.toss-item:nth-of-type(1) {
    --tx: -90px;
}

.toss-item:nth-of-type(2) {
    --tx: 40px;
}

.toss-item:nth-of-type(3) {
    --tx: -30px;
}

.toss-item:nth-of-type(4) {
    --tx: 100px;
}

.steam {
    position: absolute;
    bottom: 6%;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
}

/* =================== SECTION HEADERS =================== */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--cream-2);
}

.section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-head .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.section-head h2 {
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    margin-top: 14px;
}

.section-head p {
    margin-top: 16px;
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* =================== CATEGORY / FEATURE CARDS =================== */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* =================== CAROUSEL =================== */
.carousel-stage-wrapper {
    position: relative;
    width: 100%;
    margin: 60px auto 0;
    padding-bottom: 40px;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 480px;
    margin: 0 auto;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    touch-action: pan-y;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.carousel-item {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 330px;
    height: 220px;
    margin-left: -165px;
    margin-top: -110px;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.35, 1), opacity 0.8s ease, z-index 0.8s ease;
    cursor: pointer;
    user-select: none;
    will-change: transform, opacity;
}

.bowl-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    transition: transform 0.4s ease;
}

.bowl-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    display: block;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.85));
    transition: filter 0.4s ease;
}

/* Featured Bowl state */
.carousel-item.is-featured .bowl-wrapper {
    border: none;
    transform: translateY(-15px);
}

.carousel-item.is-featured .bowl-img {
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 35px rgba(212, 175, 55, 0.55));
}

.bowl-glow {
    display: none;
}

/* Info Box below */
.carousel-info-box {
    text-align: center;
    max-width: 650px;
    margin: 50px auto 0;
    padding: 30px;
    background: var(--white);
    border: 2px solid var(--brass);
    border-radius: var(--radius-m);
    box-shadow: var(--shadow-card);
    transition: opacity 0.4s ease;
}

.carousel-info-box h3 {
    font-size: 2rem;
    color: var(--brass);
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-info-box p {
    font-size: 1.2rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* =================== ABOUT / STORY =================== */
.story {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.story-visual {
    position: relative;
    width: 100%;
    height: 680px;
    overflow: visible;
}

.image-stack-three {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-img {
    position: absolute;
    border-radius: var(--radius-m);
    border: 3px solid var(--brass);
    box-shadow: var(--shadow-card);
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.35, 1), box-shadow 0.4s ease;
}

/* Main Shop Image - A LOT BIGGER */
.img-shop {
    width: 90%;
    height: 90%;
    left: 0;
    top: 5%;
    z-index: 1;
}

/* Display Image 1 - SMALLER near main shop image */
.img-disp1 {
    width: 36%;
    height: 40%;
    right: 0;
    top: 0;
    z-index: 3;
}

/* Display Image 2 - SMALLER near main shop image */
.img-disp2 {
    width: 36%;
    height: 40%;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.image-stack-three:hover .img-shop {
    transform: scale(1.02);
}

.image-stack-three:hover .img-disp1 {
    transform: translate(6px, -6px) scale(1.04);
}

.image-stack-three:hover .img-disp2 {
    transform: translate(6px, 6px) scale(1.04);
}

.story-visual::before {
    display: none;
}

.story-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(18, 8, 10, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid var(--brass);
    color: var(--ink);
    padding: 18px 20px;
    border-radius: var(--radius-m);
    font-size: 0.95rem;
    line-height: 1.5;
    z-index: 2;
}

.story-text h2 {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
}

.story-text p {
    margin-top: 20px;
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.7;
}

.story-list {
    margin-top: 28px;
    display: grid;
    gap: 16px;
}

.story-list li {
    list-style: none;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 0.98rem;
    color: var(--ink);
}

.story-list .tick {
    flex: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--leaf);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    margin-top: 2px;
}

/* =================== BESTSELLERS GRID =================== */
.best-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 36px;
    margin-top: 50px;
}

.best-card {
    background: transparent;
    border-radius: 0;
    padding: 10px;
    border: none;
    box-shadow: none;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.best-card:hover {
    transform: translateY(-10px);
}

.best-img-wrapper {
    width: 100%;
    height: 280px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.best-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.best-card:hover .best-img {
    transform: scale(1.12) translateY(-8px);
    filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.98)) drop-shadow(0 0 40px rgba(212, 175, 55, 0.65));
}

.best-card h4 {
    color: var(--ink);
    font-size: 1.45rem;
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.best-card:hover h4 {
    color: var(--brass);
}

.best-card .price {
    color: var(--brass);
    font-weight: 800;
    font-size: 1.25rem;
    font-family: var(--font-display);
}

/* =================== CATEGORIES DECORATION =================== */
.cat-main-visual {
    width: 100%;
    border-radius: var(--radius-m);
    overflow: hidden;
    margin-bottom: 40px;
    border: 2px solid var(--brass);
    box-shadow: var(--shadow-card);
}

.cat-main-img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.cat-img-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-s);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--brass);
}

.cat-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* =================== SIGNATURE RECIPE =================== */
.signature-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(26, 11, 14, 0.9), rgba(18, 8, 10, 0.98));
    border-top: 2px solid var(--brass);
    border-bottom: 2px solid var(--brass);
    border-radius: var(--radius-l);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    position: relative;
}

.sig-img-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    box-shadow: none;
    background: transparent;
}

.sig-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 30px rgba(212, 175, 55, 0.35));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.sig-img-wrapper:hover .sig-img {
    transform: scale(1.05) translateY(-6px);
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 45px rgba(212, 175, 55, 0.5));
}

.signature-badge-wrapper {
    margin-bottom: 16px;
}

.sig-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--brass);
    color: #12080a;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
}

.signature-layout h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--ink);
    margin-bottom: 16px;
}

.sig-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--ink-soft);
}

@media (max-width: 768px) {
    .signature-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* =================== CONTACT & LOCATION =================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    color: var(--ink);
    margin-top: 14px;
}

.contact-desc {
    margin-top: 20px;
    font-size: 1.15rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

.contact-details {
    margin-top: 40px;
    display: grid;
    gap: 32px;
}

.contact-item {
    display: grid;
    gap: 8px;
}

.contact-label {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--brass);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phone-link {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: var(--brass);
    transition: transform 0.2s ease, text-shadow 0.2s ease;
    display: inline-block;
}

.phone-link:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.address-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--ink-soft);
}

.contact-map {
    border-radius: var(--radius-l);
    overflow: hidden;
    border: 2px solid var(--brass);
    box-shadow: var(--shadow-card);
}

.contact-map iframe {
    display: block;
}

@media (max-width: 980px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =================== REVIEWS SECTION =================== */
.reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.review-ribbon-card {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 36px;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.35, 1);
}

.review-ribbon-card:hover {
    transform: translateY(-6px);
}

.reviewer-photo-wrap {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid var(--brass);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    position: absolute;
    left: 0;
    z-index: 2;
    flex-shrink: 0;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.review-ribbon-card:hover .reviewer-photo-wrap {
    transform: scale(1.08) rotate(-3deg);
    border-color: #FFD700;
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

.reviewer-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-ribbon-body {
    background: linear-gradient(135deg, #7A1F2B, #5C0016);
    border: 2px solid var(--brass);
    border-radius: 14px;
    padding: 22px 26px 22px 75px;
    width: 100%;
    color: #FFFFFF;
    box-shadow: var(--shadow-card);
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.review-ribbon-card:hover .review-ribbon-body {
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.3);
}

.review-ribbon-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.review-ribbon-head h4 {
    color: var(--brass);
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    font-family: var(--font-display);
}

.star-rating {
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.05rem;
    color: #E8D3C8;
    line-height: 1.5;
    font-style: italic;
    margin: 0;
}

@media (max-width: 600px) {
    .reviews-list {
        grid-template-columns: 1fr;
    }

    .review-ribbon-card {
        padding-left: 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .reviewer-photo-wrap {
        position: relative;
        margin-bottom: -40px;
        margin-left: 20px;
    }

    .review-ribbon-body {
        padding: 50px 20px 20px 20px;
    }
}

/* =================== FOOTER =================== */
footer {
    background: #080304;
    color: rgba(255, 253, 248, 0.75);
    padding: 64px 0 28px;
    border-top: 2px solid var(--brass);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 253, 248, 0.12);
}

.footer-brand .brand {
    color: var(--brass);
}

.footer-brand p {
    margin-top: 16px;
    line-height: 1.6;
    font-size: 0.94rem;
    color: rgba(255, 253, 248, 0.65);
    max-width: 34ch;
}

footer h4 {
    color: var(--brass);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 16px;
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
    font-size: 0.94rem;
}

footer ul a:hover {
    color: var(--turmeric);
}

.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 253, 248, 0.5);
}

.menu-hero {
    padding: 60px 0 32px;
    text-align: center;
    background:
        radial-gradient(900px 400px at 50% -20%, rgba(212, 175, 55, 0.18), transparent 60%),
        var(--cream);
}

.menu-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--brass);
}

.menu-hero p {
    margin-top: 12px;
    color: var(--ink-soft);
    font-size: 1.1rem;
    font-weight: 500;
}

.menu-controls {
    position: relative;
    z-index: 10;
    background: rgba(18, 8, 10, 0.98);
    padding: 20px 0;
    border-bottom: 2px solid var(--brass);
}

.menu-controls .container {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.search-box {
    flex: 1 1 280px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 15px 20px 15px 48px;
    border-radius: 4px;
    border: 2px solid var(--brass);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
}

.search-box input:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.search-box .icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brass);
    font-size: 1.1rem;
}

.chip-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.chip-filter {
    padding: 11px 22px;
    border-radius: 4px;
    border: 2px solid rgba(212, 175, 55, 0.35);
    background: var(--white);
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
}

.chip-filter:hover {
    border-color: var(--brass);
    color: var(--ink);
}

.chip-filter.active {
    background: var(--brass);
    border-color: var(--brass);
    color: #12080a;
}

.result-count {
    font-size: 0.95rem;
    color: var(--ink-soft);
    padding: 24px 0 0;
    font-weight: 600;
}

.menu-body {
    padding: 20px 0 100px;
}

.category-block {
    margin-top: 56px;
    scroll-margin-top: 90px;
}

.category-block:first-of-type {
    margin-top: 10px;
}

/* Category header with image */
.cat-header {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 8px;
}

.cat-header-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.35);
    background: rgba(212, 175, 55, 0.07);
    padding: 6px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
    flex-shrink: 0;
}

.category-block h2 {
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 900;
    color: var(--brass);
    margin: 0;
}

.category-block .cat-desc {
    color: var(--ink-soft);
    margin-top: 8px;
    margin-left: 94px;
    font-size: 1.1rem;
}

.product-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}

.product-card {
    background: var(--white);
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-m);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--brass);
    box-shadow: var(--shadow-card);
}

.product-card .p-name {
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--ink);
    line-height: 1.3;
}

.product-card .p-prices {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.price-pill {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.05rem;
    padding: 8px 16px;
    border-radius: 6px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--brass);
    border: 1px solid rgba(212, 175, 55, 0.35);
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
}

.price-pill small {
    font-size: 0.72rem;
    font-family: var(--font-body);
    font-weight: 600;
    opacity: 0.75;
    letter-spacing: 0.5px;
}

.p-id {
    font-size: 0.72rem;
    color: var(--ink-soft);
    opacity: .7;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--ink-soft);
}

.empty-state .big {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

/* =================== REVEAL ON SCROLL =================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

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

/* =================== RESPONSIVE =================== */
@media (max-width: 980px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .bowl-stage {
        order: -1;
        max-width: 360px;
    }

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

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

    .best-strip {
        grid-template-columns: 1fr 1fr;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #19090c;
        flex-direction: column;
        padding: 20px 24px;
        gap: 18px;
        border-bottom: 2px solid var(--brass);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
        display: none;
        z-index: 100;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
        font-size: 1.6rem;
        color: var(--brass);
        cursor: pointer;
    }

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

    .best-strip {
        grid-template-columns: 1fr;
    }

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

    .cta-band {
        flex-direction: column;
        text-align: center;
    }

    .menu-controls {
        top: 60px;
        padding: 16px 0;
    }

    .menu-controls .container {
        gap: 14px;
    }

    .search-box {
        flex: 1 1 100%;
        width: 100%;
    }

    .chip-filters {
        width: 100%;
        gap: 8px;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
    }

    .chip-filter {
        font-size: 0.85rem;
        padding: 8px 16px;
        flex-shrink: 0;
    }

    .category-block {
        margin-top: 48px;
    }

    .category-block .cat-desc {
        margin-left: 0;
        margin-top: 6px;
        font-size: 0.96rem;
    }

    .cat-header {
        gap: 14px;
    }

    .cat-header-img {
        width: 54px;
        height: 54px;
        padding: 4px;
    }

    .category-block h2 {
        font-size: 1.6rem;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 14px;
        margin-top: 24px;
    }

    .product-card {
        padding: 16px;
        gap: 10px;
    }

    .product-card .p-name {
        font-size: 1.1rem;
    }

    .price-pill {
        padding: 6px 12px;
        font-size: 0.95rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-map iframe {
        height: 300px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .brand-logo-img {
        height: 34px;
    }

    .brand-title {
        font-size: 1.1rem;
    }

    .eyebrow {
        font-size: 0.78rem;
        padding: 6px 12px;
        letter-spacing: 0.1em;
    }

    .hero-text-col h1 {
        font-size: clamp(1.8rem, 7.5vw, 2.4rem);
    }

    .hero-sub {
        font-size: 0.95rem;
        margin-top: 16px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }

    .product-card {
        padding: 12px;
    }

    .product-card .p-name {
        font-size: 0.98rem;
    }

    .price-pill {
        padding: 5px 10px;
        font-size: 0.85rem;
    }

    .best-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .best-card {
        padding: 12px;
    }

    .best-card h4 {
        font-size: 0.95rem;
    }

    .review-ribbon-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 14px;
    }

    .reviewer-photo-wrap {
        width: 42px;
        height: 42px;
    }
}