﻿/* ===== VARIABLES & RESET ===== */
:root {
    --primary: #27ae60;
    --primary-dark: #219653;
    --secondary: #2ecc71;
    --accent: #e67e22;
    --light: #f8f9fa;
    --dark: #2c3e50;
    --gray: #95a5a6;
    --gray-light: #ecf0f1;
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(rgba(39, 174, 96, 0.9), rgba(33, 150, 83, 0.95)), url('../Content/Image/header-bg.jpg') center/cover;
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.1;
    }

.header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

    .header-content h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        background: linear-gradient(45deg, #ffffff, #e8f5e9);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
    }

    .header-content .lead {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        font-weight: 300;
    }

.header-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

    .stat:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-2px);
    }

    .stat i {
        font-size: 2rem;
        color: white;
    }

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== CATEGORIES NAVIGATION ===== */
.categories-nav {
    background: white;
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.categories-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cat-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--gray-light);
    background: white;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-weight: 500;
}

    .cat-btn:hover {
        border-color: var(--primary);
        color: var(--primary);
        transform: translateY(-2px);
    }

    .cat-btn.active {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
    }

.search-box {
    position: relative;
    min-width: 300px;
}

    .search-box input {
        width: 100%;
        padding: 0.8rem 1rem 0.8rem 3rem;
        border: 2px solid var(--gray-light);
        border-radius: 50px;
        font-size: 1rem;
        transition: var(--transition);
    }

        .search-box input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
        }

    .search-box i {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--gray);
    }

.search-clear {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    padding: 0;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    padding: 3rem 0;
}

.vegetable-section {
    margin-bottom: 4rem;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-header h2 {
        font-size: 2.5rem;
        color: var(--dark);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .section-header p {
        font-size: 1.1rem;
        color: var(--gray);
        max-width: 600px;
        margin: 0 auto;
    }

/* ===== VEGETABLE GRID & CARDS ===== */
.vegetable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.veg-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    animation: cardSlideUp 0.6s ease forwards;
    border: 1px solid #e0e0e0;
}

    .veg-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .veg-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .veg-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .veg-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .veg-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .veg-card:nth-child(6) {
        animation-delay: 0.6s;
    }

@keyframes cardSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.veg-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.veg-card.card-hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.veg-card.card-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Card Image Section */
.card-image-section {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.image-container {
    width: 100%;
    height: 100%;
}

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.veg-card:hover .image-container img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
}

.category-badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .category-badge.cereals {
        background: #3498db;
        color: white;
    }

    .category-badge.pulses {
        background: #9b59b6;
        color: white;
    }

.harvest-badge {
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .product-badge.premium {
        background: #f39c12;
        color: white;
    }

    .product-badge.bestseller {
        background: #e74c3c;
        color: white;
    }

    .product-badge.new {
        background: #27ae60;
        color: white;
    }

    .product-badge.popular {
        background: #9b59b6;
        color: white;
    }

    .product-badge.fresh {
        background: #2ecc71;
        color: white;
    }

/* Card Content Section */
.card-content-section {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.varieties-section {
    margin: 1.2rem 0;
}

    .varieties-section h4 {
        font-size: 1.1rem;
        color: var(--gray);
        margin-bottom: 0.8rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

.varieties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.variety-tag {
    background: #f0f7f4;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid #d4e6de;
    color: #2c3e50;
}

    .variety-tag:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-2px);
        border-color: var(--primary);
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.8rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.95rem;
    border-left: 3px solid var(--primary);
}

    .feature-item i {
        color: var(--primary);
    }

.card-actions {
    margin-top: auto;
    display: flex;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-light);
}

.view-details-btn,
.inquiry-btn {
    flex: 1;
    padding: 0.9rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.view-details-btn {
    background: #f0f7f4;
    color: var(--dark);
    border: 2px solid #d4e6de;
}

    .view-details-btn:hover {
        background: #e1f0e8;
        transform: translateY(-2px);
        border-color: var(--primary);
    }

.inquiry-btn {
    background: var(--primary);
    color: white;
}

    .inquiry-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
    }

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--dark), #1a252f);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-top: 4rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    }

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: white;
        transform: translateY(-2px);
    }

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

    .modal.show {
        display: block;
        opacity: 1;
    }

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    transition: transform 0.3s ease;
    box-shadow: 0 25px 70px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.modal.show .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    padding: 1.8rem;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
}

    .modal-header h3 {
        font-size: 2rem;
        color: var(--dark);
        margin: 0;
        font-weight: 600;
    }

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

    .modal-close:hover {
        background: var(--gray-light);
        color: var(--dark);
    }

.modal-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
}

.modal-image-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.modal-image-wrapper {
    width: 100%;
    height: 350px;
}

    .modal-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-group h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 3px solid var(--primary);
    font-weight: 600;
}

.varieties-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

    .varieties-list .variety-tag {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }

.growing-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

    .info-item i {
        color: var(--primary);
        font-size: 1.3rem;
        width: 30px;
        text-align: center;
    }

    .info-item span {
        font-size: 1rem;
    }

    .info-item strong {
        color: var(--dark);
        font-weight: 600;
    }

.features-list {
    list-style: none;
    padding-left: 0;
}

    .features-list li {
        padding: 0.8rem 0;
        position: relative;
        padding-left: 2rem;
        font-size: 1rem;
        line-height: 1.5;
    }

        .features-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
            font-size: 1.1rem;
        }

.modal-footer {
    padding: 1.8rem;
    border-top: 1px solid var(--gray-light);
    display: flex;
    justify-content: flex-end;
    gap: 1.2rem;
    background: #f8f9fa;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gray);
    color: var(--dark);
    padding: 0.8rem 1.8rem;
}

    .btn-outline:hover {
        border-color: var(--dark);
        background: var(--dark);
        color: white;
    }

/* ===== VIEW TOGGLE ===== */
.view-toggle {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 2rem;
    gap: 0.5rem;
}

.view-toggle-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--gray-light);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-weight: 500;
}

    .view-toggle-btn:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

    .view-toggle-btn.active {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
    }

/* ===== GRID VIEW ===== */
.grid-view .vegetable-grid {
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
}

/* ===== LIST VIEW ===== */
.list-view .vegetable-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.list-view .veg-card {
    flex-direction: row;
    height: 250px;
}

.list-view .card-image-section {
    width: 300px;
    height: 100%;
    flex-shrink: 0;
}

.list-view .card-content-section {
    flex-grow: 1;
    padding: 1.8rem 2rem;
}

.list-view .features-grid {
    grid-template-columns: repeat(4, 1fr);
    margin: 1rem 0;
}

.list-view .card-actions {
    margin-top: 1rem;
    padding-top: 1rem;
}

/* ===== SEARCH MATCH HIGHLIGHT ===== */
.search-match {
    animation: pulse 1.5s infinite;
    border: 2px solid var(--primary);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(39, 174, 96, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

/* ===== NO RESULTS MESSAGE ===== */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 2rem 0;
    border: 2px dashed var(--gray-light);
}

    .no-results i {
        font-size: 4rem;
        color: var(--gray);
        margin-bottom: 1.5rem;
    }

    .no-results h3 {
        font-size: 1.8rem;
        color: var(--dark);
        margin-bottom: 1rem;
    }

    .no-results p {
        color: var(--gray);
        font-size: 1.1rem;
    }

/* ===== NOTIFICATIONS ===== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    z-index: 2000;
    transform: translateX(400px);
    animation: slideIn 0.3s ease forwards;
    max-width: 400px;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
    }
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--primary);
}

.notification-success .notification-content {
    border-left-color: #27ae60;
}

.notification-error .notification-content {
    border-left-color: #e74c3c;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    line-height: 1;
    padding: 0;
    margin-left: auto;
}

/* ===== LOADING STATES ===== */
.img-loading {
    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;
    }
}

/* ===== NOTIFIED BADGE ===== */
.notified-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .vegetable-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    }

    .list-view .card-image-section {
        width: 280px;
    }
}

@media (max-width: 992px) {
    .header-content h1 {
        font-size: 2.8rem;
    }

    .modal-body {
        grid-template-columns: 1fr;
    }

    .modal-image-wrapper {
        height: 300px;
    }

    .categories-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .search-box {
        min-width: auto;
    }

    .list-view .veg-card {
        flex-direction: column;
        height: auto;
    }

    .list-view .card-image-section {
        width: 100%;
        height: 250px;
    }

    .list-view .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0;
    }

    .header-content h1 {
        font-size: 2.2rem;
    }

    .header-stats {
        gap: 1rem;
    }

    .stat {
        flex: 1;
        min-width: 150px;
        flex-direction: column;
        text-align: center;
    }

    .vegetable-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .card-actions {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .view-toggle {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .header-stats {
        flex-direction: column;
    }

    .category-filter {
        justify-content: center;
    }

    .cat-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .modal-header h3 {
        font-size: 1.4rem;
    }

    .modal-footer {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .list-view .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Skip to main content */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 8px;
    z-index: 1001;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
}

    .skip-link:focus {
        top: 0;
    }

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary: #006400;
        --primary-dark: #004d00;
    }

    .veg-card {
        border: 2px solid #000;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .veg-card {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
