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

:root {
    --saffron: #E8892A;
    --saffron-light: #F4A84A;
    --saffron-dark: #C96E18;
    --forest: #2D5016;
    --forest-mid: #3D6B1F;
    --forest-light: #4E8A28;
    --cream: #FAF6EE;
    --cream-dark: #F0E8D6;
    --bark: #6B4226;
    --bark-light: #8B5E3C;
    --stone: #8B8075;
    --white: #FEFCF8;
    --text-dark: #1A1208;
    --text-mid: #4A3728;
    --text-light: #7A6555;
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
}

/* ── NAV ── */
nav {
    background: rgba(250, 246, 238, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232, 137, 42, 0.2);
}

.nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-style: italic;
    color: var(--forest);
    font-size: 1.9rem;
    letter-spacing: -0.01em;
}

.nav-logo-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--saffron-dark);
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

/* ── HERO ── */
.hero-section {
    background: linear-gradient(160deg, var(--forest) 0%, #1A3A0A 40%, #2D5016 70%, #3A4A10 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(232, 137, 42, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(78, 138, 40, 0.2) 0%, transparent 50%);
}

.hero-mandala {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    opacity: 0.07;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 137, 42, 0.15);
    border: 1px solid rgba(232, 137, 42, 0.4);
    color: var(--saffron-light);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    color: var(--saffron-light);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(250, 246, 238, 0.72);
    line-height: 1.7;
    font-weight: 300;
    max-width: 520px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--saffron);
    color: var(--white);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--saffron-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 137, 42, 0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(250, 246, 238, 0.85);
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    border: 1px solid rgba(250, 246, 238, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    border-color: rgba(250, 246, 238, 0.7);
    background: rgba(250, 246, 238, 0.08);
}

/* ── DIVIDER ── */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 1.5rem;
}

.section-divider::before,
.section-divider::after {
    content: '';
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--saffron));
}
.section-divider::after {
    background: linear-gradient(270deg, transparent, var(--saffron));
}

.section-label {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--saffron-dark);
    font-weight: 600;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--forest);
    letter-spacing: -0.02em;
}

/* ── FEATURES ── */
.features-section {
    background: var(--white);
}

.feature-card {
    border: 1px solid rgba(45, 80, 22, 0.1);
    border-radius: 2px;
    padding: 2.5rem 2rem;
    background: var(--cream);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--forest), var(--saffron));
    transition: width 0.4s ease;
}

.feature-card:hover::before {
    width: 100%;
}

.feature-card:hover {
    box-shadow: 0 12px 40px rgba(45, 80, 22, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

/* ── CATEGORIES ── */
.categories-section {
    background: var(--cream);
}

.category-card {
    background: var(--white);
    border: 1px solid rgba(45, 80, 22, 0.08);
    border-radius: 4px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.category-card:hover {
    border-color: var(--saffron);
    box-shadow: 0 8px 28px rgba(232, 137, 42, 0.15);
    transform: translateY(-3px);
}

.category-emoji {
    font-size: 2.2rem;
    margin-bottom: 0.6rem;
    display: block;
}

/* ── PRODUCTS ── */
.products-section {
    background: var(--white);
}

.product-card {
    border: 1px solid rgba(45, 80, 22, 0.08);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.35s ease;
    background: var(--white);
}

.product-card:hover {
    box-shadow: 0 16px 48px rgba(45, 80, 22, 0.12);
    transform: translateY(-4px);
}

.product-image-bg {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* ── BENEFITS ── */
.benefits-section {
    background: linear-gradient(135deg, var(--forest) 0%, #1D4010 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 70% 50%, rgba(232, 137, 42, 0.1) 0%, transparent 60%);
}

/* ── FACILITIES ── */
.facilities-section {
    background: var(--cream);
}

.facility-card {
    background: var(--white);
    border: 1px solid rgba(45, 80, 22, 0.08);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.facility-card:hover {
    box-shadow: 0 12px 36px rgba(45, 80, 22, 0.1);
    transform: translateY(-3px);
}

/* ── STATS ── */
.stat-card {
    background: var(--white);
    border: 1px solid rgba(45, 80, 22, 0.08);
    border-radius: 4px;
    padding: 2rem 1.5rem;
    text-align: center;
}

/* ── PACKAGING ── */
.packaging-section {
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

.packaging-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 10% 80%, rgba(232, 137, 42, 0.12) 0%, transparent 50%);
}

.pack-card {
    border-top: 3px solid var(--saffron);
    padding: 2rem;
    background: rgba(250, 246, 238, 0.05);
    border-radius: 4px;
    border-left: 1px solid rgba(250, 246, 238, 0.1);
    border-right: 1px solid rgba(250, 246, 238, 0.1);
    border-bottom: 1px solid rgba(250, 246, 238, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.pack-card:hover {
    background: rgba(250, 246, 238, 0.1);
    transform: translateY(-4px);
}

/* ── B2B ── */
.b2b-section {
    background: var(--cream-dark);
}

.b2b-feature {
    border-left: 2px solid var(--saffron);
    padding: 1.5rem 1.8rem;
    background: var(--white);
    border-radius: 0 4px 4px 0;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(45, 80, 22, 0.15);
    border-radius: 4px;
    background: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: border-color 0.2s;
    outline: none;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    border-color: var(--forest-light);
}

/* ── CONTACT ── */
.contact-section {
    background: var(--white);
}

.contact-card {
    background: var(--forest);
    border-radius: 4px;
    padding: 3rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 137, 42, 0.12), transparent 70%);
}

/* ── FOOTER ── */
footer {
    background: var(--text-dark);
}

/* ── MODAL ── */
.modal-styled {
    background: var(--white);
    border: 1px solid rgba(45, 80, 22, 0.15);
    border-radius: 8px;
    color: var(--text-dark);
    padding: 0;
    width: 92%;
    max-width: 760px;
}

.modal-styled::backdrop {
    background: rgba(26, 18, 8, 0.6);
    backdrop-filter: blur(4px);
}

.modal-inner {
    padding: 2.5rem;
    max-height: 82vh;
    overflow-y: auto;
}

.modal-inner::-webkit-scrollbar {
    width: 4px;
}

.modal-inner::-webkit-scrollbar-track {
    background: var(--cream);
}

.modal-inner::-webkit-scrollbar-thumb {
    background: var(--saffron);
    border-radius: 4px;
}

.tab-btn {
    padding: 0.65rem 1.2rem;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-light);
    border-bottom: 2px solid transparent;
    cursor: pointer;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    transition: all 0.2s;
}

.tab-btn:hover {
    color: var(--forest);
}

.tab-btn.tab-active {
    color: var(--forest) !important;
    border-bottom-color: var(--saffron) !important;
}

.nutri-table {
    width: 100%;
    font-size: 0.85rem;
    border-collapse: collapse;
}

.nutri-table th {
    background: var(--forest);
    color: var(--white);
    padding: 0.7rem 1rem;
    text-align: left;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.nutri-table td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid rgba(45, 80, 22, 0.08);
    color: var(--text-mid);
}

.nutri-table tr:nth-child(even) td {
    background: var(--cream);
}

/* ── TOAST ── */
#messageBox {
    background: var(--white);
    border-radius: 6px;
    border: 1px solid rgba(45, 80, 22, 0.15);
    box-shadow: 0 8px 32px rgba(26, 18, 8, 0.12);
}

/* ── NAV LINK ── */
.nav-link {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    font-weight: 500;
    padding: 0.4rem 0;
    border-bottom: 1px solid transparent;
    transition: all 0.2s;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--forest);
    border-bottom-color: var(--saffron);
}

/* Ayurvedic leaf/lotus decorative SVG icon */
.leaf-accent {
    color: var(--saffron);
    font-size: 1.1rem;
}

/* Highlight text */
.text-saffron { color: var(--saffron); }
.text-forest { color: var(--forest); }
.bg-cream { background: var(--cream); }
.bg-forest { background: var(--forest); }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}