@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Poppins:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap');

:root {
    --primary-color: #2E7D32;
    /* Leaf Green */
    --primary-dark: #1B5E20;
    --secondary-color: #5D4037;
    /* Soil Brown */
    --accent-color: #FFF9C4;
    /* Light Yellow */
    --accent-dark: #FBC02D;

    --bg-color: #FAFAFA;
    --text-color: #333333;
    --text-light: #666666;
    --white: #FFFFFF;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
    --font-serif: 'Playfair Display', serif;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.15);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    /* Critical for mobile */
    width: 100%;
    position: relative;
    -webkit-text-size-adjust: 100%;
}

html {
    overflow-x: hidden;
    /* Double ensure */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin-bottom: 0.5em;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: var(--font-heading);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.6);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-color);
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    height: 110px;
    /* Increased for premium logo */
    display: flex;
    align-items: center;
}

nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    /* Prevent overflow */
    box-sizing: border-box;
    /* Handle padding correctly */
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 90px;
    /* PREMIUM LARGE SIZE */
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-color);
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Mobile Menu */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    margin-top: 110px;
    /* Offset fixed header */
    height: 85vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url('../assets/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    font-family: var(--font-serif);
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--white);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Features / Trust Badges */
.features {
    background-color: var(--white);
    padding: 50px 0;
    border-bottom: 1px solid #eee;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Products Section */
.products {
    background-color: var(--bg-color);
}

.products h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid #eee;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    height: 250px;
    background-color: #eee;
    /* Placeholder bg */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-title {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.product-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.product-features {
    list-style: disc inside;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #555;
    text-align: left;
}

/* Comparison Section */
.comparison {
    background-color: var(--white);
}

.comparison-table-wrapper {
    background: linear-gradient(135deg, #E8F5E9, #FAFAFA);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table th {
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.comparison-table .brand-col {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.comparison-table .normal-col {
    color: #999;
}

/* About Section */
.about {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    background-image: linear-gradient(rgba(93, 64, 55, 0.9), rgba(93, 64, 55, 0.9)), url('../assets/hero.png');
    /* Reuse hero for texture */
    background-size: cover;
    background-attachment: fixed;
}

.about h2 {
    color: var(--accent-color);
    font-family: var(--font-serif);
    font-size: 2.5rem;
}

.about p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact / Footer */
.footer {
    background-color: var(--bg-color);
    padding-top: 60px;
    border-top: 5px solid var(--primary-color);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 40px;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.social-icon:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: var(--accent-dark);
}

/* Floating Button */
.float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    font-size: 30px;
    z-index: 999;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .logo img {
        height: 60px;
        /* Smaller on mobile */
    }

    .nav-links {
        display: none;
        /* Hide for now, simpler without complex JS menu */
    }

    .hamburger {
        display: block;
        /* Show hamburger */
    }

    /* Mobile Menu State - styled here for JS toggling */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        /* Changed from absolute to fixed for better stability */
        top: 110px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        z-index: 1100;
        /* Ensure it's above everything */
        border-top: 1px solid #eee;
    }

    .hero-buttons {
        flex-direction: column;
        padding: 0 20px;
    }
}

/* Initial hidden state for animation */
.product-card,
.feature-item,
.comparison-table-wrapper,
.veg-item,
.mg-card {
    opacity: 0;
    /* Transformation handled by JS intersection observer */
}

/* Daily Veg Section */
.veg-section {
    background-color: #FFF3E0;
    /* Light Orange/Cream for contrast */
    position: relative;
}

.veg-header {
    text-align: center;
    margin-bottom: 40px;
}

.veg-date {
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 10px;
}

#veg-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.veg-item {
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.veg-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.veg-item span {
    font-weight: 500;
    flex: 1;
    margin: 0 15px;
}

.veg-btn {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Microgreens Section */
.mg-section {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../assets/microgreens.png');
    background-size: cover;
    background-attachment: fixed;
}

#mg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.mg-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.mg-card h3 {
    color: var(--primary-dark);
    border-bottom: 2px solid var(--accent-dark);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.mg-card ul {
    columns: 2;
    /* Split list into 2 columns */
    margin-bottom: 20px;
}

.mg-card ul li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mg-card ul li i {
    color: #8BC34A;
    font-size: 0.8rem;
}

/* Updated About Section Styles */
.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
    text-align: left;
}

.mission-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mission-box h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.core-values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.value-chip {
    background: white;
    color: var(--primary-dark);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .mg-card ul {
        columns: 1;
    }
}

/* Gallery Section */
.gallery-section {
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px;
    transform: translateY(100px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--accent-color);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.gallery-overlay p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Scrollable Box Redesign */
.live-availability-section {
    background-color: #F1F8E9;
    position: relative;
    overflow: hidden;
}

.live-availability-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/hero.png');
    opacity: 0.05;
    pointer-events: none;
}

.scroll-box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.scroll-box {
    height: 380px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(46, 125, 50, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f0f0f0;
    transition: all 0.3s ease;
}

.scroll-box:hover {
    box-shadow: 0 0 15px rgba(46, 125, 50, 0.2);
    border-color: var(--primary-color);
}

.scroll-box::-webkit-scrollbar {
    width: 6px;
}

.scroll-box::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.scroll-box::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 6px;
}

.box-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    z-index: 10;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
}

.box-header h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.box-header p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

.updated-badge {
    background: #E8F5E9;
    color: var(--primary-dark);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 5px;
    border: 1px solid var(--primary-color);
}

.scroll-content {
    padding: 15px;
}

.pill-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pill-item {
    background: white;
    padding: 12px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.pill-item:hover {
    transform: translateX(5px);
    border-color: var(--primary-color);
    background: #FAFAFA;
}

.pill-item i {
    color: var(--primary-color);
    margin-right: 12px;
}

.pill-item span {
    font-weight: 500;
    font-size: 0.95rem;
    color: #333;
}

.box-footer {
    padding: 15px;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    background: rgba(255, 255, 255, 0.5);
}

/* Microgreen Collapsible */
.mg-category {
    margin-bottom: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.mg-header {
    background: #F9FBE7;
    padding: 12px 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.mg-header:hover {
    background: #F0F4C3;
}

.mg-body {
    display: none;
    padding: 15px;
}

.mg-body.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Microgreens Pre-Order Styling */
.mg-preorder-badge {
    background: #E3F2FD;
    color: #1565C0;
    border: 1px solid #1E88E5;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    width: fit-content;
}

.order-rules-box {
    background: #FFFDE7;
    border-left: 4px solid #FBC02D;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.order-rules-box h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #F9A825;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rule-item {
    display: flex;
    margin-bottom: 6px;
    gap: 8px;
    color: #555;
    align-items: center;
}

.rule-item i {
    color: #FBC02D;
    width: 16px;
    text-align: center;
}

.cta-whatsapp-block {
    margin-top: 20px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.cta-whatsapp-block p {
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
}

/* Video Lightbox Styles */
video.lightbox-content {
    background: #000;
    width: 100%;
    max-height: 80vh;
}

.lightbox-media-container {
    width: 80%;
    max-width: 900px;
    margin: auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-media-container .lightbox-content {
    width: 100%;
    margin: 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

/* Farm Transparency Hub */
#video-hub {
    background-color: #FAFAFA;
}

.hub-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.tab-btn {
    background: white;
    border: 2px solid #EEE;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn i {
    font-size: 1.2rem;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

/* Instagram Tab */
.insta-feed-container {
    background: white;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 20px;
}

.insta-profile-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #EEE;
    margin-bottom: 20px;
}

.insta-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #E1306C;
    padding: 2px;
}

.insta-info h4 {
    margin: 0;
    font-size: 1.2rem;
}

.btn-insta-follow {
    background: #0095F6;
    color: white;
    padding: 6px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.insta-stats {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    flex-grow: 1;
}

.insta-qr {
    text-align: center;
    margin-left: auto;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.insta-post-item {
    aspect-ratio: 1;
    background: #DDD;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.insta-post-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.insta-post-item:hover img {
    transform: scale(1.05);
}

/* Video Vault Tab */
.vault-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #CCC;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.vault-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.video-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    cursor: pointer;
    position: relative;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumb {
    height: 160px;
    background: #000;
    position: relative;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.video-info {
    padding: 15px;
}

.video-info h4 {
    margin: 0 0 5px;
    font-size: 1rem;
    color: #333;
}

.video-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #777;
}

/* Leadership Section */
.leadership-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 0 10px;
}

.leader-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px;
    width: 100%;
    max-width: 380px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.leader-img-container {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    position: relative;
}

.leader-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.leader-info h3 {
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.leader-role {
    color: #1B5E20;
    /* Dark Green (High Contrast) */
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-desc {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Legal Verification Styles */
.verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #F1F8E9;
    border: 1px solid #C5E1A5;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #33691E;
    font-weight: 600;
    transition: 0.3s;
}

.verification-badge:hover {
    background: #DCEDC8;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.legal-modal {
    display: none;
    position: fixed;
    z-index: 2100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s;
}

.legal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.4s;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.legal-header {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    text-align: center;
}

.legal-header h3 {
    margin: 0;
    font-size: 1.4rem;
}

.legal-header p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.legal-close {
    color: white;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
}

.legal-close:hover {
    color: #FFC107;
}

.legal-body {
    padding: 25px;
    overflow-y: auto;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

.legal-section {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 10px;
}

.legal-section ul {
    list-style: none;
    padding: 0;
}

.legal-section li {
    margin-bottom: 6px;
}

.verified-box {
    background: #E8F5E9;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #C8E6C9;
    text-align: center;
}

.verified-box h4 {
    border: none;
    padding: 0;
    color: #2E7D32;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/* Organic Manure Feature Section */
.product-feature-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #eee;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* On Mobile, stack them, but use Flex to reorder if needed, or simple grid order */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-image-col {
        order: -1;
        /* Image first on mobile */
    }
}

.feature-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-new {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 10px;
}

.feature-title {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.feature-subtitle {
    color: #444;
    /* Darker High Contrast */
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-desc {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.variant-selector {
    margin-bottom: 20px;
}

.variant-selector p {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.variant-options {
    display: flex;
    gap: 10px;
}

.variant-btn {
    background: white;
    border: 2px solid #ddd;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.variant-btn.active,
.variant-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #F1F8E9;
}

.feature-price-block {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.price-display {
    font-size: 2rem;
    font-weight: 800;
    color: #333;
}

.feature-actions {
    display: flex;
    gap: 10px;
}

.feature-image-col {
    background: #F9FBE7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.feature-main-img {
    width: 100%;
    max-width: 250px;
    /* REDUCED SIZE */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
    transition: 0.3s;
}

.feature-main-img:hover {
    transform: scale(1.02);
}

.trust-badges-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badge {
    background: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 5px;
}

.feature-accordion details {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}

.feature-accordion summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    color: #333;
}

.accordion-content {
    padding-top: 10px;
    font-size: 0.9rem;
    color: #555;
}

.check-list li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-list li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
}

/* --- MOBILE POLISH (Responsive Fixes) --- */
@media (max-width: 768px) {

    /* Cart Drawer Full Width */
    .cart-drawer {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Manure Kit Padding & Stacking */
    .product-feature-card {
        border-radius: 12px;
    }

    /* Universal Mobile Overflow Fix */
    section,
    header,
    footer,
    .container {
        max-width: 100%;
        overflow-x: clip;
    }

    /* Comparison Table Scroll instead of Break */
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    .product-feature-card {
        border-radius: 12px;
    }

    .feature-details {
        padding: 25px 20px;
    }

    .feature-image-col {
        padding: 30px;
    }

    .feature-title {
        font-size: 1.6rem;
    }

    .price-display {
        font-size: 1.8rem;
    }

    /* Video Hub Tabs Wrap */
    .hub-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        flex: 1 1 auto;
        /* Grow to fill */
        justify-content: center;
    }

    /* Scroll Boxes Height Adjustment */
    .scroll-box {
        height: 340px;
        /* Slightly smaller on mobile */
    }

    /* --- MODERN CART & BUCKET UI --- */

    /* 1. Header Icons (Glassmorphic) */
    .nav-actions {
        display: flex;
        gap: 15px;
        margin-left: 20px;
        align-items: center;
    }

    .nav-icon-btn {
        position: relative;
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(8px);
        border-radius: 50%;
        /* Rounded */
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        /* Soft shadow */
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        /* Bouncy transition */
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .nav-icon-btn i {
        font-size: 1.2rem;
        color: var(--primary-dark);
        transition: 0.3s;
    }

    .nav-icon-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 6px 15px rgba(46, 125, 50, 0.2);
        border-color: var(--primary-color);
    }

    .nav-icon-btn:hover i {
        color: var(--primary-color);
    }

    /* Green Ring Animation */
    .nav-icon-btn.added-anim {
        animation: bounceRing 0.6s ease;
        border-color: var(--primary-color);
    }

    @keyframes bounceRing {
        0% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7);
        }

        50% {
            transform: scale(1.2);
            box-shadow: 0 0 0 10px rgba(46, 125, 50, 0);
        }

        100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(46, 125, 50, 0);
        }
    }

    /* Notification Badge */
    .badge-count {
        position: absolute;
        top: -2px;
        right: -2px;
        background: var(--accent-dark);
        color: #333;
        font-size: 0.7rem;
        font-weight: 800;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        border: 2px solid white;
    }

    /* 2. Slide Panels (Desktop: Top Slide-Down) */
    .slide-panel {
        position: fixed;
        top: -100%;
        /* Hidden above */
        right: 20px;
        /* Aligned to right */
        width: 380px;
        max-height: 80vh;
        background: white;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        border-radius: 0 0 20px 20px;
        /* Rounded bottom */
        z-index: 2000;
        transition: top 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border: 1px solid #eee;
        border-top: none;
    }

    .slide-panel.active {
        top: 80px;
        /* Just below header */
    }

    /* Panel Internals */
    .panel-header {
        padding: 15px 20px;
        background: #FAFAFA;
        border-bottom: 1px solid #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .panel-header h3 {
        margin: 0;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .close-panel {
        font-size: 1.5rem;
        cursor: pointer;
        color: #999;
    }

    .panel-body {
        padding: 20px;
        overflow-y: auto;
        flex: 1;
        min-height: 150px;
    }

    .panel-footer {
        padding: 20px;
        border-top: 1px solid #eee;
        background: white;
    }

    .panel-actions {
        display: flex;
        gap: 10px;
        margin-top: 15px;
    }

    /* Overlay */
    #panel-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(3px);
        z-index: 1900;
        display: none;
        opacity: 0;
        transition: opacity 0.3s;
    }

    #panel-overlay.show {
        display: block;
        opacity: 1;
    }

    /* 3. Mobile Optimization (Bottom Sheet) */
    @media (max-width: 768px) {

        /* Pin Icons to Header */
        .nav-actions {
            margin-left: auto;
            /* Push to right */
            margin-right: 15px;
            /* Spacing before hamburger */
            gap: 10px;
        }

        .nav-icon-btn {
            width: 40px;
            height: 40px;
        }

        /* Bottom Slide-Up Layout */
        .slide-panel {
            top: auto;
            bottom: -100%;
            /* Hidden below */
            left: 0;
            right: 0;
            width: 100%;
            /* Full Width */
            max-width: 100%;
            max-height: 85vh;
            border-radius: 20px 20px 0 0;
            /* Rounded top */
            transition: bottom 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        }

        .slide-panel.active {
            top: auto;
            bottom: 0;
        }
    }

    /* Global Typography Adjustments */
    h2 {
        font-size: 2rem !important;
        /* Prevent huge headers */
    }

    .section-padding {
        padding: 60px 0;
        /* Reduced vertical padding */
    }
}

/* --- HYBRID PRO HEADER (Center Utility) --- */

.header-center-utility {
    flex: 1;
    /* Fills space */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 20px;
    transition: all 0.3s ease;
}

/* 1. Smart Search Pill */
.smart-search-pill {
    background: #f1f3f4;
    border-radius: 50px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 280px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    /* Subtle shadow */
    border: 1px solid transparent;
}

.smart-search-pill:hover,
.smart-search-pill:focus-within {
    background: white;
    width: 320px;
    /* Expand on focus */
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.15);
    /* Green Glow */
    border-color: rgba(46, 125, 50, 0.3);
}

.search-icon {
    color: #888;
    font-size: 1rem;
    cursor: pointer;
}

#header-search-input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.95rem;
    flex: 1;
    color: #333;
}

/* 2. Trust Strip */
.trust-strip {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    height: 20px;
    overflow: hidden;
    position: relative;
    width: 140px;
    /* Fixed width for text */
}

.trust-item {
    display: none;
    /* Hidden by default */
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    animation: fadeInSlide 0.5s ease;
}

.trust-item.active {
    display: flex;
}

.trust-item i {
    color: var(--primary-color);
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- RESPONSIVE BEHAVIOR (Mobile) --- */
@media (max-width: 900px) {
    .header-center-utility {
        justify-content: flex-end;
        /* Align right on mobile */
        gap: 10px;
        padding-right: 0;
    }

    .smart-search-pill {
        width: 35px;
        /* Collapse to icon size */
        padding: 0;
        justify-content: center;
        height: 35px;
        background: white;
    }

    .smart-search-pill input {
        display: none;
        /* Hide Search Input */
    }

    .smart-search-pill:hover,
    .smart-search-pill:focus-within {
        width: 35px;
        /* Don't expand on simple mobile hover */
    }

    /* Mobile Expanded State logic handled by JS class */
    .smart-search-pill.mobile-expanded {
        width: 200px;
        padding: 5px 15px;
        position: absolute;
        right: 60px;
        /* Left of Bucket */
        top: 25px;
        /* Adjust vertical pos */
        z-index: 10;
        border: 1px solid var(--primary-color);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .smart-search-pill.mobile-expanded input {
        display: block;
        width: 100%;
    }

    .trust-strip {
        display: none !important;
        /* Force hide on mobile */
    }

    /* Mobile Header Layout Enhancements */
    nav.container {
        padding: 0 15px;
        height: 70px;
        /* Reduce height on mobile */
        gap: 10px;
        /* Tighter gap */
    }

    .hamburger {
        font-size: 1.2rem;
        /* Slightly smaller */
    }

    .logo img {
        height: 40px !important;
        /* SIGNIFICANTLY smaller for valid mobile fit */
        margin-left: 5px;
    }

    header {
        height: 80px;
        /* Reduce overall header height on mobile */
    }

    .nav-actions .nav-icon-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Scroll Hide Logic */
.header-hidden .header-center-utility {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;

    /* Comparison Table Mobile Card Carousel (Swipe) */
    .comparison-table {
        display: block;
        width: 100%;
        overflow: hidden;
        /* Hide main scroll */
    }

    .comparison-table thead {
        display: none;
    }

    .comparison-table tbody {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 10px 5px 20px 5px;
        /* Bottom padding for shadow/scroll */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* Hide scrollbar Firefox */
    }

    .comparison-table tbody::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar Chrome */
    }

    .comparison-table tr {
        display: flex;
        flex-direction: column;
        min-width: 85vw;
        /* Card Width */
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        /* Soft Shadow */
        border: 1px solid #eee;
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .comparison-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        border-bottom: 1px solid #f9f9f9;
        font-size: 1rem;
    }

    /* 1. Header Row (Parameter) */
    .comparison-table td:nth-child(1) {
        background: var(--primary-color);
        color: white;
        justify-content: center;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 15px;
        font-size: 1rem;
    }

    /* 2. CULTIVA Row (Green Style) */
    .comparison-table td:nth-child(2) {
        flex-direction: column;
        align-items: flex-start;
        background: #F1F8E9;
        /* Light Green Bg */
        color: var(--primary-dark);
        font-weight: 600;
        gap: 5px;
        border-bottom: 1px solid white;
    }

    .comparison-table td:nth-child(2)::before {
        content: "CULTIVA Smart Farming";
        font-size: 0.75rem;
        text-transform: uppercase;
        color: #888;
        font-weight: 500;
    }

    /* 3. Normal Farm Row (Grey/Red Style) */
    .comparison-table td:nth-child(3) {
        flex-direction: column;
        align-items: flex-start;
        color: #777;
        gap: 5px;
    }

    .comparison-table td:nth-child(3)::before {
        content: "Normal Farming";
        font-size: 0.75rem;
        text-transform: uppercase;
        color: #aaa;
        font-weight: 500;
    }
}

/* --- RIGHT-ALIGNED PRODUCT LIST (Redesign) --- */

.product-list-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* No gap, using borders */
}

.shop-item {
    display: flex;
    align-items: center;
    padding: 15px 10px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
    justify-content: space-between;
    gap: 15px;
}

.shop-item:last-child {
    border-bottom: none;
}

.shop-item:hover {
    background: #fafafa;
}

/* ZONE 1: Left Icon */
.shop-item-icon {
    width: 40px;
    height: 40px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ZONE 2: Center Details */
.shop-item-details {
    flex: 1;
    /* Takes available space */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.shop-item-details h4 {
    margin: 0;
    color: #333;
    font-size: 1rem;
    font-weight: 600;
}

.stock-badge {
    font-size: 0.75rem;
    color: #666;
    background: #f5f5f5;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 4px;
    display: inline-block;
}

.stock-badge.preorder {
    color: #F57F17;
    background: #FFF9C4;
}

/* ZONE 3: Right Actions (Price + Add) */
.shop-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Align Right */
    gap: 5px;
    min-width: 80px;
}

.price-tag {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.1rem;
    margin: 0;
}

.price-tag small {
    font-size: 0.8rem;
    color: #888;
    font-weight: 400;
}

.btn-add-cart {
    background: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-add-cart:hover {
    background: var(--primary-color);
    color: white;
}

.btn-add-cart:active {
    transform: scale(0.95);
}

/* Mobile Tweak: Ensure button spans full height if needed or stack cleaner */
@media (max-width: 400px) {
    .shop-item {
        padding: 12px 5px;
    }

    .shop-item-details h4 {
        font-size: 0.95rem;
    }

    .price-tag {
        font-size: 1rem;
    }
}

/* --- MOBILE SWIPE COMPARISON (Dedicated) --- */
@media (max-width: 900px) {

    /* Hide the Desktop Table */
    .comparison-table-wrapper {
        display: none !important;
    }

    /* Show the Mobile Swiper */
    .mobile-comparison-swiper {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 10px 5px 30px 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .mobile-comparison-swiper::-webkit-scrollbar {
        display: none;
    }

    .swipe-card {
        flex: 0 0 85vw;
        /* Fixed Card Width */
        background: white;
        border-radius: 16px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        /* Premium Shadow */
        scroll-snap-align: center;
        overflow: hidden;
        border: 1px solid #f0f0f0;
        margin-bottom: 0;
        /* Fix vertical stack */
    }

    .card-header {
        background: var(--primary-color);
        color: white;
        text-align: center;
        padding: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .card-body {
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .card-row {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding-bottom: 10px;
    }

    .card-row span {
        font-size: 0.8rem;
        text-transform: uppercase;
        color: #888;
        font-weight: 600;
    }

    .card-row strong {
        font-size: 1.1rem;
        color: #333;
    }

    .card-row.green strong {
        color: #1B5E20;
        /* Dark Green */
    }

    .card-row.green span i {
        color: var(--primary-color);
        margin-right: 5px;
    }

    .card-row.gray {
        border-top: 1px solid #f5f5f5;
        padding-top: 10px;
    }
}

/* Default State (Desktop) */
.mobile-comparison-swiper {
    display: none;
    /* Hide swiper on desktop */
}

/* --- PREMIUM ORGANIC EGGS SECTION --- */

/* 1. Cards Grid */
.eggs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* 2. Egg Card Styling */
.egg-card {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.egg-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Image & Badge */
.egg-img-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.egg-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.egg-card:hover .egg-img-box img {
    transform: scale(1.05);
}

.egg-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF9800;
    /* Orange for Chicken */
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.egg-badge.duck {
    background: #00897B;
    /* Teal for Duck */
}

/* Details */
.egg-details {
    padding: 25px;
}

.egg-details h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-family: var(--font-serif);
}

.egg-pack {
    color: #888;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.egg-desc {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.egg-specs {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 500;
}

.egg-specs i {
    margin-right: 5px;
}

/* 3. Trust Wrapper */
.egg-trust-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 2px dashed #e0e0e0;
}

.egg-trust-block h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.egg-trust-block ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.egg-trust-block ul li i {
    color: var(--primary-color);
}

/* 4. Health Icons Grid */
.egg-health-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.health-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    background: #f9fbe7;
    border-radius: var(--radius-sm);
    color: var(--primary-dark);
}

.health-item i {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ef6c00;
}

.health-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .eggs-grid {
        /* Enable Swipe on Mobile if desired, or Stack */
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding-bottom: 20px;
        margin-right: -20px;
        /* Bleed to edge */
        padding-right: 20px;
    }

    .egg-card {
        flex: 0 0 85vw;
        /* Show mostly one card */
        scroll-snap-align: center;
    }

    .egg-trust-wrapper {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 30px;
    }

    .egg-health-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 on mobile */
    }
}