/* ── LIGHT INDIAN FLAG PALETTE ── */
:root {
    --saffron:    #E8821A;
    --saffron-2:  #F5A54A;
    --saffron-bg: #FFF4E8;
    --green:      #138808;
    --green-2:    #1FAD0A;
    --green-bg:   #EEF7EC;
    --white:      #FFFFFF;
    --cream:      #FDFAF4;
    --cream-2:    #F7F0E3;
    --gold:       #C9A227;
    --gold-soft:  #E8C766;
    --ink:        #1A1A1A;
    --ink-2:      #3D2B1A;
    --muted:      #6B5A4A;
    --border:     rgba(232,130,26,0.18);
    --leaf:       #138808;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.65;
}

/* Devanagari text utility */
.hi {
    font-family: 'Noto Serif Devanagari', serif;
    font-weight: 500;
}

/* ── TOP CONTACT BAR ── */
.top-bar {
    background: var(--saffron);
    border-bottom: 2px solid var(--green);
    padding: 8px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
}
.top-bar-greet {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 0.85rem;
    color: var(--white);
    letter-spacing: 0.04em;
    font-weight: 600;
}
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.top-bar-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.92);
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
}
.top-bar-item:hover { color: var(--white); text-decoration: underline; }
.top-bar-item .tbi { font-size: 0.85rem; }

/* ── NAV ── */
nav {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 96px;
    background: var(--white);
    backdrop-filter: blur(8px);
    border-bottom: 3px solid var(--green);
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo-img {
    height: 78px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    background: var(--cream);
    padding: 4px 8px;
    border: 1px solid var(--border);
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
    font-family: 'Marcellus', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink-2);
    line-height: 1.15;
    letter-spacing: 0.02em;
}
.nav-logo-sub {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--saffron);
    margin-top: 4px;
}

nav ul { list-style: none; display: flex; gap: 30px; align-items: center; }
nav ul a {
    color: var(--ink-2);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: color 0.2s;
    position: relative;
}
nav ul a:hover { color: var(--saffron); }
nav ul a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--saffron);
    transition: width 0.25s ease;
}
nav ul a:hover::after { width: 100%; }

.nav-cta {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--green) 100%);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600 !important;
    border: none;
    box-shadow: 0 4px 14px rgba(19,136,8,0.2);
}
.nav-cta:hover { opacity: 0.88; color: var(--white) !important; }
.nav-cta::after { display: none; }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background:
        radial-gradient(ellipse at 80% 30%, rgba(19,136,8,0.08) 0%, transparent 55%),
        linear-gradient(160deg, var(--saffron-bg) 0%, var(--white) 50%, var(--green-bg) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 170px 5vw 80px;
    border-bottom: 4px solid var(--green);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--saffron) 33%, var(--white) 33%, var(--white) 66%, var(--green) 66%);
    pointer-events: none;
    z-index: 3;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(232,130,26,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero-inner { 
    max-width: 100%; 
    padding: 0 5vw;
    position: relative; 
    z-index: 2; 
    width: 100%; 
    text-align: left;
}

.hero-invocation {
    display: inline-block;
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 0.95rem;
    color: var(--saffron);
    letter-spacing: 0.05em;
    margin-bottom: 22px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(232,130,26,0.3);
}

.hero-identity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 30px;
    width: 100%;
    flex-wrap: wrap;
}

.hero-logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    background: var(--white);
    padding: 6px 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 2px solid var(--border);
    flex-shrink: 0;
}

.hero-company-name { 
    display: flex; 
    flex-direction: column; 
    align-items: center;
}
.hero-company-main {
    font-family: 'Marcellus', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--ink-2);
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-align: center;
}
.hero-company-hindi {
    font-family: 'Yatra One', serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--saffron);
    margin-top: 6px;
    letter-spacing: 0.02em;
    text-align: center;
}
.hero-company-sub {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--green);
    letter-spacing: 0.18em;
    margin-top: 4px;
    text-transform: uppercase;
    text-align: center;
}

.hero-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--green));
    margin-bottom: 26px;
    border-radius: 2px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid rgba(19,136,8,0.3);
    background: var(--green-bg);
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 26px;
}
.hero-eyebrow .hi { font-size: 0.85rem; letter-spacing: 0.02em; margin-left: 8px; text-transform: none; }

.hero h1 {
    font-family: 'Marcellus', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink-2);
    margin-bottom: 14px;
}
.hero h1 em { font-style: normal; color: var(--saffron); }

.hero-h1-hindi {
    display: block;
    font-family: 'Yatra One', serif;
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    color: var(--green);
    margin-bottom: 22px;
    letter-spacing: 0.02em;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 100%;
    margin-bottom: 40px;
    line-height: 1.8;
    text-align: left;
    padding-right: 0;
}

.hero-badges { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 10px; 
    margin-bottom: 38px; 
    justify-content: flex-start;
}
.hero-badge {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ink-2);
    background: var(--white);
    border: 1px solid var(--border);
    padding: 7px 14px;
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.hero-badge .hi {
    font-size: 0.8rem;
    margin-right: 6px;
    color: var(--saffron);
}

.hero-slogan {
    max-width: 100%;
    margin: 30px 0 20px 0;
    text-align: left;
}
.hero-slogan span {
    display: inline-block;
    font-family: 'Marcellus', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--ink-2);
    background: var(--saffron-bg);
    padding: 10px 24px;
    border-radius: 4px;
    border-left: 5px solid var(--saffron);
    box-shadow: 0 2px 12px rgba(232,130,26,0.15);
}
.hero-slogan span span {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    font-weight: 400;
    color: var(--green);
    letter-spacing: 0.03em;
    margin-top: 4px;
    border-left: none;
    padding: 0;
    box-shadow: none;
    background: transparent;
}

.hero-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.cta-card {
    display: flex;
    flex-direction: column;
    padding: 24px 22px 35px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid transparent;
    min-height: 255px;
    max-height: 255px;
    height: 255px;
    width: 100%;
}

.cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(0,0,0,0.12);
}

.cta-card.retail {
    background: linear-gradient(135deg, var(--green) 0%, #0D6B06 100%);
    color: var(--white);
    border: 1px solid rgba(19,136,8,0.4);
}

.cta-card.wholesale {
    background: linear-gradient(135deg, var(--saffron) 0%, #C96A10 100%);
    color: var(--white);
    border-color: rgba(232,130,26,0.4);
}

.cta-icon { font-size: 1.6rem; margin-bottom: 4px; }
.cta-label { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 2px; opacity: 0.85; }
.cta-title { font-family: 'Marcellus', serif; font-size: 1rem; font-weight: 400; margin-bottom: 2px; }
.cta-title-hi { font-family: 'Yatra One', serif; font-size: 0.75rem; margin-bottom: 4px; opacity: 0.9; }
.cta-desc { font-size: 0.7rem; line-height: 1.4; opacity: 0.9; margin-bottom: 8px; flex: 1; }
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 3px;
    align-self: flex-start;
    color: var(--white);
    margin-top: auto;
}

.cta-card.retail .cta-desc {
    font-size: 0.7rem;
    line-height: 1.4;
    flex: 1;
}

.cta-card.retail .cta-btn {
    margin-top: auto;
    font-size: 0.7rem;
    padding: 6px 14px;
}

.wholesale-links {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: auto;
    width: 100%;
}

.wholesale-link-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 8px 6px;
    background: rgba(255,255,255,0.12);
    border-radius: 4px;
    transition: background 0.2s;
    text-decoration: none;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.08);
    flex: 1;
    text-align: center;
}

.wholesale-link-item:hover {
    background: rgba(255,255,255,0.25);
}

.wholesale-link-item .link-icon {
    font-size: 1.2rem;
}

.wholesale-link-item .link-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wholesale-link-item .link-title {
    font-size: 0.7rem;
    font-weight: 600;
    line-height: 1.2;
}

.wholesale-link-item .link-sub {
    font-size: 0.6rem;
    opacity: 0.8;
    font-weight: 400;
}

.wholesale-link-item .link-arrow {
    display: none;
}

section { padding: 100px 5vw; }
.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 10px;
}
.section-label .hi {
    font-family: 'Noto Serif Devanagari', serif;
    letter-spacing: 0.02em;
    font-size: 0.9rem;
    text-transform: none;
    color: var(--green);
    margin-right: 8px;
}
.section-title {
    font-family: 'Marcellus', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.9rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--ink-2);
}
.section-title-hi {
    font-family: 'Yatra One', serif;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    color: var(--saffron);
    margin-bottom: 20px;
}
.section-sub { color: var(--muted); font-size: 1rem; max-width: 600px; line-height: 1.8; }

.ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 14px 0 30px;
}
.ornament .line { flex: 0 0 60px; height: 1px; background: var(--saffron); }
.ornament .dia { width: 8px; height: 8px; background: var(--saffron); transform: rotate(45deg); }

/* ── 2 TESTIMONIAL CARDS - BIGGER SQUARE ── */
#products .section-header-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

#products .section-header-content {
    flex: 1;
    min-width: 280px;
}

/* ── TESTIMONIAL GRID - BIGGER ── */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    flex: 0 0 600px;  /* ← Increased from 440px to 480px */
    align-self: flex-start;
    margin-top: 8px;
}

/* ── TESTIMONIAL CARD - BIGGER SQUARE ── */
.testimonial-card {
    background: var(--white);
    border-radius: 4px;
    padding: 24px 20px 18px;  /* ← Increased padding */
    border: 1px solid var(--border);
    border-top: 3px solid var(--saffron);
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 320px;  /* ← Increased from 208px */
    min-width: 200px;
}

.testimonial-card:nth-child(2) {
    border-top-color: var(--green);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(19,136,8,0.3);
    border-top-color: var(--green);
    box-shadow: 0 12px 32px rgba(19,136,8,0.1);
}

.testimonial-card:nth-child(2):hover {
    border-top-color: var(--saffron);
}

/* ── Stars - BIGGER ── */
.testimonial-card .stars {
    color: var(--gold);
    font-size: 1rem;  /* ← Increased from 0.75rem */
    letter-spacing: 3px;
    margin-bottom: 8px;
    flex-shrink: 0;
}

/* ── EMPTY STARS ── */
.testimonial-card .stars .empty-star {
    color: #d0d0d0 !important;
}

.testimonial-card .stars .full-star {
    color: var(--gold) !important;
}

/* ── Review text - BIGGER ── */
.testimonial-card .review-text {
    font-size: 0.9rem;  /* ← Increased from 0.75rem */
    color: var(--ink-2);
    line-height: 1.6;
    font-style: italic;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-card .review-text::before {
    content: '"';
    color: var(--saffron);
    font-size: 1.1rem;
    font-weight: 700;
}

.testimonial-card .review-text::after {
    content: '"';
    color: var(--saffron);
    font-size: 1.1rem;
    font-weight: 700;
}

/* ── Author section - BIGGER ── */
.testimonial-card .author-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

.testimonial-card .author-avatar {
    width: 30px;  /* ← Increased from 28px */
    height: 30px;  /* ← Increased from 28px */
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron-bg), var(--green-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;  /* ← Increased */
    font-weight: 700;
    color: var(--saffron);
    flex-shrink: 0;
    border: 2px solid var(--white);
    box-shadow: 0 2px 8px rgba(232,130,26,0.08);
}

.testimonial-card .author-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.testimonial-card .author-name {
    font-size: 0.6rem;  /* ← Increased from 0.65rem */
    font-weight: 600;
    color: var(--ink-2);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-card .author-title {
    font-size: 0.4rem;  /* ← Increased from 0.5rem */
    color: var(--muted);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ── Rating badge - BIGGER ── */
.testimonial-card .rating-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
    flex-shrink: 0;
}

.testimonial-card .rating-badge .score {
    font-size: 0.7rem;  /* ← Increased from 0.6rem */
    font-weight: 600;
    color: var(--green);
}

.testimonial-card .rating-badge .score span {
    color: var(--gold);
}

.testimonial-card .rating-badge .verified {
    font-size: 0.6rem;  /* ← Increased from 0.5rem */
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.testimonial-card .rating-badge .verified::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .testimonial-grid {
        flex: 0 0 380px;
        gap: 18px;
    }
    .testimonial-card {
        max-width: 180px;
        min-width: 160px;
        padding: 18px 14px 14px;
    }
    .testimonial-card .review-text {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
    }
    .testimonial-card .author-avatar {
        width: 28px;
        height: 28px;
        font-size: 0.6rem;
    }
    .testimonial-card .author-name {
        font-size: 0.7rem;
    }
    .testimonial-card .author-title {
        font-size: 0.5rem;
    }
    .testimonial-card .stars {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .testimonial-grid {
        display: none;
    }
}
#products { background: var(--cream); position: relative; }
#products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--white), var(--green));
}

.products-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.product-card {
    padding: 36px 28px;
    border-radius: 4px;
    border: 1px solid var(--border);
    border-top: 3px solid var(--saffron);
    background: var(--white);
    transition: transform 0.25s, border-color 0.2s, box-shadow 0.2s;
}
.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(19,136,8,0.3);
    border-top-color: var(--green);
    box-shadow: 0 12px 32px rgba(19,136,8,0.1);
}

/* ── PRODUCT ICON ANIMATIONS (Continuous) ── */
.product-icon {
    font-size: 2.5rem;
    margin-bottom: 14px;
    display: inline-block;
    transition: all 0.3s ease;
}

/* ── Individual icon animations ── */

/* 1. Prayer Items - Gentle floating + glow */
.product-card:nth-child(1) .product-icon {
    animation: prayerFloat 4s ease-in-out infinite;
}

@keyframes prayerFloat {
    0% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 0px rgba(232,130,26,0)); }
    50% { transform: translateY(-8px) scale(1.05); filter: drop-shadow(0 8px 20px rgba(232,130,26,0.2)); }
    100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 0px rgba(232,130,26,0)); }
}

/* 2. Indian Grocery - Gentle rotation + pulse */
.product-card:nth-child(2) .product-icon {
    animation: groceryPulse 5s ease-in-out infinite;
}

@keyframes groceryPulse {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-5deg) scale(1.08); }
    50% { transform: rotate(0deg) scale(1); }
    75% { transform: rotate(5deg) scale(1.08); }
    100% { transform: rotate(0deg) scale(1); }
}

/* 3. Festival Items - Bounce + sparkle */
.product-card:nth-child(3) .product-icon {
    animation: festivalBounce 3.5s ease-in-out infinite;
}

@keyframes festivalBounce {
    0% { transform: translateY(0) scale(1); }
    30% { transform: translateY(-12px) scale(1.1); }
    50% { transform: translateY(0) scale(1); }
    70% { transform: translateY(-6px) scale(1.05); }
    100% { transform: translateY(0) scale(1); }
}

/* 4. Well-Being Products - Gentle sway + glow */
.product-card:nth-child(4) .product-icon {
    animation: wellbeingSway 4.5s ease-in-out infinite;
}

@keyframes wellbeingSway {
    0% { transform: rotate(-3deg) scale(1); filter: drop-shadow(0 0 0px rgba(19,136,8,0)); }
    25% { transform: rotate(3deg) scale(1.04); filter: drop-shadow(0 4px 15px rgba(19,136,8,0.15)); }
    50% { transform: rotate(-3deg) scale(1); filter: drop-shadow(0 0 0px rgba(19,136,8,0)); }
    75% { transform: rotate(3deg) scale(1.04); filter: drop-shadow(0 4px 15px rgba(19,136,8,0.15)); }
    100% { transform: rotate(-3deg) scale(1); filter: drop-shadow(0 0 0px rgba(19,136,8,0)); }
}

/* ── HOVER EFFECTS (Adds to the continuous animation) ── */
.product-card:hover .product-icon {
    animation-duration: 0.8s !important;
    animation-iteration-count: infinite !important;
}

.product-card:nth-child(1):hover .product-icon {
    animation: prayerFloatHover 0.8s ease-in-out infinite;
}

@keyframes prayerFloatHover {
    0% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 0px rgba(232,130,26,0)); }
    50% { transform: translateY(-12px) scale(1.15); filter: drop-shadow(0 8px 30px rgba(232,130,26,0.3)); }
    100% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 0px rgba(232,130,26,0)); }
}

.product-card:nth-child(2):hover .product-icon {
    animation: groceryPulseHover 0.8s ease-in-out infinite;
}

@keyframes groceryPulseHover {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-8deg) scale(1.15); }
    50% { transform: rotate(0deg) scale(1); }
    75% { transform: rotate(8deg) scale(1.15); }
    100% { transform: rotate(0deg) scale(1); }
}

.product-card:nth-child(3):hover .product-icon {
    animation: festivalBounceHover 0.6s ease-in-out infinite;
}

@keyframes festivalBounceHover {
    0% { transform: translateY(0) scale(1); }
    30% { transform: translateY(-16px) scale(1.15); }
    50% { transform: translateY(0) scale(1); }
    70% { transform: translateY(-8px) scale(1.1); }
    100% { transform: translateY(0) scale(1); }
}

.product-card:nth-child(4):hover .product-icon {
    animation: wellbeingSwayHover 0.8s ease-in-out infinite;
}

@keyframes wellbeingSwayHover {
    0% { transform: rotate(-5deg) scale(1); filter: drop-shadow(0 0 0px rgba(19,136,8,0)); }
    25% { transform: rotate(5deg) scale(1.12); filter: drop-shadow(0 4px 20px rgba(19,136,8,0.2)); }
    50% { transform: rotate(-5deg) scale(1); filter: drop-shadow(0 0 0px rgba(19,136,8,0)); }
    75% { transform: rotate(5deg) scale(1.12); filter: drop-shadow(0 4px 20px rgba(19,136,8,0.2)); }
    100% { transform: rotate(-5deg) scale(1); filter: drop-shadow(0 0 0px rgba(19,136,8,0)); }
}
.product-name {
    font-family: 'Marcellus', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ink-2);
    margin-bottom: 2px;
}
.product-name-hi {
    font-family: 'Yatra One', serif;
    font-size: 0.95rem;
    color: var(--saffron);
    margin-bottom: 12px;
}
.product-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-bg);
    border: 1px solid rgba(19,136,8,0.2);
    padding: 3px 12px;
    border-radius: 2px;
    margin-bottom: 14px;
}
.product-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

/* ── PRODUCTS BANNER WITH HOVER EFFECT ── */
.products-banner {
    margin-top: 48px;
    background: linear-gradient(135deg, var(--saffron-bg) 0%, var(--green-bg) 100%);
    border-radius: 4px;
    padding: 36px 42px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--saffron);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

/* ── Subtle animated background on hover ── */
.products-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(232,130,26,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.products-banner:hover::before {
    opacity: 1;
}

/* ── Shine effect on hover ── */
.products-banner::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 50%;
    height: 50%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255,255,255,0.08) 30%,
        transparent 60%
    );
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.products-banner:hover::after {
    transform: rotate(45deg) translateX(100%);
}

.products-banner:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 16px 48px rgba(232,130,26,0.12);
    border-left-color: var(--green);
    border-color: rgba(19,136,8,0.25);
}

/* ── Number animation ── */
.products-banner .pb-num {
    font-family: 'Marcellus', serif;
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--saffron);
    flex-shrink: 0;
    line-height: 1;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

.products-banner:hover .pb-num {
    transform: scale(1.15);
    color: var(--green);
}

/* ── Text animation ── */
.products-banner .pb-text {
    flex: 1;
    color: var(--ink-2);
    font-size: 0.98rem;
    line-height: 1.6;
    min-width: 220px;
    transition: color 0.3s ease;
}

.products-banner:hover .pb-text {
    color: var(--ink);
}

/* ── Hindi text animation ── */
.products-banner .pb-text-hi {
    display: block;
    font-family: 'Noto Serif Devanagari', serif;
    color: var(--green);
    font-size: 0.92rem;
    margin-top: 4px;
    transition: all 0.3s ease;
}

.products-banner:hover .pb-text-hi {
    color: var(--saffron);
    transform: translateX(4px);
}

/* ── CTA Button animation ── */
.products-banner .pb-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--green) 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 13px 26px;
    border-radius: 2px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

/* ── Button shine effect ── */
.products-banner .pb-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.products-banner:hover .pb-cta::before {
    left: 100%;
}

.products-banner .pb-cta:hover {
    filter: brightness(0.92);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(19,136,8,0.3);
}

/* ── Inner wrapper animation ── */
.products-banner-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.products-banner:hover .products-banner-inner {
    gap: 32px;
}
.pb-num {
    font-family: 'Marcellus', serif;
    font-size: 3.2rem;
    font-weight: 400;
    color: var(--saffron);
    flex-shrink: 0;
    line-height: 1;
}
.pb-text {
    flex: 1;
    color: var(--ink-2);
    font-size: 0.98rem;
    line-height: 1.6;
    min-width: 220px;
}
.pb-text-hi {
    display: block;
    font-family: 'Noto Serif Devanagari', serif;
    color: var(--green);
    font-size: 0.92rem;
    margin-top: 4px;
}
.pb-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--saffron), var(--green));
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 13px 26px;
    border-radius: 2px;
    text-decoration: none;
    white-space: nowrap;
    transition: filter 0.2s;
    flex-shrink: 0;
}
.pb-cta:hover { filter: brightness(0.92); }

/* ── CAROUSEL / SLIDESHOW ── */
.carousel-section {
    padding: 40px 5vw 60px;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
    border-top: 3px solid var(--saffron);
    border-bottom: 3px solid var(--green);
    position: relative;
    overflow: hidden;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: floatCircle 20s ease-in-out infinite alternate;
}

.float-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    background: var(--saffron);
    top: -50px;
    left: -80px;
    animation-delay: 0s;
}

.float-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    background: var(--green);
    bottom: -30px;
    right: -50px;
    animation-delay: 3s;
}

.float-circle:nth-child(3) {
    width: 150px;
    height: 150px;
    background: var(--gold);
    top: 40%;
    right: 10%;
    animation-delay: 6s;
}

.float-circle:nth-child(4) {
    width: 100px;
    height: 100px;
    background: var(--saffron);
    bottom: 30%;
    left: 15%;
    animation-delay: 9s;
}

.float-diamond {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--saffron);
    opacity: 0.12;
    transform: rotate(45deg);
    animation: floatDiamond 25s ease-in-out infinite alternate;
}

.float-diamond:nth-child(5) {
    top: 20%;
    left: 30%;
    animation-delay: 1s;
    width: 60px;
    height: 60px;
}

.float-diamond:nth-child(6) {
    bottom: 25%;
    right: 20%;
    animation-delay: 5s;
    width: 35px;
    height: 35px;
}

.animated-wave {
    position: absolute;
    left: -10%;
    right: -10%;
    height: 200px;
    border-radius: 50%;
    opacity: 0.08;
    animation: waveMove 15s ease-in-out infinite alternate;
}

.animated-wave:nth-child(7) {
    background: var(--saffron);
    bottom: -100px;
    animation-delay: 0s;
}

.animated-wave:nth-child(8) {
    background: var(--green);
    bottom: -150px;
    animation-delay: 5s;
    height: 250px;
}

@keyframes floatCircle {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 50px) scale(0.9); }
    100% { transform: translate(30px, 20px) scale(1.05); }
}

@keyframes floatDiamond {
    0% { transform: rotate(45deg) translate(0, 0); }
    50% { transform: rotate(90deg) translate(30px, -20px); }
    100% { transform: rotate(135deg) translate(-20px, 30px); }
}

@keyframes waveMove {
    0% { transform: translateX(0) scaleY(1); }
    25% { transform: translateX(5%) scaleY(1.2); }
    50% { transform: translateX(-5%) scaleY(0.8); }
    75% { transform: translateX(3%) scaleY(1.1); }
    100% { transform: translateX(0) scaleY(1); }
}

.carousel-container {
    max-width: 980px;
    margin: 30px auto 0;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
    background: var(--white);
    z-index: 1;
}

.carousel-slides {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    aspect-ratio: 21 / 9;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    max-height: 400px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px 0 16px;
    background: var(--white);
    position: relative;
    z-index: 2;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: var(--saffron-2);
}

.carousel-dot.active {
    background: var(--saffron);
    border-color: var(--saffron);
    transform: scale(1.2);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.85);
    color: var(--ink-2);
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    z-index: 10;
    line-height: 1;
}

.carousel-btn:hover {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
    left: 16px;
}

.carousel-btn.next {
    right: 16px;
}

/* ── RESPONSIVE CAROUSEL ── */
@media (max-width: 768px) {
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    .carousel-btn.prev { left: 8px; }
    .carousel-btn.next { right: 8px; }
    .carousel-slide {
        aspect-ratio: 4 / 3;
    }
    .carousel-slide img {
        max-height: 300px;
    }
    .carousel-container {
        max-width: 100%;
        margin: 20px auto 0;
        border-radius: 8px;
    }
    .carousel-section {
        padding: 40px 3vw 50px;
    }
    .carousel-dots {
        gap: 8px;
        padding: 14px 0 12px;
    }
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-slide {
        aspect-ratio: 3 / 4;
    }
    .carousel-slide img {
        max-height: 250px;
    }
    .carousel-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    .carousel-btn.prev { left: 4px; }
    .carousel-btn.next { right: 4px; }
    .carousel-dot {
        width: 8px;
        height: 8px;
        gap: 6px;
    }
}

/* ── BRANDS SECTION ── */
#brands {
    background: linear-gradient(180deg, var(--saffron-bg) 0%, var(--white) 50%, var(--green-bg) 100%);
    position: relative;
    border-top: 3px solid var(--saffron);
    border-bottom: 3px solid var(--green);
}
#brands .section-title,
#brands .section-title-hi { color: var(--ink-2); }
#brands .section-title-hi { color: var(--saffron); }
#brands .section-label { color: var(--saffron); }
#brands .section-label .hi { color: var(--green); }
#brands .section-sub { color: var(--muted); }
#brands .ornament .line { background: var(--saffron); }

.brands-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

/* ── BASE BRAND CARD ── */
.brand-card {
    padding: 36px 28px;
    border-radius: 4px;
    border: 1px solid var(--border);
    border-top: 3px solid var(--saffron);
    background: var(--white);
    transition: transform 0.25s, border-color 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.brand-card:hover {
    transform: translateY(-6px);
    border-color: rgba(19,136,8,0.3);
    border-top-color: var(--green);
    box-shadow: 0 16px 40px rgba(19,136,8,0.12);
}

.brand-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 14px;
    position: relative;
}

.brand-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    display: block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-card:hover .brand-logo {
    box-shadow: 0 12px 32px rgba(232,130,26,0.2);
}

.brand-name {
    font-family: 'Marcellus', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ink-2);
    margin-bottom: 2px;
}
.brand-name-hi {
    font-family: 'Yatra One', serif;
    font-size: 0.95rem;
    color: var(--saffron);
    margin-bottom: 10px;
}
.brand-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-bg);
    border: 1px solid rgba(19,136,8,0.2);
    padding: 3px 12px;
    border-radius: 2px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.brand-card:hover .brand-badge {
    background: var(--saffron-bg);
    border-color: var(--saffron);
    color: var(--saffron);
    transform: scale(1.05);
}

.brand-tag {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.brand-card:hover .brand-tag {
    color: var(--ink-2);
}

/* ── ====== UNIQUE LOGO ANIMATIONS ====== ── */

/* ── 1. JAI KISAN - GROWING/GRAIN ANIMATION ── */
.brand-card[data-testid="brand-jai-kisan"] .brand-logo {
    animation: jaiKisanGrow 4s ease-in-out infinite;
}

@keyframes jaiKisanGrow {
    0% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.04) rotate(-3deg); }
    50% { transform: scale(1.08) rotate(0deg); }
    75% { transform: scale(1.04) rotate(3deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.brand-card[data-testid="brand-jai-kisan"]:hover .brand-logo {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(19,136,8,0.25);
}

/* ── 2. TIRANGA - FLAG WAVING ANIMATION ── */
.brand-card[data-testid="brand-tiranga"] .brand-logo {
    animation: tirangaWave 3s ease-in-out infinite;
    transform-origin: left center;
}

@keyframes tirangaWave {
    0% { transform: perspective(400px) rotateY(0deg) scaleX(1); }
    25% { transform: perspective(400px) rotateY(-8deg) scaleX(1.02); }
    50% { transform: perspective(400px) rotateY(0deg) scaleX(0.98); }
    75% { transform: perspective(400px) rotateY(8deg) scaleX(1.02); }
    100% { transform: perspective(400px) rotateY(0deg) scaleX(1); }
}

.brand-card[data-testid="brand-tiranga"]:hover .brand-logo {
    animation: tirangaWaveFast 0.8s ease-in-out infinite;
    transform-origin: left center;
}

@keyframes tirangaWaveFast {
    0% { transform: perspective(400px) rotateY(0deg); }
    25% { transform: perspective(400px) rotateY(-12deg); }
    50% { transform: perspective(400px) rotateY(0deg); }
    75% { transform: perspective(400px) rotateY(12deg); }
    100% { transform: perspective(400px) rotateY(0deg); }
}

/* ── 3. DEV DRISHTI - DIVINE GLOW + SPINNING CHAKRA ── */
.brand-card[data-testid="brand-dev-dristi"] .brand-logo {
    animation: devDrishtiGlow 5s ease-in-out infinite;
}

@keyframes devDrishtiGlow {
    0% { transform: scale(1); filter: brightness(1) drop-shadow(0 0 0px rgba(232,130,26,0)); }
    33% { transform: scale(1.05); filter: brightness(1.1) drop-shadow(0 0 15px rgba(232,130,26,0.15)); }
    66% { transform: scale(0.95); filter: brightness(0.9) drop-shadow(0 0 5px rgba(232,130,26,0.08)); }
    100% { transform: scale(1); filter: brightness(1) drop-shadow(0 0 0px rgba(232,130,26,0)); }
}

.brand-card[data-testid="brand-dev-dristi"]:hover .brand-logo {
    animation: devDrishtiPulse 0.8s ease-in-out infinite;
}

@keyframes devDrishtiPulse {
    0% { transform: scale(1); filter: brightness(1) drop-shadow(0 0 0px rgba(232,130,26,0)); }
    50% { transform: scale(1.08); filter: brightness(1.2) drop-shadow(0 0 25px rgba(232,130,26,0.25)); }
    100% { transform: scale(1); filter: brightness(1) drop-shadow(0 0 0px rgba(232,130,26,0)); }
}

/* ── 4. TAPASVI - MEDITATION FLOAT + GENTLE SPIN ── */
.brand-card[data-testid="brand-tapasvi"] .brand-logo {
    animation: tapasviFloat 6s ease-in-out infinite;
}

@keyframes tapasviFloat {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-8px) rotate(2deg) scale(1.02); }
    50% { transform: translateY(0) rotate(0deg) scale(0.98); }
    75% { transform: translateY(-4px) rotate(-2deg) scale(1.02); }
    100% { transform: translateY(0) rotate(0deg) scale(1); }
}

.brand-card[data-testid="brand-tapasvi"]:hover .brand-logo {
    animation: tapasviHover 1.2s ease-in-out infinite;
}

@keyframes tapasviHover {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    33% { transform: translateY(-10px) rotate(3deg) scale(1.05); }
    66% { transform: translateY(-5px) rotate(-3deg) scale(1.05); }
    100% { transform: translateY(0) rotate(0deg) scale(1); }
}

/* ── ABOUT ── */
#about { background: var(--cream-2); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.stat-box {
    padding: 22px;
    background: var(--white);
    border-radius: 4px;
    border-left: 4px solid var(--saffron);
    border-top: 1px solid var(--border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

/* ── Subtle background pattern on hover ── */
.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(232,130,26,0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.stat-box:hover::before {
    opacity: 1;
}

/* ── HOVER EFFECTS ── */
.stat-box:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0,0,0,0.10);
    border-left-color: var(--green);
    border-top-color: var(--green);
}

/* ── Individual stat box variations ── */
.stat-box:nth-child(1):hover {
    border-left-color: var(--saffron);
    box-shadow: 0 16px 40px rgba(232,130,26,0.15);
}

.stat-box:nth-child(2):hover {
    border-left-color: var(--green);
    box-shadow: 0 16px 40px rgba(19,136,8,0.15);
}

.stat-box:nth-child(3):hover {
    border-left-color: var(--gold);
    box-shadow: 0 16px 40px rgba(201,162,39,0.15);
}

.stat-box:nth-child(4):hover {
    border-left-color: var(--saffron-2);
    box-shadow: 0 16px 40px rgba(245,165,74,0.15);
}

/* ── Number animation ── */
.stat-num {
    font-family: 'Marcellus', serif;
    font-size: 2.1rem;
    font-weight: 400;
    color: var(--saffron);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

.stat-box:hover .stat-num {
    transform: scale(1.12) translateX(2px);
    color: var(--green);
}

/* ── Description animation ── */
.stat-desc {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 4px;
    transition: color 0.3s ease;
}

.stat-box:hover .stat-desc {
    color: var(--ink-2);
}

.stat-desc .hi {
    display: block;
    font-family: 'Noto Serif Devanagari', serif;
    color: var(--green);
    font-size: 0.82rem;
    margin-top: 2px;
    transition: color 0.3s ease;
}

.stat-box:hover .stat-desc .hi {
    color: var(--saffron);
}

/* ── Add a subtle shine effect ── */
.stat-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255,255,255,0.05) 30%,
        transparent 60%
    );
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.stat-box:hover::after {
    transform: rotate(45deg) translateX(100%);
}
.stat-num { font-family: 'Marcellus', serif; font-size: 2.1rem; font-weight: 400; color: var(--saffron); }
.stat-desc { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }
.stat-desc .hi { display: block; font-family: 'Noto Serif Devanagari', serif; color: var(--green); font-size: 0.82rem; margin-top: 2px; }

.about-visual {
    background: linear-gradient(160deg, var(--saffron-bg) 0%, var(--green-bg) 100%);
    border-radius: 4px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-top: 4px solid var(--saffron);
}
.about-visual-title {
    font-family: 'Marcellus', serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 4px;
    color: var(--ink-2);
}
.about-visual-title-hi {
    font-family: 'Yatra One', serif;
    font-size: 1.05rem;
    color: var(--saffron);
    margin-bottom: 24px;
}
.about-visual ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.about-visual li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--ink);
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(19,136,8,0.2);
}
.about-visual li:last-child { border-bottom: none; padding-bottom: 0; }
.about-visual li::before { content: '✦'; color: var(--saffron); flex-shrink: 0; }

/* ── CONTACT ── */
#contact { background: var(--cream); text-align: center; position: relative; }
#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--white), var(--green));
}
#contact .section-sub { margin: 0 auto 24px; }

.contact-grid { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; margin-top: 30px; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 24px 28px;
    background: var(--white);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--ink);
    border: 1px solid var(--border);
    border-left: 3px solid var(--saffron);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    text-align: left;
    min-width: 240px;
}
.contact-item:hover {
    border-left-color: var(--green);
    border-color: rgba(19,136,8,0.2);
    box-shadow: 0 8px 24px rgba(19,136,8,0.1);
    transform: translateY(-3px);
}
.contact-item-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-item-body strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 2px;
}
.contact-item-body .strong-hi {
    display: block;
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 0.85rem;
    color: var(--green);
    margin-bottom: 8px;
    font-weight: 600;
}
.contact-item-body a { color: var(--saffron); text-decoration: none; font-weight: 500; }
.contact-item-body a:hover { color: var(--green); text-decoration: underline; }
.contact-item-body p { line-height: 1.65; color: var(--ink); }

/* ── FOOTER ── */
footer {
    background: var(--cream);
    color: var(--muted);
    padding: 56px 5vw 32px;
    font-size: 0.84rem;
    border-top: 4px solid var(--saffron);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}
footer a {
    color: var(--saffron);
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
    color: var(--saffron-2);
}
.footer-brand-name {
    font-family: 'Marcellus', serif;
    font-size: 1.4rem;
    color: var(--ink-2);
    font-weight: 400;
    margin-bottom: 2px;
}
.footer-brand-name-hi {
    font-family: 'Yatra One', serif;
    font-size: 1.05rem;
    color: var(--saffron);
    margin-bottom: 12px;
}
.footer-brand-tag {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 18px;
}
.footer-brand-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.75;
}
.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 4px;
}
.footer-col-title-hi {
    font-family: 'Noto Serif Devanagari', serif;
    font-size: 0.85rem;
    color: var(--green);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    font-weight: 500;
}
.footer-contact-list { display: flex; flex-direction: column; gap: 13px; }
.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.55;
}
.footer-contact-row span.ico { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.footer-links a {
    color: var(--muted);
    font-size: 0.86rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--saffron);
    text-decoration: none;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
}
.footer-blessing {
    text-align: center;
    margin-top: 18px;
    font-family: 'Noto Serif Devanagari', serif;
    color: var(--saffron);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .hero-cta-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .cta-card {
        min-height: 220px;
        max-height: 220px;
        height: 220px;
        padding: 20px 18px 26px 18px;
    }
    .hero-desc {
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    nav ul { display: none; }
    .hero-cta-row { 
        grid-template-columns: 1fr; 
        gap: 16px;
    }
    .cta-card {
        min-height: 200px;
        max-height: 200px;
        height: 200px;
        padding: 18px 16px 24px 16px;
    }
    .wholesale-links {
        flex-direction: row;
        gap: 8px;
    }
    .wholesale-link-item {
        padding: 6px 4px;
    }
    .wholesale-link-item .link-title {
        font-size: 0.65rem;
    }
    .wholesale-link-item .link-sub {
        font-size: 0.55rem;
    }
    .wholesale-link-item .link-icon {
        font-size: 1rem;
    }
    .cta-icon { font-size: 1.4rem; }
    .cta-title { font-size: 0.9rem; }
    .cta-title-hi { font-size: 0.7rem; }
    .cta-desc { font-size: 0.65rem; }
    .cta-btn { font-size: 0.65rem; padding: 5px 12px; }
    .hero-desc {
        padding-right: 0;
        font-size: 0.95rem;
    }
    .hero-identity {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .hero-logo-img {
        height: 80px;
    }
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .top-bar { 
        justify-content: center; 
        text-align: center;
        padding: 6px 4vw;
    }
    .top-bar-greet { font-size: 0.7rem; }
    .top-bar-item { font-size: 0.65rem; }
    .brands-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
    .brand-card { padding: 24px 16px; }
    .brand-logo { width: 60px; height: 60px; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .product-card { padding: 24px 18px; }
    .product-desc { font-size: 0.8rem; }
    .hero-slogan span {
        padding: 8px 16px;
        font-size: 1rem;
    }
    .hero-slogan span span {
        font-size: 0.7rem;
    }
    section { padding: 60px 5vw; }
    .hero { padding: 150px 4vw 60px; }
    .contact-grid { flex-direction: column; align-items: center; }
    .contact-item { width: 100%; max-width: 400px; }
    .products-banner { padding: 24px 20px; }
    .pb-num { font-size: 2.4rem; }
    .pb-text { font-size: 0.85rem; }
    .pb-cta { font-size: 0.75rem; padding: 10px 18px; }
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
    .carousel-btn.prev { left: 8px; }
    .carousel-btn.next { right: 8px; }
    .carousel-slide {
        aspect-ratio: 4 / 3;
    }
    .carousel-section {
        padding: 60px 5vw 70px;
    }
}

@media (max-width: 480px) {
    .cta-card {
        min-height: 190px;
        max-height: 190px;
        height: 190px;
        padding: 14px 14px 20px 14px;
    }
    .cta-icon { font-size: 1.2rem; margin-bottom: 2px; }
    .cta-label { font-size: 0.5rem; }
    .cta-title { font-size: 0.8rem; }
    .cta-title-hi { font-size: 0.6rem; margin-bottom: 2px; }
    .cta-desc { font-size: 0.6rem; margin-bottom: 4px; }
    .cta-btn { font-size: 0.6rem; padding: 4px 10px; }
    .wholesale-link-item .link-title { font-size: 0.6rem; }
    .wholesale-link-item .link-sub { font-size: 0.5rem; }
    .wholesale-link-item .link-icon { font-size: 0.9rem; }
    .wholesale-link-item { padding: 4px 3px; gap: 1px; }
    .wholesale-links { gap: 6px; }
    .hero-company-main { font-size: 1.6rem; }
    .hero-company-hindi { font-size: 0.9rem; }
    .hero h1 { font-size: 1.8rem; }
    .hero-desc { font-size: 0.85rem; }
    .hero-badges { gap: 6px; }
    .hero-badge { font-size: 0.65rem; padding: 4px 10px; }
    .products-grid { grid-template-columns: 1fr; }
    .brand-logo { width: 50px; height: 50px; }
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
