/* ── Reset & Base ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&family=Noto+Sans+Devanagari:wght@300;400;500;600;700&family=Noto+Serif+Devanagari:wght@400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --saffron:   #e07b20;       /* deep saffron primary */
    --saffron2:  #f5a133;       /* lighter saffron hover */
    --saffron3:  #fdd08a;       /* pale saffron highlight */
    --forest:    #0d2214;       /* deep forest green bg */
    --forest2:   #142e1c;       /* slightly lighter green */
    --forest3:   #1c4228;       /* green accent surface */
    --cream:     #fdf8ef;       /* warm cream surface */
    --linen:     #f7f0e0;       /* linen card background */
    --ecru:      #ede5d0;       /* ecru muted bg */
    --espresso:  #1c1209;       /* rich espresso text */
    --umber:     #4a3018;       /* warm umber brown */
    --muted:     #8a7a62;       /* muted warm stone */
    --white:     #fffdf5;       /* warm white */
    --blush:     #c4615a;       /* dusty blush accent */
    --radius:    12px;
    --shadow:    0 12px 48px rgba(13,34,20,.28);
    --font-head: 'Noto Serif Devanagari', 'Playfair Display', Georgia, serif;
    --font-body: 'Noto Sans Devanagari', 'DM Sans', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--espresso);
    line-height: 1.85;
}

a { color: var(--saffron); text-decoration: none; }
a:hover { color: var(--blush); }
img { display: block; max-width: 100%; }

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    background: rgba(13,34,20,.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(224,123,32,.3);
    box-shadow: 0 2px 28px rgba(13,34,20,.5);
}
.nav-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px; height: 92px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { height: 84px; width: auto; object-fit: contain; }
.logo-text {
    font-family: var(--font-head);
    font-size: 1.8rem; font-weight: 700;
    color: var(--saffron2); letter-spacing: .4px; white-space: nowrap;
}
.nav-menu { list-style: none; display: flex; gap: 32px; }
.nav-menu a {
    color: rgba(253,248,239,.68); font-size: .82rem; letter-spacing: .5px;
    font-family: var(--font-body); font-weight: 600;
    transition: color .2s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--saffron2); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--saffron2); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    background: linear-gradient(155deg, #060f09 0%, #0d2214 45%, #142e1c 100%);
    position: relative; overflow: hidden;
    padding: 120px 24px 80px;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 65% 60% at 15% 75%, rgba(224,123,32,.20) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 85% 15%, rgba(224,123,32,.12) 0%, transparent 55%),
        radial-gradient(ellipse 40% 40% at 50% 100%, rgba(196,97,90,.08) 0%, transparent 50%);
}
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(60deg, rgba(224,123,32,.04) 0px, rgba(224,123,32,.04) 1px, transparent 1px, transparent 24px),
        repeating-linear-gradient(-60deg, rgba(224,123,32,.04) 0px, rgba(224,123,32,.04) 1px, transparent 1px, transparent 24px);
    pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 860px; }
.hero-logo {
    max-height: 100px; width: auto; margin: 0 auto 28px;
    filter: drop-shadow(0 0 32px rgba(224,123,32,.75));
}
.hero-content h1 {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 5.5vw, 4.6rem);
    color: var(--cream);
    text-shadow: 0 0 60px rgba(224,123,32,.55);
    margin-bottom: 16px; line-height: 1.15; font-weight: 700;
}
.hero-ornament {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    margin: 0 auto 24px;
}
.hero-ornament::before,
.hero-ornament::after {
    content: ''; flex: 1; max-width: 100px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--saffron2));
}
.hero-ornament::after { background: linear-gradient(90deg, var(--saffron2), transparent); }
.hero-ornament span { color: var(--saffron2); font-size: 1.2rem; }
.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: rgba(253,248,239,.75); margin-bottom: 44px; letter-spacing: .1px;
    max-width: 640px; margin-left: auto; margin-right: auto;
}
.hero-btn {
    display: inline-block; padding: 15px 50px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron2));
    background-size: 200% 100%; background-position: left;
    color: var(--forest); font-weight: 700; font-size: .88rem;
    font-family: var(--font-body);
    border-radius: 4px; letter-spacing: .8px;
    transition: transform .2s, box-shadow .2s, background-position .3s;
    box-shadow: 0 4px 24px rgba(224,123,32,.48);
}
.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(224,123,32,.65);
    background-position: right;
    color: var(--forest);
}

/* ── Section titles ────────────────────────────────────────── */
.section-title {
    text-align: center; font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 3rem);
    color: var(--espresso); margin-bottom: 10px; font-weight: 700;
}
.section-title::after {
    content: '';
    display: block; width: 56px; height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--saffron2));
    margin: 14px auto 0; border-radius: 2px;
}
.section-subtitle {
    text-align: center; color: var(--muted);
    font-size: .94rem; letter-spacing: .2px; margin-bottom: 54px;
}

/* ── Category Showcase (Homepage) ──────────────────────────── */
.cat-showcase { padding: 100px 24px; background: var(--forest); }
.cat-showcase-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px;
}
.cat-tile {
    background: var(--forest2);
    border: 1px solid rgba(224,123,32,.22);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: transform .28s, border-color .28s, box-shadow .28s;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 20px rgba(13,34,20,.3);
}

.cat-tile:hover {
    transform: translateY(-8px);
    border-color: rgba(224,123,32,.58);
    box-shadow: 0 20px 48px rgba(224,123,32,.20);
    color: inherit;
}

.cat-tile-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    background: var(--ecru);
    border: 1px solid rgba(224,123,32,.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-tile-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.cat-tile:hover .cat-tile-img-wrapper img {
    transform: scale(1.08);
}

.cat-tile-name {
    font-family: var(--font-head);
    color: var(--saffron2);
    font-size: 1.28rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: .1px;
}

.cat-tile-desc {
    color: rgba(253,248,239,.52);
    font-size: .88rem;
    line-height: 1.75;
    margin-top: auto;
}

/* ── Features ──────────────────────────────────────────────── */
.features { padding: 100px 24px; background: var(--linen); }
.features-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px;
}
.feature-card {
    background: var(--white);
    border: 1px solid rgba(224,123,32,.18);
    border-radius: var(--radius); padding: 38px 28px; text-align: center;
    transition: transform .25s, border-color .25s, box-shadow .25s;
    box-shadow: 0 2px 16px rgba(13,34,20,.07);
}
.feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(224,123,32,.48);
    box-shadow: 0 16px 40px rgba(224,123,32,.16);
}
.feature-icon { font-size: 2.8rem; margin-bottom: 18px; }
.feature-card h3 { font-family: var(--font-head); color: var(--saffron); margin-bottom: 10px; font-size: 1.22rem; font-weight: 700; }
.feature-card p  { color: var(--muted); font-size: .92rem; line-height: 1.78; }

/* ── Products grid ─────────────────────────────────────────── */
.products { padding: 100px 24px; background: var(--cream); }
.products-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 30px;
}
.product-card {
    background: var(--white);
    border: 1px solid rgba(224,123,32,.15);
    border-radius: var(--radius); overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    box-shadow: 0 2px 12px rgba(13,34,20,.09);
}
.product-card:hover {
    transform: translateY(-7px); box-shadow: var(--shadow);
    border-color: rgba(224,123,32,.44);
}
.product-image { aspect-ratio: 4/3; overflow: hidden; background: var(--ecru); }
.product-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .45s; }
.product-card:hover .product-image img { transform: scale(1.07); }
.product-info { padding: 20px; border-top: 2px solid rgba(224,123,32,.15); }
.product-info h3 {
    font-family: var(--font-head); font-size: 1.08rem; color: var(--espresso);
    margin-bottom: 14px; line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
    font-weight: 600;
}
.btn {
    display: inline-block; padding: 9px 24px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron2));
    color: var(--forest); font-size: .83rem; font-weight: 700;
    border-radius: 4px; letter-spacing: .4px;
    transition: transform .2s, box-shadow .2s;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224,123,32,.44); color: var(--forest);
}

/* ── About section ─────────────────────────────────────────── */
.about { padding: 100px 24px; background: var(--ecru); }
.about-content {
    max-width: 820px; margin: 0 auto; text-align: center;
    color: var(--umber); font-size: 1.05rem; line-height: 1.95;
}
.about-content p + p { margin-top: 20px; }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials { padding: 100px 24px; background: var(--linen); }
.testimonials-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(224,123,32,.14);
    border-radius: var(--radius); padding: 36px 28px; position: relative;
    box-shadow: 0 2px 16px rgba(13,34,20,.06);
}
.testimonial-card::before {
     font-family: var(--font-head);
    font-size: 6rem; color: rgba(224,123,32,.14);
    position: absolute; top: 4px; left: 18px; line-height: 1;
}
.testimonial-text { color: var(--umber); font-style: italic; margin-bottom: 18px; line-height: 1.85; }
.testimonial-author { color: var(--saffron); font-weight: 700; font-family: var(--font-head); font-size: 1.05rem; }

/* ── CTA ───────────────────────────────────────────────────── */
.cta {
    padding: 100px 24px; text-align: center;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest2) 100%);
    border-top: 1px solid rgba(224,123,32,.25);
    border-bottom: 1px solid rgba(224,123,32,.25);
}
.cta h2 { font-family: var(--font-head); font-size: clamp(1.7rem, 3vw, 3rem); color: var(--cream); margin-bottom: 16px; }
.cta p { color: rgba(253,248,239,.72); margin-bottom: 32px; }

/* ── Contact page ──────────────────────────────────────────── */
.contact-section { padding: 120px 24px 100px; background: var(--linen); min-height: 80vh; }
.contact-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
.contact-info h3 { font-family: var(--font-head); color: var(--saffron); margin-bottom: 12px; font-size: 1.2rem; font-weight: 700; }
.contact-info p { color: var(--umber); margin-bottom: 8px; }
.contact-form input,
.contact-form textarea {
    width: 100%; padding: 12px 16px; background: var(--white);
    border: 1px solid rgba(224,123,32,.25); border-radius: 8px; color: var(--espresso);
    font-family: var(--font-body); font-size: .95rem; margin-bottom: 14px;
    outline: none; transition: border-color .2s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--saffron); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button {
    padding: 13px 40px; border: none; cursor: pointer;
    background: linear-gradient(135deg, var(--saffron), var(--saffron2));
    color: var(--forest); font-weight: 700; font-size: .95rem;
    font-family: var(--font-body); border-radius: 6px; letter-spacing: .5px;
    transition: transform .2s, box-shadow .2s;
}
.contact-form button:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(224,123,32,.44); }

/* ── About page ────────────────────────────────────────────── */
.about-page { padding: 120px 24px 100px; background: var(--linen); min-height: 80vh; }
.about-page .about-content { max-width: 860px; margin: 0 auto; }
.about-page p { margin-bottom: 20px; }

/* ── Categories page ───────────────────────────────────────── */
.categories-section { padding: 120px 24px 100px; background: var(--cream); }
.cat-group { margin-bottom: 72px; }
.cat-group h2 {
    font-family: var(--font-head); color: var(--saffron); font-size: 1.85rem;
    margin-bottom: 28px; padding-bottom: 14px;
    border-bottom: 2px solid rgba(224,123,32,.22);
    font-weight: 700;
}

/* ── Product detail page ───────────────────────────────────── */
.product-detail { padding: 110px 24px 80px; background: var(--cream); min-height: 80vh; }
.product-detail-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: start;
}
.product-main-img {
    width: 100%; border-radius: var(--radius);
    border: 1px solid rgba(224,123,32,.22);
    overflow: hidden; aspect-ratio: 4/3; background: var(--ecru);
    box-shadow: 0 8px 32px rgba(13,34,20,.15);
}
.product-main-img img { width: 100%; height: 100%; object-fit: contain; }
.gallery-thumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.gallery-thumbs img {
    width: 76px; height: 60px; object-fit: contain;
    border-radius: 8px; cursor: pointer;
    border: 2px solid rgba(224,123,32,.2);
    transition: border-color .2s, transform .2s;
}
.gallery-thumbs img:hover, .gallery-thumbs img.active {
    border-color: var(--saffron); transform: scale(1.06);
}
.product-meta h1 {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    color: var(--espresso); margin-bottom: 14px; line-height: 1.35;
    font-weight: 700;
}
.product-price {
    font-size: 1.75rem; color: var(--saffron); font-weight: 700;
    font-family: var(--font-head); margin-bottom: 22px;
}
.product-description { color: var(--umber); font-size: .97rem; line-height: 1.9; margin-bottom: 26px; }
.features-list { list-style: none; padding: 0; margin-bottom: 28px; }
.features-list li {
    padding: 9px 0 9px 28px; position: relative;
    color: var(--espresso); font-size: .95rem;
    border-bottom: 1px solid rgba(224,123,32,.12);
}
.features-list li::before {
    content: '•';
    position: absolute; left: 0; color: var(--saffron); font-size: 1.1rem; top: 6px;
}

/* ── CTA Buttons on product page ───────────────────────────── */
.product-cta-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.btn-call {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron2));
    color: var(--forest); font-weight: 700; font-size: .92rem;
    font-family: var(--font-body); border-radius: 6px; letter-spacing: .4px;
    text-transform: uppercase; transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(224,123,32,.32); text-decoration: none;
}
.btn-call:hover {
    transform: translateY(-2px); box-shadow: 0 8px 28px rgba(224,123,32,.52); color: var(--forest);
}
.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px; background: #25d366;
    color: #fff; font-weight: 700; font-size: .92rem;
    font-family: var(--font-body); border-radius: 6px; letter-spacing: .4px;
    text-transform: uppercase; transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(37,211,102,.25); text-decoration: none;
}
.btn-whatsapp:hover {
    transform: translateY(-2px); box-shadow: 0 8px 26px rgba(37,211,102,.45);
    color: #fff; background: #1ebe5d;
}
.btn-call svg, .btn-whatsapp svg { flex-shrink: 0; }

.back-btn {
    display: inline-block; margin-top: 10px; padding: 11px 30px;
    background: transparent; border: 1.5px solid var(--saffron);
    color: var(--saffron); border-radius: 6px; font-size: .88rem;
    letter-spacing: .4px; transition: background .2s, color .2s;
}
.back-btn:hover { background: var(--saffron); color: var(--forest); }

/* ── Catalogue page ────────────────────────────────────────── */
.catalogue-section { padding: 120px 24px 100px; background: var(--cream); }
.catalogue-header {
    max-width: 1200px; margin: 0 auto 48px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.catalogue-header h1 { font-family: var(--font-head); color: var(--espresso); font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 700; }
.search-bar input {
    padding: 10px 20px; border-radius: 8px; background: var(--white);
    border: 1px solid rgba(224,123,32,.22); color: var(--espresso);
    font-size: .92rem; outline: none; width: 250px; font-family: var(--font-body);
}
.search-bar input:focus { border-color: var(--saffron); }

/* ── Footer ────────────────────────────────────────────────── */
.footer { background: var(--forest); border-top: 1px solid rgba(224,123,32,.3); padding: 64px 24px 0; }
.footer-content {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 36px;
}
.footer-logo-img {
    height: 50px; width: auto; object-fit: contain; margin-bottom: 14px;
    filter: brightness(0) invert(1); opacity: .85;
}
.footer-section h3 { font-family: var(--font-head); color: var(--saffron2); font-size: 1.1rem; margin-bottom: 16px; }
.footer-section p  { color: rgba(253,248,239,.62); font-size: .9rem; line-height: 1.8; }
.footer-section a  { display: block; color: rgba(253,248,239,.52); font-size: .9rem; margin-bottom: 8px; transition: color .2s; }
.footer-section a:hover { color: var(--saffron2); }
.footer-bottom {
    text-align: center; padding: 24px 0; color: rgba(253,248,239,.38); font-size: .85rem;
    border-top: 1px solid rgba(224,123,32,.18); margin-top: 44px;
}

/* ── Page hero (inner pages) ───────────────────────────────── */
.page-hero {
    padding: 148px 24px 84px; text-align: center;
    background: linear-gradient(155deg, var(--forest) 0%, var(--forest2) 60%, var(--forest3) 100%);
    border-bottom: 1px solid rgba(224,123,32,.22);
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(60deg, rgba(224,123,32,.04) 0px, rgba(224,123,32,.04) 1px, transparent 1px, transparent 24px);
    pointer-events: none;
}
.page-hero h1 { font-family: var(--font-head); color: var(--cream); font-size: clamp(1.9rem, 4vw, 3.4rem); margin-bottom: 12px; font-weight: 800; position: relative; }
.page-hero p  { color: rgba(253,248,239,.7); font-size: 1.05rem; letter-spacing: .1px; position: relative; }

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb { max-width: 1100px; margin: 0 auto 28px; font-size: .88rem; color: var(--muted); }
.breadcrumb a { color: var(--saffron); }
.breadcrumb span { margin: 0 6px; }

/* ── Ornament divider ──────────────────────────────────────── */
.ornament-divider {
    display: flex; align-items: center; justify-content: center; gap: 18px;
    padding: 8px 0 40px; max-width: 360px; margin: 0 auto;
}
.ornament-divider::before, .ornament-divider::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(224,123,32,.4));
}
.ornament-divider::after { background: linear-gradient(90deg, rgba(224,123,32,.4), transparent); }
.ornament-divider span { color: var(--saffron2); font-size: 1.1rem; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
    .product-detail-inner { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .nav-menu {
        display: none; flex-direction: column;
        position: absolute; top: 92px; left: 0; right: 0;
        background: rgba(13,34,20,.99);
        padding: 20px 24px 28px; gap: 18px;
        border-bottom: 1px solid rgba(224,123,32,.22);
    }
    .nav-menu.open { display: flex; }
    .menu-toggle { display: flex; }
    .catalogue-header { flex-direction: column; align-items: flex-start; }
    .search-bar input { width: 100%; }
    .product-cta-btns { flex-direction: column; }
    .btn-call, .btn-whatsapp { justify-content: center; }
}
