/* ── Reset & Base ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --saffron:  #e8871a;      /* marigold saffron accent */
    --saffron2: #f5ab4e;      /* lighter saffron hover */
    --indigo:   #0f0d1e;      /* deep midnight indigo */
    --darker:   #080612;      /* near-black indigo */
    --mid:      #1a1635;      /* indigo mid-tone */
    --warm:     #231e42;      /* warm indigo card bg */
    --cream:    #f7f1e8;      /* warm cream text */
    --muted:    #b0a8c8;      /* dusty lilac muted */
    --white:    #fdf9f4;      /* warm white */
    --card-bg:  #130f26;      /* card background */
    --accent2:  #9b59b6;      /* soft purple secondary */
    --radius:   16px;
    --shadow:   0 8px 40px rgba(0,0,0,.65);
    --font-head: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--darker);
    color: var(--cream);
    line-height: 1.7;
}

a { color: var(--saffron); text-decoration: none; }
a:hover { color: var(--saffron2); }
img { display: block; max-width: 100%; }

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 999;
    background: rgba(8,6,18,.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(232,135,26,.22);
}
.nav-container {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px; height: 100px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { height: 90px; width: auto; object-fit: contain; }
.logo-text {
    font-family: var(--font-head);
    font-size: 1.5rem; font-weight: 700;
    color: var(--saffron); letter-spacing: .5px; white-space: nowrap;
}
.nav-menu { list-style: none; display: flex; gap: 30px; }
.nav-menu a {
    color: var(--cream); font-size: .88rem; letter-spacing: 1.2px;
    text-transform: uppercase; font-family: var(--font-body); font-weight: 500;
    transition: color .2s;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--saffron); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--saffron); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    background: linear-gradient(160deg, var(--darker) 0%, var(--mid) 45%, #2a1a4e 100%);
    position: relative; overflow: hidden;
    padding: 120px 24px 80px;
}
/* Floating orb glows */
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 15% 60%, rgba(232,135,26,.12) 0%, transparent 55%),
        radial-gradient(ellipse 45% 55% at 85% 25%, rgba(155,89,182,.10) 0%, transparent 55%),
        radial-gradient(ellipse 30% 30% at 50% 80%, rgba(232,135,26,.07) 0%, transparent 50%);
}
/* Subtle dot-grid texture */
.hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-logo {
    max-height: 96px; width: auto; margin: 0 auto 28px;
    filter: drop-shadow(0 0 24px rgba(232,135,26,.45));
}
.hero-content h1 {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    color: var(--saffron);
    text-shadow: 0 0 60px rgba(232,135,26,.45);
    margin-bottom: 16px; line-height: 1.15; font-weight: 600;
}
.hero-divider {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    margin: 0 auto 22px;
}
.hero-divider::before,
.hero-divider::after {
    content: ''; flex: 1; max-width: 80px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--saffron));
}
.hero-divider::after { background: linear-gradient(90deg, var(--saffron), transparent); }
.hero-divider span { color: var(--saffron); font-size: 1.2rem; }
.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--muted); margin-bottom: 40px; letter-spacing: .4px;
    max-width: 580px; margin-left: auto; margin-right: auto;
}
.hero-btn {
    display: inline-block; padding: 15px 46px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron2));
    color: var(--indigo); font-weight: 700; font-size: .92rem;
    font-family: var(--font-body);
    border-radius: 50px; letter-spacing: 1.2px; text-transform: uppercase;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 24px rgba(232,135,26,.4);
}
.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 34px rgba(232,135,26,.58);
    color: var(--indigo);
}

/* ── Section titles ────────────────────────────────────────── */
.section-title {
    text-align: center; font-family: var(--font-head);
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    color: var(--saffron); margin-bottom: 10px; font-weight: 600;
}
.section-title::after {
    content: '';
    display: block; width: 56px; height: 2px;
    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: .4px; margin-bottom: 50px;
}

/* ── Features ──────────────────────────────────────────────── */
.features { padding: 100px 24px; background: var(--indigo); }
.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(--card-bg);
    border: 1px solid rgba(232,135,26,.16);
    border-radius: var(--radius); padding: 36px 28px; text-align: center;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232,135,26,.5);
    box-shadow: 0 12px 36px rgba(232,135,26,.12);
}
.feature-icon { font-size: 2.8rem; margin-bottom: 16px; }
.feature-card h3 { font-family: var(--font-head); color: var(--saffron); margin-bottom: 10px; font-size: 1.2rem; }
.feature-card p  { color: var(--muted); font-size: .92rem; line-height: 1.7; }

/* ── Products grid ─────────────────────────────────────────── */
.products { padding: 100px 24px; background: var(--darker); }
.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(--card-bg);
    border: 1px solid rgba(232,135,26,.10);
    border-radius: var(--radius); overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.product-card:hover {
    transform: translateY(-6px); box-shadow: var(--shadow);
    border-color: rgba(232,135,26,.42);
}
.product-image { aspect-ratio: 4/3; overflow: hidden; background: var(--warm); }
.product-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .4s; }
.product-card:hover .product-image img { transform: scale(1.06); }
.product-info { padding: 20px; }
.product-info h3 {
    font-family: var(--font-head); font-size: 1.05rem; color: var(--cream);
    margin-bottom: 14px; line-height: 1.45;
    display: -webkit-box; -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; overflow: hidden;
}
.btn {
    display: inline-block; padding: 9px 24px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron2));
    color: var(--indigo); font-size: .84rem; font-weight: 700;
    border-radius: 50px; letter-spacing: .8px; text-transform: uppercase;
    transition: transform .2s, box-shadow .2s;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(232,135,26,.45); color: var(--indigo);
}

/* ── About section ─────────────────────────────────────────── */
.about { padding: 100px 24px; background: var(--indigo); }
.about-content {
    max-width: 820px; margin: 0 auto; text-align: center;
    color: var(--muted); font-size: 1.05rem; line-height: 1.9;
}
.about-content p + p { margin-top: 20px; }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials { padding: 100px 24px; background: var(--darker); }
.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(--card-bg);
    border: 1px solid rgba(232,135,26,.16);
    border-radius: var(--radius); padding: 34px 28px; position: relative;
}
.testimonial-card::before {
    font-family: var(--font-head);
    font-size: 5.5rem; color: rgba(232,135,26,.12);
    position: absolute; top: 6px; left: 20px; line-height: 1;
}
.testimonial-text { color: var(--muted); font-style: italic; margin-bottom: 18px; line-height: 1.8; }
.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(--mid) 0%, #2a1a4e 100%);
}
.cta h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 3vw, 2.8rem); color: var(--saffron); margin-bottom: 14px; }
.cta p { color: var(--muted); margin-bottom: 30px; }

/* ── Contact page ──────────────────────────────────────────── */
.contact-section { padding: 120px 24px 100px; background: var(--indigo); min-height: 80vh; }
.contact-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h3 { font-family: var(--font-head); color: var(--saffron); margin-bottom: 12px; font-size: 1.2rem; }
.contact-info p { color: var(--muted); margin-bottom: 8px; }
.contact-form input,
.contact-form textarea {
    width: 100%; padding: 12px 16px; background: var(--card-bg);
    border: 1px solid rgba(232,135,26,.22); border-radius: 8px; color: var(--cream);
    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: 12px 36px; border: none; cursor: pointer;
    background: linear-gradient(135deg, var(--saffron), var(--saffron2));
    color: var(--indigo); font-weight: 700; font-size: .95rem;
    font-family: var(--font-body); border-radius: 50px; letter-spacing: 1px;
    text-transform: uppercase; transition: transform .2s, box-shadow .2s;
}
.contact-form button:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(232,135,26,.4); }

/* ── About page ────────────────────────────────────────────── */
.about-page { padding: 120px 24px 100px; background: var(--indigo); 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(--darker); }
.cat-group { margin-bottom: 70px; }
.cat-group h2 {
    font-family: var(--font-head); color: var(--saffron); font-size: 1.8rem;
    margin-bottom: 28px; padding-bottom: 12px;
    border-bottom: 1px solid rgba(232,135,26,.22);
}

/* ── Product detail page ───────────────────────────────────── */
.product-detail { padding: 110px 24px 80px; background: var(--darker); min-height: 80vh; }
.product-detail-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: start;
}
.product-main-img {
    width: 100%; border-radius: var(--radius);
    border: 1px solid rgba(232,135,26,.18);
    overflow: hidden; aspect-ratio: 4/3; background: var(--warm);
}
.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(232,135,26,.18);
    transition: border-color .2s, transform .2s;
}
.gallery-thumbs img:hover, .gallery-thumbs img.active {
    border-color: var(--saffron); transform: scale(1.05);
}
.product-meta h1 {
    font-family: var(--font-head);
    font-size: clamp(1.4rem, 2.5vw, 2.1rem);
    color: var(--white); margin-bottom: 14px; line-height: 1.3;
}
.product-price {
    font-size: 1.7rem; color: var(--saffron); font-weight: 700;
    font-family: var(--font-head); margin-bottom: 22px;
}
.product-description { color: var(--muted); font-size: .97rem; line-height: 1.85; margin-bottom: 26px; }
.features-list { list-style: none; padding: 0; margin-bottom: 28px; }
.features-list li {
    padding: 9px 0 9px 26px; position: relative;
    color: var(--cream); font-size: .95rem;
    border-bottom: 1px solid rgba(232,135,26,.1);
}
.features-list li::before {
    content: '◈';
    position: absolute; left: 0; color: var(--saffron); font-size: .7rem; top: 12px;
}

/* ── 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(--indigo); font-weight: 700; font-size: .92rem;
    font-family: var(--font-body); border-radius: 50px; letter-spacing: .8px;
    text-transform: uppercase; transition: transform .2s, box-shadow .2s;
    box-shadow: 0 4px 18px rgba(232,135,26,.32); text-decoration: none;
}
.btn-call:hover {
    transform: translateY(-2px); box-shadow: 0 7px 26px rgba(232,135,26,.52); color: var(--indigo);
}
.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: 50px; letter-spacing: .8px;
    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 7px 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: 1px solid var(--saffron);
    color: var(--saffron); border-radius: 50px; font-size: .88rem;
    letter-spacing: .8px; text-transform: uppercase;
    transition: background .2s, color .2s;
}
.back-btn:hover { background: var(--saffron); color: var(--indigo); }

/* ── Catalogue page ────────────────────────────────────────── */
.catalogue-section { padding: 120px 24px 100px; background: var(--darker); }
.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(--saffron); font-size: clamp(1.6rem, 3vw, 2.5rem); }
.search-bar input {
    padding: 10px 20px; border-radius: 50px; background: var(--card-bg);
    border: 1px solid rgba(232,135,26,.22); color: var(--cream);
    font-size: .92rem; outline: none; width: 250px; font-family: var(--font-body);
}
.search-bar input:focus { border-color: var(--saffron); }

/* ── Footer ────────────────────────────────────────────────── */
.footer { background: var(--indigo); border-top: 1px solid rgba(232,135,26,.18); padding: 60px 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: 48px; width: auto; object-fit: contain; margin-bottom: 14px;
   
}
.footer-section h3 { font-family: var(--font-head); color: var(--saffron); font-size: 1.05rem; margin-bottom: 16px; }
.footer-section p  { color: var(--muted); font-size: .9rem; line-height: 1.75; }
.footer-section a  { display: block; color: var(--muted); font-size: .9rem; margin-bottom: 8px; transition: color .2s; }
.footer-section a:hover { color: var(--saffron); }
.footer-bottom {
    text-align: center; padding: 24px 0; color: var(--muted); font-size: .85rem;
    border-top: 1px solid rgba(232,135,26,.12); margin-top: 40px;
}

/* ── Page hero (inner pages) ───────────────────────────────── */
.page-hero {
    padding: 140px 24px 80px; text-align: center;
    background: linear-gradient(160deg, var(--darker) 0%, var(--mid) 60%, #2a1a4e 100%);
}
.page-hero h1 { font-family: var(--font-head); color: var(--saffron); font-size: clamp(1.8rem, 4vw, 3.2rem); margin-bottom: 12px; }
.page-hero p  { color: var(--muted); font-size: 1.05rem; letter-spacing: .4px; }

/* ── 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; }

/* ── Responsive ────────────────────────────────────────────── */
/* ── Additional Helpers ────────────────────────────────────── */
.listing-link {
    display: block;
    margin-top: 18px;
    font-size: 0.88rem;
    color: var(--muted);
    transition: color 0.2s;
}
.listing-link:hover { color: var(--saffron); }

.features-heading {
    font-family: var(--font-head);
    color: var(--saffron);
    margin-bottom: 16px;
    font-size: 1.3rem;
    font-weight: 600;
}

@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: 72px; left: 0; right: 0;
        background: rgba(8,6,18,.99);
        padding: 20px 24px 28px; gap: 18px;
        border-bottom: 1px solid rgba(232,135,26,.18);
    }
    .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; }
}
