@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* =================== RESET & ROOT =================== */
:root {
    --gold:          #d4a017;
    --gold-dark:     #b8860b;
    --gold-mid:      #daa520;
    --gold-light:    #fff8e7;
    --gold-pale:     #fdf3d6;
    --brand-red:     #c1121f;
    --brand-red-dark:#780001;
    --amber:         #ffb703;
    --amber-glow:    rgba(255,183,3,.35);
    --text-dark:     #1c1c1c;
    --text-mid:      #444;
    --text-muted:    #888;
    --bg:            #faf6ef;
    --white:         #fff;
    --radius-sm:     8px;
    --radius-md:     16px;
    --radius-lg:     28px;
    --shadow-sm:     0 2px 12px rgba(0,0,0,.06);
    --shadow-md:     0 8px 32px rgba(0,0,0,.10);
    --shadow-lg:     0 24px 64px rgba(0,0,0,.14);
    --shadow-gold:   0 8px 32px rgba(200,134,10,.25);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text-dark);
    line-height: 1.7;
}
a { text-decoration: none; color: inherit; }

/* =================== NAVBAR =================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-bottom: 2px solid rgba(200,134,10,.18);
    padding: 0 2rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--brand-red);
    display: flex;
    align-items: center;
    gap: .5rem;
    letter-spacing: .3px;
}
.navbar .logo strong { color: var(--gold); }
.logo-img { height: 54px; width: auto; object-fit: contain; }
.nav-tagline {
    font-size: .8rem;
    color: var(--gold-dark);
    font-weight: 500;
    font-style: italic;
    opacity: .85;
}
@media (max-width: 600px) { .nav-tagline { display: none; } }

/* =================== HERO =================== */
.hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('../images/hero_bg_wide.png') center/cover no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(120, 0, 1, 0.9) 0%, rgba(193, 18, 31, 0.5) 60%, transparent 100%);
    z-index: 1;
}
.hero-grains {
    position: absolute;
    right: -40px;
    bottom: -60px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(200,134,10,.12) 0%, transparent 65%);
    border-radius: 50%;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(200,134,10,.18);
    color: #f5c842;
    padding: .38rem 1.1rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .6px;
    margin-bottom: 1rem;
    border: 1px solid rgba(200,134,10,.35);
}
.badge-dot {
    width: 8px; height: 8px;
    background: #f5c842;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(.8); }
}
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    max-width: 620px;
}
.hero h1 span {
    background: linear-gradient(90deg, #f5c842, #e8960a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-content > p {
    font-size: 1.1rem;
    color: rgba(255,255,255,.78);
    max-width: 520px;
    margin-bottom: 0.8rem;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    color: #fff;
    padding: .9rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: transform .2s, box-shadow .2s;
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(200,134,10,.45); }
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: rgba(255,255,255,.1);
    color: #fff;
    padding: .9rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    border: 1px solid rgba(255,255,255,.25);
    transition: background .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.hero-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.2);
}
.hero-stat .num {
    font-size: 1.7rem;
    font-weight: 800;
    color: #f5c842;
}
.hero-stat .lbl {
    font-size: .7rem;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* =================== TRUST BAR =================== */
.trust-bar {
    background: linear-gradient(90deg, var(--brand-red-dark), var(--brand-red));
    padding: .9rem 2rem;
}
.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.85);
    font-size: .85rem;
    font-weight: 500;
}
.trust-icon { font-size: 1rem; }
.trust-sep { color: rgba(200,134,10,.5); font-size: 1.2rem; }

/* =================== PRODUCTS SECTION =================== */
.products-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
}
.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-badge {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--gold-dark);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: .3rem .9rem;
    border-radius: 50px;
    margin-bottom: 1rem;
    border: 1px solid rgba(200,134,10,.2);
}
.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-red);
    margin-bottom: .5rem;
}
.section-header p {
    color: var(--text-muted);
    font-size: 1rem;
}
.section-divider {
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--amber));
    border-radius: 2px;
    margin: .8rem auto 0;
}

/* Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(200,134,10,.1);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
    position: relative;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-gold); }
.card-ribbon {
    position: absolute;
    top: 14px;
    left: -2px;
    background: linear-gradient(135deg, var(--brand-red-dark), var(--brand-red));
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: .25rem .8rem .25rem .7rem;
    border-radius: 0 4px 4px 0;
    z-index: 2;
}
.card-image {
    background: linear-gradient(145deg, #fdf8ee, #fff7dc);
    aspect-ratio: 3/4;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem;
}
.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .4s;
}
.card:hover .card-image img { transform: scale(1.07); }
.card-body {
    padding: 1.4rem 1.6rem 1.7rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.card-body h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: .2rem;
    color: var(--brand-red);
}
.card-body .subtitle {
    font-size: .85rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: .7rem;
}
.card-body .card-desc {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 1.4rem;
    line-height: 1.5;
}
.card-body .view-btn {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    color: #fff;
    padding: .7rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: .9rem;
    transition: opacity .2s, transform .2s;
}
.card-body .view-btn:hover { opacity: .9; transform: translateY(-1px); }

/* =================== ABOUT STRIP =================== */
.about-strip {
    background: linear-gradient(135deg, var(--gold-pale) 0%, #fff9e6 100%);
    border-top: 2px solid rgba(200,134,10,.15);
    border-bottom: 2px solid rgba(200,134,10,.15);
    padding: 1.8rem 2rem;
}
.about-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.about-text h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--brand-red);
    margin-bottom: .3rem;
}
.about-text p {
    font-size: .9rem;
    color: var(--text-mid);
}
.hindi-tagline {
    font-size: 1rem;
    color: var(--gold-dark);
    font-weight: 700;
    line-height: 1.6;
    text-align: right;
}

/* =================== SITE FOOTER =================== */
.site-footer {
    background: var(--brand-red-dark);
    color: rgba(255,255,255,.55);
    text-align: center;
    padding: 2.5rem;
    font-size: .88rem;
    margin-top: 0;
}

/* =================== PRODUCT DETAIL PAGE =================== */
body.product-page {
    background: linear-gradient(180deg, #fdf6e6 0%, #faf6ef 300px);
}
.pd-wrapper {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    color: var(--text-muted);
    padding: 0.8rem 0;
}
.breadcrumb a { color: var(--gold-dark); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.bc-sep { color: var(--gold-mid); }
.product-main { padding-bottom: 1rem; }

/* Big product card */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    overflow: hidden;
    border: 1px solid rgba(200,134,10,.1);
}

/* Image panel */
.product-img-panel {
    background: linear-gradient(145deg, #fdf8ee, #fff7dc);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem 2.5rem;
    position: relative;
}
.img-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(200,134,10,.15) 0%, transparent 70%);
    border-radius: 50%;
}
.product-img-panel img {
    max-width: 100%;
    max-height: 370px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    cursor: zoom-in;
    transition: transform .3s;
    filter: drop-shadow(0 10px 28px rgba(0,0,0,.15));
    position: relative;
    z-index: 1;
}
.product-img-panel img:hover { transform: scale(1.03); }
.zoom-hint {
    margin-top: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    color: var(--gold-dark);
    background: rgba(200,134,10,.1);
    padding: .3rem .9rem;
    border-radius: 50px;
    user-select: none;
    cursor: pointer;
    z-index: 1;
}
.img-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: .25rem .75rem;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(200,134,10,.35);
}

/* Info panel */
.product-info-panel {
    padding: 1.5rem 2.5rem;
    border-left: 1px solid rgba(200,134,10,.1);
}
.product-info-panel .category-tag {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--brand-red);
    background: rgba(193, 18, 31, 0.08);
    padding: .28rem .75rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: .9rem;
    border: 1px solid rgba(193, 18, 31, 0.15);
}
.product-info-panel h1 {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--brand-red);
    line-height: 1.1;
    margin-bottom: .5rem;
}
.product-tagline {
    font-size: .95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.product-packing {
    font-size: .95rem;
    color: var(--text-mid);
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: .45rem;
    font-weight: 500;
}

/* Details Table */
.details-box {
    background: var(--gold-pale);
    border: 1px solid rgba(200,134,10,.2);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 0.8rem;
}
.details-box-header {
    background: linear-gradient(135deg, var(--brand-red-dark), var(--brand-red));
    color: #fff;
    padding: .75rem 1.3rem;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: .6rem;
}
.details-table {
    width: 100%;
    border-collapse: collapse;
}
.details-table tr { border-bottom: 1px solid rgba(200,134,10,.12); }
.details-table tr:last-child { border-bottom: none; }
.details-table tr:nth-child(even) { background: rgba(255,255,255,.7); }
.details-table tr:nth-child(odd) { background: rgba(253,243,214,.5); }
.details-table td {
    padding: .5rem 1rem;
    font-size: .9rem;
    vertical-align: middle;
}
.details-table td:first-child {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: .77rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    width: 40%;
}
.details-table td:last-child {
    color: var(--text-dark);
    font-weight: 500;
}


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

/* Large tablet / small desktop — ≤1100px */
@media (max-width: 1100px) {
    .hero-content { padding: 3.5rem 1.5rem; }
    .products-section { padding: 3.5rem 1.5rem; }
    .pd-wrapper { padding: 0 1.5rem 4rem; }
    .trust-bar-inner { gap: 1rem; }
}

/* Tablet — ≤860px */
@media (max-width: 860px) {
    /* Navbar */
    .navbar { padding: 0 1.2rem; }
    .nav-tagline { font-size: .72rem; }

    /* Hero */
    .hero { min-height: 480px; }
    .hero h1 { font-size: clamp(1.9rem, 5vw, 2.8rem); }
    .hero-stats { gap: 1.5rem; }
    .hero-actions { gap: .8rem; }

    /* Trust bar wraps */
    .trust-bar { padding: .75rem 1.2rem; }
    .trust-sep { display: none; }
    .trust-bar-inner { gap: .75rem 1.5rem; }

    /* Products grid — 2 columns on tablet */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }

    /* About strip */
    .about-strip-inner { flex-direction: column; text-align: center; }
    .hindi-tagline { text-align: center; }

    /* Product detail card stacks */
    .product-card { grid-template-columns: 1fr; }
    .product-img-panel { padding: 2.5rem 2rem; }
    .product-info-panel { padding: 2rem; border-left: none; border-top: 1px solid rgba(200,134,10,.12); }
    .product-info-panel h1 { font-size: 2rem; }
    .img-badge { top: 12px; right: 12px; }
}

/* Mobile — ≤600px */
@media (max-width: 600px) {
    /* Navbar: hide tagline */
    .nav-tagline { display: none; }
    .navbar .logo { font-size: 1rem; }

    /* Hero */
    .hero { min-height: 420px; }
    .hero-content { padding: 3rem 1.2rem; }
    .hero h1 { font-size: 2rem; max-width: 100%; }
    .hero-content > p { font-size: 1rem; }
    .hero-badge { font-size: .73rem; }
    .hero-stats { gap: .9rem 1.5rem; flex-wrap: wrap; }
    .hero-divider { display: none; }
    .hero-stat .num { font-size: 1.6rem; }
    .btn-primary, .btn-ghost { width: 100%; justify-content: center; padding: .85rem 1rem; }
    .hero-actions { flex-direction: column; }

    /* Trust bar — 2 per row */
    .trust-bar-inner { justify-content: flex-start; }

    /* Products — single column */
    .products-grid { grid-template-columns: 1fr; gap: 1.2rem; }
    .products-section { padding: 3rem 1.2rem; }
    .section-header h2 { font-size: 1.7rem; }

    /* Product detail */
    .pd-wrapper { padding: 0 1rem 3.5rem; }
    .product-info-panel { padding: 1.5rem; }
    .product-info-panel h1 { font-size: 1.7rem; }
    .details-table td { padding: .7rem 1rem; font-size: .85rem; }
    .breadcrumb { font-size: .8rem; flex-wrap: wrap; }

    /* Footer */
    .site-footer { padding: 1.8rem 1.2rem; font-size: .8rem; }
}

/* Small phones — ≤400px */
@media (max-width: 400px) {
    .hero h1 { font-size: 1.7rem; }
    .hero-content > p { font-size: .9rem; }
    .navbar .logo span { font-size: .9rem; }
    .product-info-panel h1 { font-size: 1.5rem; }
    .details-table td:first-child { width: 45%; }
    .about-strip { padding: 1.8rem 1rem; }
}

/* =================== LIGHTBOX =================== */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.94);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
    max-width: 92vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 80px rgba(200,134,10,.25);
}
.lb-close {
    position: absolute;
    top: 18px;
    right: 26px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    opacity: .75;
    transition: opacity .2s;
}
.lb-close:hover { opacity: 1; }