﻿:root {
    --primary-color: #2c3e50;
    --accent-color: #27ae60;
    --text-light: #ffffff;
    --text-dark: #333333;
    --nav-bg-transparent: rgba(0, 0, 0, 0.1);
    --nav-bg-scrolled: rgba(255, 255, 255, 0.95);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
    color: var(--text-dark);
}

.navbar.scrolled,
.navbar.static-nav {
    background-color: var(--nav-bg-scrolled);
    padding: 0.3rem 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

/* Index Page Specific Navbar Styling */
.index-page .navbar {
    color: var(--accent-color);
}

.index-page .navbar.scrolled {
    color: var(--text-dark);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* FAQ Accordion Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f9f9f9;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Arbitrary large height */
    padding: 1.2rem;
    border-top: 1px solid #eee;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links li a {
    text-decoration: none;
    color: inherit;
    font-weight: 400;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links li a:hover {
    color: var(--accent-color);
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
}

.nav-icons a {
    color: inherit;
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section: Compact Split */
.hero-compact {
    width: 100%;
    height: 50vh;
    /* Strict Half Screen */
    min-height: 450px;
    /* Prevent too small on tiny screens */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f2f7;
    font-family: var(--font-main);
    overflow: hidden;
    /* Ensure nothing spills out */
}

.hero-compact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 50/50 Split */
    width: 100%;
    height: 100%;
    max-width: 1600px;
    /* Wider container */
    margin: 0 auto;
}

/* Left Content Side */
.hero-split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    background: #fff;
    /* White bg for text readability */
}

.compact-badge {
    background: #e0f2f1;
    color: var(--accent-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.hero-split-content h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero-split-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 90%;
    line-height: 1.5;
}

.compact-btns {
    display: flex;
    gap: 15px;
}

.btn-compact-primary {
    background: #2c3e50;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(44, 62, 80, 0.2);
}

.btn-compact-primary:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.btn-compact-secondary {
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    background: #f5f5f7;
    transition: all 0.3s ease;
}

.btn-compact-secondary:hover {
    background: #e5e5ea;
}

/* Right Visual Side */
.hero-split-visual {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #002b5c;
    /* Dark blue to match banner bg */
}

/* Fade Slider */
.fade-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.fade-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    animation: fadeCycle 15s infinite;
}

.fade-slide:nth-child(1) {
    animation-delay: 0s;
}

.fade-slide:nth-child(2) {
    animation-delay: 5s;
}

.fade-slide:nth-child(3) {
    animation-delay: 10s;
}

@keyframes fadeCycle {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Glass Card Overlay */
/* Global Popup Ad */
.global-popup-ad {
    position: fixed;
    bottom: 100px;
    /* Raised to avoid WhatsApp */
    left: 30px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUpPopup 1s ease-out forwards;
}

.popup-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-img {
    width: 150px;
    /* Big and visible */
    height: auto;
    object-fit: contain;
    display: block;
}

/* Flash Scroller */
.flash-scroller {
    width: 100%;
    background-color: #e74c3c;
    color: white;
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
    position: relative;
    z-index: 10;
}

.flash-scroller-content {
    display: inline-block;
    white-space: nowrap;
    animation: flashScroll 20s linear infinite;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes flashScroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.popup-close-btn {
    position: absolute;
    top: -12px;
    right: -12px;
    background: #ff4757;
    color: white;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.popup-close-btn:hover {
    transform: scale(1.1);
    background: #ff6b81;
}

@keyframes slideUpPopup {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero-compact {
        height: auto;
        /* Allow growth on mobile */
        min-height: auto;
    }

    .hero-compact-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto 50vh;
        /* Stack: text top, image bottom */
    }

    .hero-split-content {
        padding: 4rem 2rem;
        align-items: center;
        text-align: center;
    }

    .compact-badge {
        align-self: center;
    }

    .compact-btns {
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .bento-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .main-tile,
    .slider-tile,
    .trust-tile {
        grid-column: span 1;
        grid-row: auto;
    }

    .slider-tile {
        height: 350px;
        order: 0;
    }

    .main-tile h1 {
        font-size: 2.5rem;
    }

    .trust-content {
        gap: 1rem;
        flex-direction: column;
    }

    .glass-overlay {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
    }

    .hero-modern {
        padding: 6rem 5% 3rem;
        height: auto;
    }

    .hero-container {
        flex-direction: column-reverse;
        /* Visual on top? Or text on top? Standard is text on top for mobile, or visual first. Let's do visual first for impact, or standard text first. Let's do Text First. */
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-text {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-modern {
        width: 100%;
        text-align: center;
    }

    .hero-blob {
        top: 20%;
        width: 120%;
        right: -10%;
    }

    .hero-main-img {
        max-width: 300px;
    }

    .hba1c-card {
        left: 0;
        bottom: -20px;
    }
}

/* About Page Specifics */
.about-content-section,
.mission-section {
    padding: 5rem 5%;
}

.mission-section {
    background-color: #fdf8f5;
}

.about-grid,
.mission-grid {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-grid {
    flex-direction: row-reverse;
}

.about-text,
.mission-text {
    flex: 1;
}

.about-text h2,
.mission-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p,
.mission-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-image,
.mission-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img,
.mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img,
.mission-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {

    .about-grid,
    .mission-grid {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Flash Ad Section */
.flash-ad-section {
    background-color: var(--accent-color);
    padding: 15px 5%;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.flash-ad-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
    letter-spacing: 1px;
    white-space: nowrap;
}

.flash-ad-section p {
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 400;
    max-width: none;
}

.flash-ad-section .btn {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 8px 25px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.flash-ad-section .btn:hover {
    background-color: #fff;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .flash-ad-section {
        flex-direction: column;
        padding: 2rem 5%;
        gap: 1rem;
        text-align: center;
    }

    .flash-ad-section h2 {
        font-size: 1.5rem;
    }

    .flash-ad-section p {
        font-size: 1rem;
    }
}

/* Leadership Section - Interactive Style */
.leadership-section {
    padding: 3rem 5%;
    background-color: #fff;
    text-align: center;
}

.meet-experts-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #5d6eff;
    /* Periwinkle blue from ref */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.meet-experts-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background-color: #5d6eff;
}

.leadership-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.leadership-description {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    /* Reduced min/max width */
    justify-content: center;
    /* Center the grid items */
    gap: 1.5rem;
    max-width: 900px;
    /* Reduced max-width */
    margin: 0 auto;
}

.leadership-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leadership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Image State */
.card-image-state {
    position: absolute;
    top: 0;
    left: 0;
}

.card-image-state img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leadership-card:hover .card-image-state img {
    transform: scale(1.05);
}

.glass-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    text-align: left;
    transition: opacity 0.3s ease;
}

.glass-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.glass-role {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Click to View Prompt */
.card-image-state::after {
    content: 'Click to view';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.leadership-card:hover .card-image-state::after {
    opacity: 1;
}

/* Text/Bio State (Hidden by default) */
.card-text-state {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 2;
    padding: 2rem 1.5rem;
    /* Reduced padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.leadership-card.active .card-text-state {
    opacity: 1;
    pointer-events: auto;
}

.bio-role {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.bio-name {
    font-size: 1.4rem;
    /* Reduced from 1.8rem */
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.bio-text {
    font-size: 0.9rem;
    /* Reduced from 1rem */
    color: #444;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.bio-social {
    display: flex;
    gap: 1rem;
}

.bio-social a {
    width: 40px;
    height: 40px;
    background-color: #5d6eff;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.bio-social a:hover {
    background-color: #4250d1;
}

/* Scrolling Banner */
.scrolling-banner {
    background-color: var(--accent-color);
    color: #fff;
    padding: 15px 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    position: relative;
    z-index: 5;
}

.scrolling-banner.green-variant {
    background-color: var(--accent-color);
    padding: 20px 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.banner-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 100%;
    animation: scroll 40s linear infinite;
}

.banner-content span {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    padding-right: 2rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Product Section */
.products-section {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 300;
}

.underline {
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Product Image Carousel */
.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background-color: #f4e4d4;
    padding: 0;
    /* Remove padding to let slides fill */
}

.product-slides {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    /* Will be dynamically adjusted if needed, or just standard flex */
}

.product-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
    flex-shrink: 0;
}

.product-slide img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-slide img {
    transform: scale(1.05);
}

.veg-symbol {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    border: 1px solid #27ae60;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.veg-symbol div {
    width: 10px;
    height: 10px;
    background-color: #27ae60;
    border-radius: 50%;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-info h3 {
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
}

.current-price {
    color: #000;
    font-weight: 700;
    font-size: 1.3rem;
}

.discount-text {
    color: #27ae60;
    font-weight: 600;
    font-size: 0.9rem;
}

.add-to-cart-btn {
    width: 100%;
    padding: 15px;
    background-color: #27ae60;
    color: #000;
    border: 2px solid #000;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 4px 4px 0px #000;
    margin-bottom: 5px;
}

.add-to-cart-btn:hover {
    background-color: #219150;
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #000;
}

.best-sale-tag {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #e74c3c;
    color: #fff;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 3;
    border-bottom-right-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.wishlist-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.wishlist-btn.active {
    color: #e74c3c;
}

.wishlist-btn i {
    font-size: 1.2rem;
}

/* Video Section */
.video-section {
    padding: 0 5% 5rem 5%;
    background-color: #fff;
    text-align: center;
}

.video-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #e74c3c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3rem;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.video-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Bio Fermentation Process Section */
.bio-process-section {
    padding: 5rem 5%;
    background-color: #f5e6d3;
    text-align: center;
}

.bio-process-title {
    font-size: 3rem;
    font-weight: 800;
    color: #d32f2f;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 2px solid #333;
    display: inline-block;
}

.step-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e0e0e0;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-title {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.step-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* Online Marketplaces Section */
.marketplace-section {
    padding: 3rem 5%;
    background-color: #fff;
    text-align: center;
}

.marketplace-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
}

.marketplace-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.marketplace-card {
    background: #fff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 250px;
}

.marketplace-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.marketplace-logo {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.marketplace-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.marketplace-logo i {
    font-size: 3rem;
    color: var(--accent-color);
}

.marketplace-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

/* Website Promotion Card */
.website-promo {
    background: linear-gradient(135deg, #27ae60 0%, #219150 100%);
    border-color: #27ae60;
    color: #fff;
}

.website-promo:hover {
    border-color: #219150;
}

.promo-badge {
    position: absolute;
    top: -10px;
    background-color: #e74c3c;
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
}

.promo-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
}

.promo-text {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: #fff;
}

.promo-text strong {
    font-size: 1.1rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.promo-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: #fff;
    color: #27ae60;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-btn:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}



.testimonials-container {
    width: 100%;
    height: 100%;
    min-height: 250px;
}

.testimonial-image {
    width: 100%;
    height: 100%;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-right {
        margin-right: 20px;
    }

    .video-heading {
        font-size: 2rem;
    }

    .bio-process-title {
        font-size: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .marketplace-container {
        flex-direction: column;
        gap: 2rem;
    }

    .marketplace-card {
        width: 100%;
    }

    .marketplace-title {
        font-size: 1.5rem;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-title {
        font-size: 1.5rem;
    }

    .testimonials-container {
        min-height: 200px;
    }
}

/* --- New Navigation Styles --- */
.nav-left {
    display: flex;
    align-items: center;
}

.nav-left a {
    color: #333;
    font-size: 1.2rem;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.nav-left a:hover {
    color: var(--accent-color);
}

/* --- New FAQ Section Styles --- */
.faq-section {
    padding: 4rem 5%;
    background-color: #f9f9f9;
    /* Light background for contrast */
}

.faq-container-new {
    display: grid;
    grid-template-columns: 1fr 2fr;
    /* Left title, Right content */
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-left-new {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.faq-title-new {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    /* Green */
    line-height: 1.1;
    text-transform: uppercase;
}

.faq-right-new {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #fff;
    /* White background for items */
    border: 1px solid #ddd;
    border-radius: 0;
    /* Flat design */
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #fff;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
    /* Adjust as needed */
}

.explore-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-color);
    /* Green */
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    border-radius: 0;
    /* Flat design */
    align-self: flex-start;
    margin-top: 1rem;
    border: none;
}

.explore-all-btn:hover {
    background-color: #219150;
}


/* --- Blogs Section Styles --- */
.blogs-section {
    padding: 4rem 5%;
    background-color: #fff;
}

.blogs-title {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: var(--accent-color);
    /* Green */
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background-color: #fdf8f5;
    /* Light beige background */
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-image img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.blog-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-transform: uppercase;
    color: #333;
}

.blog-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}


/* --- Footer Styles --- */
.footer {
    background-color: var(--accent-color);
    /* Green */
    color: #fff;
    padding: 4rem 5% 1rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 3rem;
}

.footer-column h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.contact-links i {
    margin-right: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* --- Floating Widgets --- */

/* Earn Button */
.earn-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 1001;
    border-radius: 5px 5px 0 0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.earn-btn:hover {
    background-color: #c0392b;
}

/* Referral Popup */
.referral-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.referral-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    display: flex;
    width: 90%;
    max-width: 900px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
    z-index: 10;
}

.popup-left {
    flex: 1;
    background-color: #111;
    color: #fff;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-left h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.popup-left h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #aaa;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-item i {
    font-size: 1.5rem;
    color: #fff;
    margin-top: 5px;
}

.step-item p {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.4;
}

.popup-right {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fff;
}

.popup-illustration img {
    max-width: 80%;
    margin-bottom: 2rem;
}

.popup-right h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.phone-input {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    width: 100%;
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.country-code {
    font-weight: 600;
    margin-right: 10px;
    font-size: 1.1rem;
}

.phone-input input {
    border: none;
    outline: none;
    font-size: 1.1rem;
    flex: 1;
}

.get-link-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    transition: background-color 0.3s ease;
}

.get-link-btn:hover {
    background-color: #333;
}

.powered-by {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #888;
}

.powered-by a {
    color: #0066cc;
    text-decoration: none;
}

/* Floating Icons */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.chatbot-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #000;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 25px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.chatbot-float:hover {
    transform: scale(1.1);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .faq-container-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-title-new {
        font-size: 2.5rem;
        text-align: center;
    }

    .blogs-title {
        font-size: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}



/* --- Floating Widgets --- */

/* Earn Button */
.earn-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right bottom;
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 1001;
    border-radius: 5px 5px 0 0;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.earn-btn:hover {
    background-color: #c0392b;
}

/* Referral Popup */
.referral-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.referral-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    display: flex;
    width: 90%;
    max-width: 900px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
    z-index: 10;
}

.popup-left {
    flex: 1;
    background-color: #111;
    color: #fff;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-left h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.popup-left h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #aaa;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-item i {
    font-size: 1.5rem;
    color: #fff;
    margin-top: 5px;
}

.step-item p {
    font-size: 1rem;
    color: #ddd;
    line-height: 1.4;
}

.popup-right {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #fff;
}

.popup-illustration img {
    max-width: 80%;
    margin-bottom: 2rem;
}

.popup-right h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.phone-input {
    display: flex;
    align-items: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    width: 100%;
    max-width: 300px;
    margin-bottom: 1.5rem;
}

.country-code {
    font-weight: 600;
    margin-right: 10px;
    font-size: 1.1rem;
}

.phone-input input {
    border: none;
    outline: none;
    font-size: 1.1rem;
    flex: 1;
}

.get-link-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    transition: background-color 0.3s ease;
}

.get-link-btn:hover {
    background-color: #333;
}



/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .faq-container-new {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-title-new {
        font-size: 2.5rem;
        text-align: center;
    }

    .blogs-title {
        font-size: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* --- Scientific Literature Section --- */
.literature-section {
    padding: 4rem 5%;
    background-color: #fff;
}

.literature-title {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.literature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.literature-card {
    background-color: transparent;
    border: none;
    padding: 1rem 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    /* Add separator instead of box */
}

.literature-card:last-child {
    border-bottom: none;
}

.literature-card:hover {
    transform: none;
    box-shadow: none;
}

.literature-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #333;
}

.literature-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-study-btn {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: underline;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.read-study-btn:hover {
    color: #333;
}

/* --- Contact / Store Section --- */
.contact-section {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.submit-btn {
    background-color: var(--accent-color);
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: #219150;
    /* Slightly darker green */
}

.store-details-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.store-info {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.store-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.store-info p {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.store-hours {
    margin: 1.5rem 0;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.directions-btn {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
    transition: all 0.3s;
}

.directions-btn:hover {
    color: #333;
    border-color: #333;
}

/* --- Data Section --- */
.data-section {
    padding: 4rem 5%;
    background-color: #f5f5f5;
}

.data-title {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.data-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.data-card:hover {
    transform: translateY(-5px);
}

.data-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: 'Oswald', sans-serif;
}

.data-label {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

/* About Page Styles */
.about-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1599058945522-28d584b6f0ff?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-hero h1 {
    font-size: 4rem;
    font-weight: 300;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 5px;
}

.about-content-section {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }
}

/* Force static nav visibility */
.navbar.static-nav {
    background-color: var(--nav-bg-scrolled) !important;
    padding: 1rem 5% !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    color: var(--text-dark) !important;
}

.navbar.static-nav .nav-links li a,
.navbar.static-nav .nav-icons a,
.navbar.static-nav .logo {
    color: var(--text-dark) !important;
}

/* --- Super Advantage Section --- */
.super-advantage-section {
    padding: 4rem 5%;
    background-color: #fff;
    text-align: center;
}

.advantage-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.advantage-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 150px;
}

.advantage-icon {
    width: 100px;
    height: 100px;
    background-color: rgba(39, 174, 96, 0.1);
    /* Light green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 2px solid var(--accent-color);
    /* Green border */
    position: relative;
    transition: transform 0.3s ease;
}

.advantage-item:hover .advantage-icon {
    transform: translateY(-5px);
    background-color: rgba(39, 174, 96, 0.2);
}

.advantage-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
    /* Green icon */
}

.ban-line {
    position: absolute;
    width: 60%;
    height: 3px;
    background-color: var(--accent-color);
    transform: rotate(-45deg);
    top: 50%;
    left: 20%;
    display: none;
}

.advantage-item p {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #000;
    letter-spacing: 0.5px;
}

.advantage-divider {
    width: 1px;
    height: 100px;
    background-color: #ccc;
    align-self: center;
    margin-bottom: 2rem;
}

@media (max-width: 900px) {
    .advantage-divider {
        display: none;
    }

    .advantage-grid {
        gap: 3rem;
    }
}

/* --- Cravings Are Real Section --- */
.cravings-section {
    padding: 5rem 5%;
    background-color: #fffbf0;
    text-align: center;
    position: relative;
}

.cravings-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: var(--accent-color);
    /* Green Color */
    text-transform: uppercase;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.cravings-grid-wrapper {
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto 3rem;
    /* Optional: can be removed if not needed for grid, but keeping helps center */
}

.cravings-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 2rem;
    padding-bottom: 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.cravings-grid::-webkit-scrollbar {
    display: none;
}

/* FAQ Product Section */
.faq-section-product {
    padding: 5rem 5%;
    background-color: #fdf8f5;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 4rem;
    color: var(--primary-color);
    text-transform: uppercase;
}

.faq-product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.faq-product-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.faq-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-product-content {
    flex: 1;
}

/* Reusing FAQ Accordion Styles with slight tweaks if needed */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: all 0.3s ease-out;
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Approximate height */
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}



@media (max-width: 900px) {
    .faq-product-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-product-image {
        height: 300px;
        order: -1;
    }
}

.super-squad-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: #f00;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    cursor: pointer;
    z-index: 10;
}

.super-squad-badge:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    /* .cravings-grid {
        grid-template-columns: repeat(2, 1fr);
    } */
}

@media (max-width: 768px) {
    .cravings-title {
        font-size: 2rem;
    }



    .cravings-card {
        min-width: 80%;
    }

    .super-squad-badge {
        position: static;
        display: inline-flex;
        margin-top: 2rem;
    }
}

/* Cart Icon & Badge */
.cart-icon-container {
    position: relative;
    display: inline-block;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color, #e67e22);
    /* Fallback to orange if var not defined */
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    /* Hide off-screen */
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.cart-drawer.active {
    right: 0;
}

/* Cart Header */
.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin: 0;
    color: #333;
}

.close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    color: #333;
}

/* Cart Items */
.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 1rem;
    align-items: start;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    color: #333;
}

.cart-item-price {
    color: var(--primary-color, #e67e22);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    background: #f0f0f0;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.cart-item-qty {
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

.remove-item-btn {
    margin-left: auto;
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 5px;
}

.empty-cart-msg {
    text-align: center;
    color: #777;
    margin-top: 2rem;
    font-style: italic;
}

/* Cart Footer */
.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    background: #f9f9f9;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #4a5d4f;
    /* Greenish/Dark button */
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.checkout-btn:hover {
    background: #3a4b3f;
}

/* Mobile Responsiveness for Cart */
@media (max-width: 480px) {
    .cart-drawer {
        width: 100%;
        /* Full width on mobile */
    }
}

/* Wishlist Icon & Badge */
.wishlist-icon-container {
    position: relative;
    display: inline-block;
}

.wishlist-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color, #e67e22);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Wishlist Drawer */
.wishlist-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    /* Hide off-screen */
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.wishlist-drawer.active {
    right: 0;
}

/* Reuse Cart Item styles for Wishlist but with specific tweaks if needed */
.add-to-cart-btn-sm {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    margin-top: 5px;
}

.add-to-cart-btn-sm:hover {
    background-color: #3a4b3f;
}

/* Mobile Responsiveness for Wishlist */
@media (max-width: 480px) {
    .wishlist-drawer {
        width: 100%;
    }
}

/* Login Drawer */
/* Login Drawer - Liquid Glass Style */
.login-drawer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 500px;
    height: auto;
    max-height: 85vh;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: 90%;
    opacity: 0;
    visibility: hidden;
    color: #000;
}

.login-drawer.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    right: auto;
}

.auth-forms {
    padding: 2rem;
    flex: 1;
    overflow-y: auto;
}

.auth-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.auth-tab {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    transition: all 0.3s;
    font-family: 'Oswald', sans-serif;
}

.auth-tab.active {
    color: var(--primary-color, #e67e22);
    border-bottom: 2px solid var(--primary-color, #e67e22);
}

.auth-form {
    display: none;
    flex-direction: column;
    gap: 1.2rem;
}

.auth-form.active {
    display: flex;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #000;
}

.form-group input {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.auth-btn {
    padding: 1rem;
    background: #4a5d4f;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 1rem;
}

.auth-btn:hover {
    background: #3a4b3f;
}

.auth-message {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: #e74c3c;
    min-height: 1.2rem;
}

.success-message {
    color: #27ae60;
}

/* User Logged In State */
.user-profile-view {
    display: none;
    /* Hidden by default */
    padding: 2rem;
    text-align: center;
}

.user-profile-view.active {
    display: block;
}

.user-avatar-large {
    width: 80px;
    height: 80px;
    background: #f0f0f0;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #777;
}

.user-welcome {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.user-email {
    color: #777;
    margin-bottom: 2rem;
}

.logout-btn {
    background: none;
    border: 1px solid #e74c3c;
    color: #e74c3c;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.logout-btn:hover {
    background: #e74c3c;
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .login-drawer {
        width: 100%;
    }
}

/* Search Drawer */
/* Search Drawer - Liquid Glass Style */
.search-drawer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 600px;
    height: auto;
    max-height: 80vh;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    max-width: 90%;
    opacity: 0;
    visibility: hidden;
    color: #000;
}

.search-drawer.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    right: auto;
    /* Reset right property */
}

.search-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
}

.search-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.5rem;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: var(--primary-color, #e67e22);
}

.search-icon-input {
    position: absolute;
    left: 1rem;
    color: #888;
}

.search-results {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.search-result-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.search-result-item:hover {
    background: #fdfdfd;
}

.search-result-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.search-result-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.search-result-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: #333;
    margin: 0 0 0.2rem 0;
}

.search-result-price {
    font-weight: 600;
    color: var(--primary-color, #e67e22);
    font-size: 0.9rem;
}

.search-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
}

.search-btn-icon {
    background: none;
    border: 1px solid #ddd;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #555;
}

.search-btn-icon:hover {
    background: var(--primary-color, #e67e22);
    border-color: var(--primary-color, #e67e22);
    color: white;
}

.no-results {
    text-align: center;
    color: #888;
    margin-top: 2rem;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .search-drawer {
        width: 100%;
    }
}

/* Directions Section */
.directions-section {
    padding: 5rem 5%;
    background-color: #fdf8f5;
    text-align: center;
}

.directions-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color, #e67e22);
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.directions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.direction-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.step-icon {
    width: 120px;
    height: 120px;
    background-color: #fff;
    border: 3px solid var(--accent-color, #27ae60);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step-icon:hover {
    transform: scale(1.05);
}

.step-icon i {
    font-size: 3rem;
    color: var(--accent-color, #27ae60);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color, #27ae60);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 0.5rem;
}

.step-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.5;
    max-width: 250px;
}

/* Transparency Section */
.transparency-section {
    padding: 5rem 5%;
    background-color: #faf9f6;
    /* Off-white background */
    text-align: center;
}

.transparency-header {
    margin-bottom: 4rem;
}

.transparency-header h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #000;
    font-family: var(--font-main);
}

.transparency-header p {
    font-size: 1.1rem;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.transparency-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    /* Allow scrolling if screen is too narrow */
    padding-bottom: 15px;
    /* Space for scrollbar */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.transparency-grid::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for Chrome/Safari/Opera */
}

.transparency-item {
    flex: 1 1 150px;
    /* Grow, shrink, base width */
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.transparency-icon {
    font-size: 3rem;
    color: #555;
    /* Dark grey icons */
    margin-bottom: 0.5rem;
}

.transparency-item p {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    line-height: 1.3;
}

/* Specific Icons Styling */
.veg-icon-large {
    width: 48px;
    height: 48px;
    border: 4px solid #008000;
    /* Green border */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.veg-circle {
    width: 24px;
    height: 24px;
    background-color: #008000;
    border-radius: 50%;
}

.gut-friendly-badge svg {
    transform: rotate(-15deg);
    /* Slight tilt maybe? Optional */
}

.gut-friendly-badge text {
    fill: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .transparency-grid {
        gap: 2rem;
    }

    .transparency-item {
        flex: 1 1 40%;
        /* 2 per row on mobile */
    }
}

/* Bio Fermentation Process Section */
.bio-process-section {
    padding: 5rem 5%;
    text-align: center;
    background-color: #fff;
}

.bio-process-title {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    text-transform: uppercase;
    font-weight: 700;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Add connector lines roughly */
/* Connector lines removed as per request */
.process-step:not(:last-child)::after {
    display: none !important;
}

@media (min-width: 1024px) {
    .process-step:not(:last-child)::after {
        display: none !important;
    }
}

.step-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #999;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 4px solid #fff;
    outline: 2px solid var(--accent-color);
    /* Green outline */
    z-index: 1;
    background: #fff;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.step-image:hover img {
    transform: scale(1.1);
}

.step-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.step-description {
    font-size: 0.95rem;
    color: #666;
    max-width: 200px;
    line-height: 1.4;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #FFF !important;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #FFF !important;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.4);
}

/* Ensure icon size is inherited or specific */
.whatsapp-float i {
    width: auto;
    height: auto;
}

/* --- Blog Page Styles --- */
.blog-hero {
    background: #fff;
    padding: 180px 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000;
    position: relative;
    z-index: 1;
}

.blog-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
}

.blog-breadcrumbs {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000;
}

.blog-breadcrumbs span {
    margin: 0 5px;
}

.blog-hero h1 {
    font-size: 5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Oswald', sans-serif;
    color: #dd3333;
    margin: 0;
    line-height: 1;
}

.blog-badge {
    background-color: #111;
    color: #fff;
    padding: 10px 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Mobile Responsive Blog Hero */
@media (max-width: 768px) {
    .blog-hero {
        padding: 120px 5% 40px;
    }

    .blog-hero h1 {
        font-size: 3rem;
    }

    .blog-badge {
        font-size: 1rem;
        padding: 8px 20px;
    }

    .blog-breadcrumbs {
        font-size: 0.9rem;
    }
}

/* --- Responsive Navbar --- */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        margin-left: 15px;
        color: var(--text-dark);
    }

    .nav-center {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
        /* Hidden by default */
        z-index: 999;
    }

    .nav-center.active {
        display: flex;
        /* Shown when active */
    }

    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .nav-right {
        gap: 10px;
    }

    .nav-right a {
        font-size: 1.1rem;
    }

}


/* Info Popup Modal (Generic) */
.info-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-popup-overlay.active {
    display: flex;
    opacity: 1;
}

.info-popup-content {
    background-color: #fff;
    width: 90%;
    max-width: 600px;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 80vh;
    overflow-y: auto;
}

.info-popup-overlay.active .info-popup-content {
    transform: translateY(0);
}

.info-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
}

.info-popup-close:hover {
    color: #000;
}

.info-popup-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.info-popup-header h2 {
    font-family: 'Oswald', sans-serif;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.info-popup-body {
    font-family: 'Outfit', sans-serif;
    color: #444;
    line-height: 1.6;
}

.info-popup-body h3 {
    color: var(--accent-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.info-popup-body ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

/* Ensure Product Grid has spacing for second line */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    row-gap: 4rem;
    /* Specific request to "make down" */
    margin-bottom: 3rem;
    justify-content: center;
}

/* Variant Selector Styling - Premium Simple */
.variant-selector {
    margin-bottom: 1rem;
    width: 100%;
}

.variant-dropdown {
    width: 100%;
    padding: 10px 15px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: #333;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    appearance: none;
    /* Remove default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.variant-dropdown:focus {
    outline: none;
    border-color: #333;
}

/* Custom Arrow using background SVG or simply ensuring clean look */
.variant-selector {
    position: relative;
}

.variant-selector::after {
    content: '\f078';
    /* FontAwesome Chevron Down */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;

    /* Product Slider Styles */
    .product-image {
        width: 100%;
        overflow: hidden;
        /* Hide overflow for slider */
        border-radius: 8px;
        margin-bottom: 1rem;
        position: relative;
    }

    .product-slides {
        display: flex;
        transition: transform 0.5s ease-in-out;
        width: 100%;
    }

    .product-slide {
        min-width: 100%;
        /* Force full width for each slide */
        flex-shrink: 0;
    }

    .product-slide img {
        width: 100%;
        height: 200px;
        /* Consistent height matching static cards */
        object-fit: cover;
        display: block;
        border-radius: 8px;
    }