﻿/* Vegetables Page - COMPLETE with ALL PRODUCTS */
:root {
    /* Primary Colors */
    --primary: #2e7d32;
    --primary-dark: #1b5e20;
    --primary-light: #4caf50;
    --secondary: #ff9800;
    --accent: #2196f3;
    /* Category Colors - ALL INCLUDED */
    --cereals: #3498db;
    --fruiting: #e74c3c;
    --leafy: #27ae60;
    --root: #e67e22;
    --gourd: #f39c12;
    --pulses: #9b59b6;
    --oilseed: #f1c40f;
    --herb: #34495e;
    /* Neutral Colors */
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --light-gray: #e9ecef;
    --dark-gray: #343a40;
    --text-dark: #212529;
    --text-light: #6c757d;
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
    --shadow-xl: 0 12px 32px rgba(0,0,0,0.25);
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: var(--space-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.header-content .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    margin-top: var(--space-lg);
    position: relative;
}

.stat {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    min-width: 160px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform var(--transition-normal);
}

    .stat:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
    }

    .stat i {
        font-size: 2rem;
        color: var(--secondary);
    }

    .stat div {
        display: flex;
        flex-direction: column;
        text-align: left;
    }

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 4px;
}

/* Categories Navigation */
.categories-nav {
    background: var(--white);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--light-gray);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.categories-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.category-filter {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.cat-btn {
    padding: 0.6rem 1.2rem;
    background: var(--light-bg);
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

    .cat-btn:hover {
        background: var(--primary-light);
        color: var(--white);
        transform: translateY(-2px);
    }

    .cat-btn.active {
        background: var(--primary);
        color: var(--white);
        border-color: var(--primary);
    }

.search-box {
    position: relative;
    min-width: 250px;
}

    .search-box i {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-light);
        z-index: 1;
    }

    .search-box input {
        width: 100%;
        padding: 0.6rem 1rem 0.6rem 2.5rem;
        border: 1px solid var(--light-gray);
        border-radius: 50px;
        font-size: 0.9rem;
        background: var(--light-bg);
        transition: all var(--transition-normal);
    }

        .search-box input:focus {
            outline: none;
            border-color: var(--primary-light);
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
            background: var(--white);
        }

.search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 4px;
    line-height: 1;
    display: none;
    z-index: 2;
}

    .search-clear:hover {
        color: var(--primary);
    }

/* Main Content */
.main-content {
    padding: var(--space-xl) 0;
    background: var(--light-bg);
}

/* Section Header */
.vegetable-section {
    margin-bottom: var(--space-xl);
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.section-header {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--light-gray);
}

    .section-header h2 {
        font-size: 1.8rem;
        color: var(--text-dark);
        display: flex;
        align-items: center;
        gap: var(--space-sm);
        margin-bottom: var(--space-xs);
    }

    .section-header p {
        color: var(--text-light);
        font-size: 1rem;
    }

/* Vegetable Grid */
.vegetable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

/* Vegetable Card - UNIFIED DESIGN for ALL PRODUCTS */
.veg-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--light-gray);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 0;
    animation: cardAppear 0.6s ease forwards;
}

    .veg-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-xl);
        border-color: var(--primary-light);
    }

/* Card Image Section - LARGE IMAGE for ALL CARDS */
.card-image-section {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.card-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.veg-card:hover .card-image-section img {
    transform: scale(1.08);
}

/* Image Overlay */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    padding: var(--space-sm) var(--space-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

/* Category Badges - ALL CATEGORIES */
.category-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .category-badge.cereals {
        background: rgba(52, 152, 219, 0.9);
    }

    .category-badge.fruiting {
        background: rgba(231, 76, 60, 0.9);
    }

    .category-badge.leafy {
        background: rgba(39, 174, 96, 0.9);
    }

    .category-badge.root {
        background: rgba(230, 126, 34, 0.9);
    }

    .category-badge.gourd {
        background: rgba(243, 156, 18, 0.9);
    }

    .category-badge.pulses {
        background: rgba(155, 89, 182, 0.9);
    }

    .category-badge.oilseed {
        background: rgba(241, 196, 15, 0.9);
    }

    .category-badge.herb {
        background: rgba(52, 73, 94, 0.9);
    }

/* Harvest Badge */
.harvest-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--white);
    background: rgba(0, 0, 0, 0.6);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

    .harvest-badge i {
        color: var(--secondary);
    }

/* Product Badges - ALL TYPES */
.product-badge {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

    .product-badge.premium {
        background: linear-gradient(135deg, #FFD700, #FFA500);
        color: #000;
    }

    .product-badge.bestseller {
        background: linear-gradient(135deg, #FF416C, #FF4B2B);
    }

    .product-badge.new {
        background: linear-gradient(135deg, #4CAF50, #45a049);
    }

    .product-badge.popular {
        background: linear-gradient(135deg, #2196F3, #1976D2);
    }

    .product-badge.hot {
        background: linear-gradient(135deg, #FF0000, #FF4500);
    }

    .product-badge.fresh {
        background: linear-gradient(135deg, #00C851, #007E33);
    }

/* Card Content Section */
.card-content-section {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.product-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.2rem;
}

/* Varieties Section */
.varieties-section {
    margin: var(--space-xs) 0;
}

    .varieties-section h4 {
        font-size: 0.9rem;
        color: var(--text-light);
        margin-bottom: var(--space-xs);
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 6px;
    }

        .varieties-section h4 i {
            color: var(--primary);
        }

.varieties {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.variety-tag {
    background: var(--light-bg);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    color: var(--text-dark);
    border: 1px solid var(--light-gray);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

    .variety-tag:hover {
        background: var(--primary-light);
        color: var(--white);
        border-color: var(--primary-light);
        transform: translateY(-1px);
    }

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: var(--space-xs) 0 var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--light-gray);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

    .feature-item:hover {
        background: var(--primary-light);
        transform: translateY(-2px);
    }

        .feature-item:hover i,
        .feature-item:hover span {
            color: var(--white);
        }

    .feature-item i {
        font-size: 0.9rem;
        color: var(--primary);
        width: 16px;
        text-align: center;
    }

    .feature-item span {
        font-size: 0.75rem;
        color: var(--text-light);
        font-weight: 500;
        line-height: 1.2;
    }

/* Card Actions */
.card-actions {
    display: flex;
    gap: var(--space-sm);
    margin-top: auto;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--light-gray);
}

.view-details-btn,
.inquiry-btn {
    flex: 1;
    padding: 0.7rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-details-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

    .view-details-btn:hover {
        background: var(--primary);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
    }

.inquiry-btn {
    background: var(--secondary);
    color: var(--white);
}

    .inquiry-btn:hover {
        background: #e68900;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 152, 0, 0.2);
    }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
    padding: var(--space-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: var(--space-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    min-width: 180px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

    .btn-primary:hover {
        background: #e68900;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 152, 0, 0.3);
    }

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

    .btn-secondary:hover {
        background: var(--white);
        color: var(--primary);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
    }

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--light-gray);
}

    .btn-outline:hover {
        background: var(--light-bg);
        transform: translateY(-2px);
    }

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    backdrop-filter: blur(8px);
}

    .modal.show {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0);
    }

    to {
        opacity: 1;
        backdrop-filter: blur(8px);
    }
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: var(--space-lg);
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-bg);
    position: sticky;
    top: 0;
    z-index: 1;
}

    .modal-header h3 {
        font-size: 1.5rem;
        color: var(--text-dark);
        margin: 0;
    }

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color var(--transition-fast);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

    .modal-close:hover {
        color: var(--primary);
        background: var(--light-gray);
    }

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg);
}

.modal-image-container {
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.modal-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.modal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.modal-image-container:hover img {
    transform: scale(1.05);
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-group h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.varieties-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .varieties-list span {
        background: var(--light-bg);
        padding: 6px 12px;
        border-radius: 15px;
        font-size: 0.9rem;
        color: var(--text-dark);
        border: 1px solid var(--light-gray);
    }

.growing-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    padding: 0.5rem;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
}

    .info-item i {
        color: var(--primary);
        width: 20px;
        text-align: center;
    }

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .features-list li {
        padding: 8px 0;
        color: var(--text-dark);
        position: relative;
        padding-left: 28px;
    }

        .features-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
            font-size: 1.1rem;
        }

.modal-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--light-gray);
    display: flex;
    justify-content: flex-end;
    gap: var(--space-sm);
    background: var(--light-bg);
    position: sticky;
    bottom: 0;
}

/* Card Animation */
@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.veg-card {
    animation: cardAppear 0.6s ease forwards;
    animation-delay: calc(var(--card-index, 0) * 0.1s);
}

/* Responsive Design */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }

    .vegetable-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
    }

    .card-image-section {
        height: 260px;
    }
}

@media (max-width: 1200px) {
    .vegetable-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-content h1 {
        font-size: 2.2rem;
    }

    .modal-body {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .header-stats {
        gap: var(--space-lg);
    }

    .stat {
        min-width: 140px;
    }

    .categories-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-sm);
    }

    .category-filter {
        justify-content: center;
        overflow-x: auto;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }

    .search-box {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .vegetable-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .card-image-section {
        height: 220px;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: var(--space-lg) 0;
    }

    .header-content h1 {
        font-size: 1.8rem;
    }

    .header-content .lead {
        font-size: 1.1rem;
    }

    .header-stats {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }

    .stat {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .category-filter {
        overflow-x: auto;
        padding-bottom: var(--space-xs);
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }

    .cat-btn {
        white-space: nowrap;
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .vegetable-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .card-content-section {
        padding: var(--space-sm);
    }

    .card-image-section {
        height: 240px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .modal-content {
        max-width: 95%;
        margin: var(--space-sm);
    }

    .modal-body {
        padding: var(--space-md);
    }

    .modal-image-container {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 var(--space-sm);
    }

    .header-content h1 {
        font-size: 1.6rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .card-image-section {
        height: 200px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .card-actions {
        flex-direction: column;
        gap: 8px;
    }

    .view-details-btn,
    .inquiry-btn {
        width: 100%;
    }

    .modal-content {
        margin: var(--space-sm);
        max-height: 85vh;
    }

    .modal-header,
    .modal-body,
    .modal-footer {
        padding: var(--space-md);
    }

    .modal-image-container {
        height: 220px;
    }
}

/* Print Styles */
@media print {
    .categories-nav,
    .cta-section,
    .btn,
    .product-badge,
    .view-details-btn,
    .inquiry-btn,
    .modal {
        display: none !important;
    }

    .page-header {
        background: white !important;
        color: black !important;
        padding: 1rem 0 !important;
    }

    .vegetable-section {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }

    .veg-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        margin-bottom: 1rem !important;
        height: auto !important;
        display: block !important;
        page-break-inside: avoid;
    }

    .card-image-section {
        height: 150px !important;
        float: left;
        width: 150px;
        margin-right: 1rem;
        margin-bottom: 1rem;
    }

    .features-grid {
        display: none !important;
    }

    .image-overlay {
        position: static;
        background: none;
        padding: 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .category-badge,
    .harvest-badge {
        background: #f0f0f0 !important;
        color: #333 !important;
        border: 1px solid #ddd !important;
    }
}

/* Accessibility */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading state for images */
.img-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.img-loaded {
    animation: none;
    background: none;
}

/* Error state for images */
.img-error {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    animation: slideInRight 0.3s ease;
    max-width: 350px;
    overflow: hidden;
}

.notification-success {
    border-left: 4px solid var(--primary);
}

.notification-info {
    border-left: 4px solid var(--accent);
}

.notification-content {
    padding: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

    .notification-content i {
        font-size: 1.2rem;
        color: var(--primary);
    }

    .notification-content span {
        flex: 1;
        font-size: 0.9rem;
        color: var(--text-dark);
    }

.notification-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
    font-size: 1.2rem;
    line-height: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* No Results Message */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-xl);
    background: var(--light-bg);
    border-radius: var(--radius-lg);
    margin: var(--space-lg) 0;
}

    .no-results i {
        font-size: 3rem;
        color: var(--text-light);
        margin-bottom: var(--space-md);
    }

    .no-results h3 {
        color: var(--text-dark);
        margin-bottom: var(--space-sm);
    }

    .no-results p {
        color: var(--text-light);
    }

mark {
    background: var(--secondary);
    color: var(--white);
    padding: 2px 4px;
    border-radius: var(--radius-sm);
}

/* Add this to your existing vegetables.css file */

/* Inquiry button as link */
.inquiry-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    background: var(--secondary);
    color: var(--white);
    padding: 0.7rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    width: 100%;
    text-align: center;
}

    .inquiry-btn:hover {
        background: #e68900;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(255, 152, 0, 0.2);
        text-decoration: none;
        color: var(--white);
    }

/* For modal footer button */
.modal-footer .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}