/* ========================================
   Sarvadnya Krishi Foods - Fresh Unique Design
   Organic, flowing, nature-inspired
   ======================================== */

/* CSS Variables */
:root {
    --green-dark: #1a4d1a;
    --green-primary: #2d5a27;
    --green-light: #4a8c3f;
    --green-pale: #e8f5e3;

    --orange-primary: #e67e22;
    --orange-dark: #d35400;
    --gold: #f1c40f;
    --turmeric: #f39c12;

    --earth-dark: #5d4e37;
    --earth-medium: #8b7355;
    --earth-light: #d4c4a8;
    --cream: #fefcf6;
    --white: #ffffff;

    --text-dark: #1a1a1a;
    --text-medium: #555555;
    --text-light: #888888;

    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;

    --shadow-soft: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-medium: 0 15px 40px rgba(0,0,0,0.12);
    --shadow-strong: 0 20px 50px rgba(0,0,0,0.18);

    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }

p { color: var(--text-medium); }

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-fluid {
    padding: 0 60px;
}

/* ========================================
   Organic Shapes & Decorations
   ======================================== */
.blob-shape {
    position: absolute;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    background: var(--green-pale);
    opacity: 0.5;
    animation: blob-morph 15s ease-in-out infinite;
}

@keyframes blob-morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%; }
    75% { border-radius: 60% 40% 60% 30% / 70% 30% 50% 60%; }
}

.leaf-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5c-8 8-12 20-8 30 2 5 8 10 8 10s6-5 8-10c4-10 0-22-8-30z' fill='%232d5a27' fill-opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* ========================================
   Header - Unique Floating Design
   ======================================== */
.header {
    position: fixed;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    max-width: 1400px;
    z-index: 1000;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    box-shadow: var(--shadow-soft);
}

.header.scrolled .header-inner {
    padding: 12px 30px;
    box-shadow: var(--shadow-medium);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-mark {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-mark::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 30px;
    background: var(--white);
    clip-path: polygon(50% 0%, 100% 50%, 80% 100%, 20% 100%, 0% 50%);
    opacity: 0.9;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-dark);
}

.logo-text span {
    color: var(--orange-primary);
    font-weight: 400;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 50px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--green-primary);
    background: var(--green-pale);
}

.nav-link.active {
    color: var(--green-primary);
    font-weight: 600;
}

.nav-link.active:not(.nav-btn)::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 2px;
    transform: translateX(-50%);
    width: 22px;
    height: 3px;
    border-radius: 3px;
    background: var(--green-primary);
}

.nav-btn.active {
    box-shadow: 0 6px 18px rgba(230, 126, 34, 0.35);
}

.nav-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    color: var(--white) !important;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.35);
    transition: var(--transition);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.45);
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark)) !important;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    width: 32px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 2px 0;
}

.mobile-toggle span {
    height: 3px;
    background: var(--green-primary);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* ========================================
   Hero - Split Creative Design
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--green-dark);
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(100deg,
            rgba(15, 40, 20, 0.88) 0%,
            rgba(15, 40, 20, 0.62) 42%,
            rgba(15, 40, 20, 0.28) 78%,
            rgba(15, 40, 20, 0.12) 100%),
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.18) 0%,
            transparent 40%,
            rgba(0, 0, 0, 0.28) 100%);
}

.hero-wrapper {
    max-width: 1400px;
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
    padding: 0 40px;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 160px 0 100px;
    position: relative;
    z-index: 2;
}

.hero-showcase {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 140px 0 100px;
}

.hero-showcase-image {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 20px;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--cream);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 30px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-badge i {
    color: var(--gold);
}

.hero-title {
    color: var(--cream);
    margin-bottom: 25px;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.hero-title .highlight {
    color: var(--gold);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--orange-primary);
    opacity: 0.45;
    z-index: -1;
    border-radius: 4px;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-tagline em {
    font-style: italic;
    font-weight: 600;
    color: var(--cream);
}

.hero-tagline .tagline-mark {
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(254, 252, 246, 0.88);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.8;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 90, 39, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--green-primary);
    border: 2px solid var(--green-primary);
}

.btn-outline:hover {
    background: var(--green-primary);
    color: var(--white);
}

.hero .btn-outline {
    color: var(--cream);
    border-color: rgba(254, 252, 246, 0.55);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero .btn-outline:hover {
    background: var(--cream);
    color: var(--green-primary);
    border-color: var(--cream);
}

/* Hero Stats - Editorial hairline row on dark backdrop */
.hero-stats {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding-top: 32px;
    border-top: 1px solid rgba(254, 252, 246, 0.22);
    width: 100%;
    max-width: 560px;
}

.stat-item {
    position: relative;
    flex: 1;
    padding: 0 28px;
}

.stat-item:first-child {
    padding-left: 0;
}

.stat-item:last-child {
    padding-right: 0;
}

.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(254, 252, 246, 0.22);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 3.6vw, 3.2rem);
    font-weight: 700;
    color: var(--cream);
    line-height: 1;
    letter-spacing: -1px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(254, 252, 246, 0.7);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}


/* ========================================
   Section Styles
   ======================================== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--orange-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--orange-primary);
}

.section-title {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-title span {
    color: var(--green-primary);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
}

.section-header {
    margin-bottom: 70px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-desc {
    margin: 0 auto;
}

/* ========================================
   Brand Banner
   ======================================== */
.brand-banner {
    width: 100%;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--green-pale) 0%, #d4e8cf 100%);
    display: flex;
    justify-content: center;
}

.brand-banner-link {
    display: block;
    width: 100%;
    max-width: 1200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.brand-banner-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.brand-banner-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .brand-banner {
        padding: 24px 14px;
    }
    .brand-banner-link {
        border-radius: 12px;
    }
}

/* ========================================
   About Section - Unique Layout
   ======================================== */
.about {
    background: var(--white);
    overflow: hidden;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-img {
    position: absolute;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-img.main {
    width: 70%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img.secondary {
    width: 55%;
    height: 50%;
    bottom: 0;
    right: 0;
    z-index: 3;
    border: 8px solid var(--white);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-img:hover img {
    transform: scale(1.05);
}

.experience-tag {
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
    z-index: 4;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    color: var(--white);
    padding: 25px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-medium);
}

.experience-tag .number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.experience-tag .text {
    font-size: 0.85rem;
    opacity: 0.9;
}

.about-content .section-label::before {
    display: none;
}

.about-text {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 40px 0;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--cream);
    border-radius: 16px;
    transition: var(--transition);
}

.feature-box:hover {
    background: var(--green-pale);
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-primary);
    font-size: 1.2rem;
    box-shadow: var(--shadow-soft);
}

.feature-box span {
    font-weight: 600;
    color: var(--text-dark);
}

/* ========================================
   Meet the Founder - Full Section
   ======================================== */
.founder-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--green-pale) 100%);
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.18) 0%, transparent 70%);
}

.founder-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.15) 0%, transparent 70%);
}

.founder-spotlight {
    position: relative;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: center;
    background: var(--white);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.founder-portrait {
    position: relative;
    display: flex;
    justify-content: center;
}

.portrait-frame {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green-primary) 0%, var(--green-dark) 100%);
    box-shadow: 0 20px 50px rgba(74, 124, 89, 0.3);
    position: relative;
    overflow: hidden;
    border: 6px solid var(--white);
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
}

.portrait-frame::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, var(--orange-primary), var(--gold), var(--green-primary));
    border-radius: 50%;
    z-index: -1;
}

.portrait-badge {
    position: absolute;
    bottom: 10px;
    right: 20px;
    background: var(--orange-primary);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.35);
}

.founder-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.founder-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.founder-role {
    display: inline-block;
    font-size: 0.95rem;
    color: var(--green-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.founder-quote {
    position: relative;
    margin: 8px 0;
    padding: 20px 24px 20px 40px;
    border-left: 4px solid var(--orange-primary);
    background: var(--cream);
    border-radius: 0 14px 14px 0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.founder-quote::before {
    content: '\201C';
    position: absolute;
    left: 12px;
    top: -6px;
    font-size: 3.5rem;
    color: var(--orange-primary);
    line-height: 1;
    font-family: 'Playfair Display', serif;
    opacity: 0.5;
}

.founder-bio {
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0;
}

.founder-stats {
    display: flex;
    gap: 30px;
    padding: 20px 0 4px;
    border-top: 1px solid var(--green-pale);
    margin-top: 8px;
}

.founder-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.founder-stat .stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-primary);
    line-height: 1;
}

.founder-stat .stat-label {
    font-size: 0.8rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.founder-content .btn {
    align-self: flex-start;
    margin-top: 10px;
}

@media (max-width: 900px) {
    .founder-spotlight {
        grid-template-columns: 1fr;
        padding: 40px 28px;
        gap: 36px;
        text-align: center;
    }

    .portrait-frame {
        width: 260px;
        height: 260px;
    }

    .founder-content {
        align-items: center;
    }

    .founder-quote {
        text-align: left;
    }

    .founder-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }

    .founder-content .btn {
        align-self: center;
    }
}

@media (max-width: 520px) {
    .founder-name {
        font-size: 1.7rem;
    }
    .founder-stats {
        gap: 18px;
    }
    .founder-stat .stat-value {
        font-size: 1.25rem;
    }
}

.recognition-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.recognition-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--white);
    border: 1px solid var(--green-pale);
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
}

.recognition-item i {
    font-size: 1.5rem;
    color: var(--orange-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.recognition-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.98rem;
    margin-bottom: 2px;
}

.recognition-item span {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.4;
}

@media (max-width: 600px) {
    .recognition-strip {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Products Section - Card Grid
   ======================================== */
.products {
    background: linear-gradient(180deg, var(--cream) 0%, var(--green-pale) 100%);
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 14px 28px;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-medium);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
}

.filter-btn:hover {
    border-color: var(--green-primary);
    color: var(--green-primary);
}

.filter-btn.active {
    background: var(--green-primary);
    color: var(--white);
    border-color: var(--green-primary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

/* Product Card - Unique Design */
.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.product-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--orange-primary), var(--gold));
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.product-visual {
    height: 220px;
    background: linear-gradient(135deg, var(--green-pale) 0%, #d4e8cf 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-visual::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 60%);
    top: -25%;
    left: -25%;
}

.product-icon {
    font-size: 5rem;
    color: var(--green-primary);
    opacity: 0.7;
    transition: var(--transition);
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-info {
    padding: 30px;
}

.product-category {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--orange-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.benefit {
    padding: 6px 14px;
    background: var(--green-pale);
    color: var(--green-primary);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-primary);
}

.product-price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
    font-family: var(--font-body);
}

.product-action {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

.product-action:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4);
}

.view-all-wrapper {
    text-align: center;
    margin-top: 60px;
}

/* ========================================
   Services Section - Horizontal Cards
   ======================================== */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 50px 40px;
    background: var(--cream);
    border-radius: 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--green-primary), var(--green-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-medium);
}

.service-icon-wrap {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(45, 90, 39, 0.25);
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    transform: translateY(-10px);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-list {
    text-align: left;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.service-list li i {
    color: var(--green-primary);
    font-size: 0.9rem;
}

/* ========================================
   Why Amla - Amritphal Section
   ======================================== */
.why-amla {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.amla-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    margin-bottom: 70px;
}

.amla-benefit-card {
    background: var(--white);
    border-radius: 18px;
    padding: 32px 26px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-top: 4px solid var(--green-primary);
}

.amla-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.amla-benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-pale) 0%, #d4e8cf 100%);
    color: var(--green-primary);
    font-size: 1.7rem;
}

.amla-benefit-card h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.amla-benefit-card p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.flavors-block {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-soft);
}

.flavors-intro .section-label {
    margin-bottom: 14px;
}

.flavors-intro h3 {
    color: var(--text-dark);
    margin-bottom: 18px;
    font-size: 1.8rem;
    line-height: 1.3;
}

.flavors-intro h3 span {
    color: var(--orange-primary);
}

.flavors-intro p {
    color: var(--text-medium);
    line-height: 1.8;
    margin: 0;
}

.flavors-intro em {
    color: var(--green-primary);
    font-weight: 600;
    font-style: italic;
}

.flavors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.flavor-chip {
    padding: 24px 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--white);
    transition: transform 0.3s ease;
}

.flavor-chip:hover {
    transform: translateY(-4px);
}

.flavor-chip.sour {
    background: linear-gradient(135deg, #7ab648 0%, #5a9b2b 100%);
}

.flavor-chip.sweet {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.flavor-chip.pungent {
    background: linear-gradient(135deg, #c0392b 0%, #962d22 100%);
}

.flavor-chip.bitter {
    background: linear-gradient(135deg, #6c5b3d 0%, #4a3d2a 100%);
}

.flavor-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.flavor-item {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 900px) {
    .flavors-block {
        grid-template-columns: 1fr;
        padding: 36px 28px;
        gap: 32px;
    }
}

@media (max-width: 520px) {
    .flavors-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Why Choose Us - Grid with Icons
   ======================================== */
.why-us {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='2' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
}

.why-us .section-label {
    color: var(--gold);
}

.why-us .section-label::after {
    background: var(--gold);
}

.why-us .section-title {
    color: var(--white);
}

.why-us .section-desc {
    color: rgba(255,255,255,0.8);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.why-item {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: var(--transition);
}

.why-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-10px);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orange-primary), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--white);
}

.why-item h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.why-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   Testimonials - Modern Slider
   ======================================== */
.testimonials {
    background: var(--cream);
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    text-align: center;
    padding: 50px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-medium);
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-quote {
    font-size: 5rem;
    color: var(--green-pale);
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.author-info h5 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.t-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--earth-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.t-dot.active {
    background: var(--green-primary);
    transform: scale(1.3);
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta .btn-primary {
    background: var(--white);
    color: var(--orange-primary);
}

.cta .btn-primary:hover {
    background: var(--text-dark);
    color: var(--white);
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    padding: 50px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    border-radius: 30px;
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.contact-info > p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.info-list {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--white);
    color: var(--green-primary);
    transform: translateY(-5px);
}

/* Contact Form */
.contact-form {
    padding: 50px;
    background: var(--cream);
    border-radius: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--white);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-primary);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--green-dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
    line-height: 1.7;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    color: var(--gold) !important;
    font-size: 1.05rem;
    margin-bottom: 14px !important;
    letter-spacing: 0.5px;
}

.footer-tagline em {
    color: var(--white);
    font-weight: 600;
    font-style: italic;
}

.footer h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.newsletter-text {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
}

.newsletter-form button {
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    color: var(--white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ========================================
   Back to Top
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
}

/* ========================================
   Products Page Specific
   ======================================== */
.page-header {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    color: rgba(255,255,255,0.6);
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: var(--gold);
}

/* Products Filter Bar */
.filter-bar {
    background: var(--white);
    padding: 25px 0;
    position: sticky;
    top: 90px;
    z-index: 100;
    box-shadow: var(--shadow-soft);
}

.filter-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--cream);
    border-radius: 50px;
    flex: 1;
    max-width: 400px;
}

.search-box i {
    color: var(--text-light);
}

.search-box input {
    border: none;
    background: none;
    font-size: 1rem;
    width: 100%;
    outline: none;
}

/* Product Category Section */
.product-section {
    padding: 80px 0;
}

.product-section:nth-child(even) {
    background: var(--white);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 50px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--green-pale);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
}

.category-info h2 {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.category-info p {
    color: var(--text-medium);
    margin: 0;
}

/* ========================================
   Animations & Utilities
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .header {
        width: calc(100% - 40px);
        top: 15px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: var(--transition);
        box-shadow: var(--shadow-strong);
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 15px 20px;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
    }

    .hero-content {
        padding: 150px 0 20px;
        max-width: 100%;
    }

    .hero-showcase {
        padding: 0 0 80px;
    }

    .hero-showcase-image {
        max-width: 460px;
    }

    .hero-stats {
        max-width: 100%;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        height: 450px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container-fluid {
        padding: 0 20px;
    }

    .section {
        padding: 80px 0;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px 0;
        padding-top: 24px;
    }

    .hero-stats .stat-item {
        flex: 1 1 30%;
        padding: 0 12px;
    }

    .hero-stats .stat-item + .stat-item::before {
        top: 4px;
        bottom: 4px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .filter-bar-inner {
        flex-direction: column;
    }

    .search-box {
        max-width: 100%;
    }

    .products-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .header-inner {
        padding: 12px 20px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .hero-content {
        padding: 130px 20px 60px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        height: 350px;
    }

    .about-img.secondary {
        width: 50%;
        height: 45%;
    }

    .experience-tag {
        right: 10%;
        padding: 20px;
    }

    .experience-tag .number {
        font-size: 2.2rem;
    }

    .contact-info,
    .contact-form {
        padding: 30px;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   Announcement Bar
   ======================================== */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, var(--green-dark) 0%, var(--green-primary) 50%, var(--green-dark) 100%);
    color: var(--white);
    z-index: 1001;
    font-size: 0.85rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.announcement-bar-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    padding: 10px 30px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.announcement-bar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.announcement-bar i {
    color: var(--gold);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .announcement-bar-inner {
        gap: 16px;
        padding: 8px 15px;
        font-size: 0.72rem;
    }
    .announcement-bar i {
        font-size: 0.8rem;
    }
    .header {
        top: 70px;
    }
}

/* ========================================
   Nav Cart Icon
   ======================================== */
.nav-cart {
    position: relative;
    width: 46px;
    height: 46px;
    background: var(--green-pale);
    color: var(--green-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: var(--transition);
    margin-left: 8px;
}

.nav-cart:hover {
    background: var(--green-primary);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(45, 90, 39, 0.3);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid var(--white);
    font-family: var(--font-body);
}

/* ========================================
   Floating WhatsApp Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-whatsapp 2.5s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--text-dark);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateX(10px);
    font-family: var(--font-body);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--text-dark);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 15px rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 1.6rem;
    }
}

/* ========================================
   Certifications Section
   ======================================== */
.certifications {
    background: var(--white);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.cert-card {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    padding: 35px 25px;
    border-radius: 24px;
    text-align: center;
    border: 2px solid #f0ebe0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--green-primary), var(--gold), var(--orange-primary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.cert-card:hover {
    transform: translateY(-8px);
    border-color: var(--green-light);
    box-shadow: var(--shadow-medium);
}

.cert-card:hover::before {
    transform: scaleX(1);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(45, 90, 39, 0.25);
}

.cert-card:nth-child(2) .cert-icon {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.25);
}

.cert-card:nth-child(3) .cert-icon {
    background: linear-gradient(135deg, var(--turmeric), var(--gold));
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.25);
}

.cert-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.cert-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 18px;
    min-height: 75px;
}

.cert-number {
    padding: 10px 14px;
    background: var(--green-pale);
    color: var(--green-primary);
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 500;
}

.cert-number strong {
    color: var(--orange-dark);
    font-weight: 600;
}

.cert-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--green-primary);
    color: var(--white);
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 4px;
}

.cert-link:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.cert-link i {
    font-size: 1rem;
}

/* Lab Test Reports Block */
.reports-block {
    margin-top: 70px;
    padding: 40px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--green-pale) 100%);
    border-radius: 24px;
}

.reports-header {
    text-align: center;
    margin-bottom: 36px;
}

.reports-header .section-label {
    margin-bottom: 12px;
}

.reports-header h3 {
    color: var(--text-dark);
    margin-bottom: 14px;
    font-size: 1.6rem;
}

.reports-header h3 span {
    color: var(--green-primary);
}

.reports-header p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-medium);
    line-height: 1.7;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.report-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.report-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--green-primary);
}

.report-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.report-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.report-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange-primary);
    font-weight: 600;
}

.report-info strong {
    color: var(--text-dark);
    font-size: 1rem;
}

.report-info small {
    color: var(--text-medium);
    font-size: 0.82rem;
}

.report-download {
    color: var(--green-primary);
    font-size: 1.1rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.report-card:hover .report-download {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 600px) {
    .reports-block {
        padding: 28px 20px;
    }
    .report-download {
        opacity: 1;
        transform: translateX(0);
    }
}

.cert-note {
    margin-top: 50px;
    padding: 20px 30px;
    background: var(--green-pale);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--green-dark);
    font-size: 0.95rem;
    text-align: center;
}

.cert-note i {
    color: var(--green-primary);
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cert-grid {
        grid-template-columns: 1fr;
    }
    .cert-card p {
        min-height: auto;
    }
}

/* ========================================
   Cart Sidebar
   ======================================== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: var(--white);
    z-index: 1101;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid #f0f0f0;
    background: var(--cream);
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--green-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.cart-header h3 i {
    color: var(--green-primary);
}

.cart-close {
    background: transparent;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.cart-close:hover {
    background: #f0f0f0;
    color: var(--text-dark);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 28px;
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.cart-empty i {
    font-size: 4rem;
    color: var(--green-pale);
    margin-bottom: 20px;
    display: block;
}

.cart-empty p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 6px;
}

.cart-empty span {
    font-size: 0.9rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid #f5f5f5;
    gap: 15px;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h5 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.cart-item-unit {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--text-light);
    background: var(--green-pale);
    padding: 2px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--text-medium);
}

.cart-item-price strong {
    color: var(--green-primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--green-pale);
    background: var(--white);
    color: var(--green-primary);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    background: var(--green-primary);
    color: var(--white);
    border-color: var(--green-primary);
}

.qty-value {
    min-width: 28px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.remove-btn {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    border-radius: 8px;
    margin-left: 6px;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.remove-btn:hover {
    background: #fdecea;
    color: #e74c3c;
}

.cart-footer {
    padding: 20px 28px 28px;
    border-top: 1px solid #f0f0f0;
    background: var(--cream);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    font-size: 1rem;
    color: var(--text-medium);
}

.cart-total strong {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--green-dark);
}

.cart-checkout {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
    font-family: var(--font-body);
}

.cart-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.cart-checkout i {
    font-size: 1.3rem;
}

.cart-note {
    margin-top: 14px;
    font-size: 0.78rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    justify-content: center;
}

.cart-note i {
    color: var(--green-primary);
    margin-top: 2px;
}

/* Add to cart icon styling tweak */
.product-action.add-to-cart {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.35);
}

.product-action.add-to-cart:hover {
    box-shadow: 0 6px 22px rgba(230, 126, 34, 0.45);
}

/* Brief animation when item added */
@keyframes cart-bump {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.25); }
}

.nav-cart.bump {
    animation: cart-bump 0.4s ease;
}

/* ========================================
   Checkout Modal
   ======================================== */
.checkout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    z-index: 1102;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.checkout-overlay.open {
    opacity: 1;
    visibility: visible;
}

.checkout-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 92%;
    max-width: 580px;
    max-height: 92vh;
    background: var(--white);
    border-radius: 24px;
    z-index: 1103;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 80px rgba(0,0,0,0.25);
}

.checkout-modal.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, var(--green-pale), var(--cream));
    flex-shrink: 0;
}

.checkout-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--green-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.checkout-header h3 i {
    color: var(--green-primary);
}

.checkout-close {
    background: transparent;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.checkout-close:hover {
    background: rgba(0,0,0,0.06);
    color: var(--text-dark);
}

.checkout-form {
    padding: 24px 28px 28px;
    overflow-y: auto;
}

.checkout-intro {
    font-size: 0.92rem;
    color: var(--text-medium);
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #ebe6da;
}

.checkout-form .form-group {
    margin-bottom: 16px;
}

.checkout-form .form-group label {
    font-size: 0.88rem;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--text-dark);
}

.checkout-form .form-group input,
.checkout-form .form-group textarea {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
    border-width: 1.5px;
}

.checkout-form .form-group textarea {
    height: auto;
    min-height: 60px;
    resize: vertical;
}

.checkout-form .form-row {
    gap: 14px;
    margin-bottom: 0;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
}

.required {
    color: #e74c3c;
    font-weight: 700;
}

.optional {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.78rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    padding: 12px 14px;
    background: var(--green-pale);
    border-radius: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--green-primary);
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.85rem !important;
    color: var(--text-medium) !important;
    margin: 0 !important;
    font-weight: 500 !important;
    cursor: pointer;
    line-height: 1.5;
}

.checkout-summary {
    margin-top: 8px;
    padding: 16px 18px;
    background: var(--cream);
    border-radius: 12px;
    margin-bottom: 18px;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-medium);
    padding: 5px 0;
}

.checkout-summary-row strong {
    color: var(--text-dark);
    font-weight: 600;
}

.checkout-summary-row.total {
    border-top: 1px dashed #d4c4a8;
    padding-top: 10px;
    margin-top: 5px;
    font-size: 1rem;
}

.checkout-summary-row.total strong {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--green-dark);
    font-weight: 700;
}

.checkout-actions {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.checkout-back-btn {
    padding: 14px 18px;
    background: transparent;
    color: var(--text-medium);
    border: 2px solid #e8e8e8;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    font-family: var(--font-body);
    flex-shrink: 0;
}

.checkout-back-btn:hover {
    border-color: var(--green-primary);
    color: var(--green-primary);
}

.checkout-submit-btn {
    flex: 1;
    padding: 14px 20px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 0.98rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
    font-family: var(--font-body);
}

.checkout-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
}

.checkout-submit-btn i {
    font-size: 1.25rem;
}

/* Field error state */
.checkout-form .form-group.has-error input,
.checkout-form .form-group.has-error textarea {
    border-color: #e74c3c;
    background: #fef5f4;
}

.field-error {
    display: block;
    color: #e74c3c;
    font-size: 0.78rem;
    margin-top: 4px;
}

@media (max-width: 576px) {
    .checkout-modal {
        width: 100%;
        max-width: none;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        top: 0;
        left: 0;
        transform: none;
    }
    .checkout-modal.open {
        transform: none;
    }
    .form-row-3 {
        grid-template-columns: 1fr 1fr;
    }
    .checkout-actions {
        flex-direction: column-reverse;
    }
    .checkout-back-btn {
        width: 100%;
        justify-content: center;
    }
}
