:root {
    --color-primary: #2d5016;
    --color-primary-light: #4a7c2b;
    --color-secondary: #d97706;
    --color-accent: #dc2626;
    --color-bg: #faf8f5;
    --color-surface: #ffffff;
    --color-text: #1f2937;
    --color-text-light: #6b7280;
    --color-border: #e5e7eb;

    --font-display: 'Crimson Pro', serif;
    --font-body: 'DM Sans', sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container - Mobile First */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation - Mobile First */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Mobile Menu - Default visible on mobile */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    z-index: 1001;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
    transition: var(--transition);
}

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

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

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

/* Mobile Menu Styles */
.nav-menu {
    position: fixed;
    top: 73px;
    left: -100%;
    width: 100%;
    background: rgba(250, 248, 245, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--color-border);
    transition: left 0.3s ease;
    box-shadow: var(--shadow-md);
    list-style: none;
    display: flex;
}

.nav-menu.active {
    left: 0;
}

.nav-menu li {
    text-align: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: var(--transition);
    display: block;
    padding: 1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu a:hover {
    color: var(--color-primary);
    background: rgba(45, 80, 22, 0.05);
    border-radius: 8px;
}

/* Cart Button - Mobile optimized */
.cart-btn {
    position: relative;
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    min-height: 48px;
}

.cart-btn:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
}

.cart-count {
    background: var(--color-accent);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Hero Section - Mobile First */
.hero {
    padding: 5rem 1rem 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 124, 43, 0.05) 0%, rgba(217, 119, 6, 0.05) 100%);
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out backwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

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

.hero-subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

/* Buttons - Mobile First with 48px touch targets */
.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
    display: inline-block;
    border: 2px solid transparent;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.btn-primary:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

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

.hero-image {
    animation: fadeIn 1s ease-out 0.8s backwards;
    display: flex;
    align-items: center;
    justify-content: center;
    order: -1;
}

.hero-image img {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.image-placeholder {
    font-size: 10rem;
    text-align: center;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
    font-size: 0.85rem;
    animation: fadeIn 1s ease-out 1.2s backwards;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--color-text-light);
    border-bottom: 2px solid var(--color-text-light);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    50% {
        transform: rotate(45deg) translateY(10px);
    }
}

/* About Section - Mobile First */
.about {
    padding: 3rem 1rem;
    background: var(--color-surface);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(74, 124, 43, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
}

.image-frame img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.about-image .image-placeholder {
    font-size: 10rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(74, 124, 43, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.about-text {
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Stats Grid - Mobile First (stacked on mobile) */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--color-bg);
    border-radius: 12px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.stat-label {
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Vegetables Section - Mobile First */
.vegetables {
    padding: 3rem 1rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-top: 1rem;
}

/* Product Controls (filters + search) */
.product-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-search {
    margin-left: auto;
    padding: 0.4rem 1rem;
    border: 2px solid #2d5016;
    border-radius: 50px;
    font-size: 0.9rem;
    outline: none;
    min-width: 180px;
    transition: box-shadow 0.2s;
}

.product-search:focus {
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.15);
}

/* Product Filter Buttons */
.product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-btn {
    background: white;
    color: #2d5016;
    border: 2px solid #2d5016;
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #2d5016;
    color: white;
}

/* Products Grid - Mobile First (single column) */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.product-card {
    background: var(--color-surface);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

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

.product-image {
    font-size: 6rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(74, 124, 43, 0.05) 0%, rgba(217, 119, 6, 0.05) 100%);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    padding: 0;
}

.product-info {
    padding: 1.5rem;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.75rem;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.product-price {
    font-weight: 700;
    color: var(--color-secondary);
    font-size: 1.25rem;
}

.product-description {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product-meta {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.product-badge {
    padding: 0.25rem 0.75rem;
    background: var(--color-bg);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--color-primary);
    font-weight: 500;
}

.add-to-cart-btn {
    width: 100%;
    padding: 1rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    min-height: 48px;
}

.add-to-cart-btn:hover {
    background: var(--color-primary-light);
}

/* Pickup Info - Mobile First */
.pickup-info {
    padding: 3rem 1rem;
    background: var(--color-surface);
}

.pickup-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.pickup-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-bg);
    border-radius: 20px;
    transition: var(--transition);
}

.pickup-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pickup-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pickup-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.pickup-card p {
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
}

.pickup-location {
    font-weight: 600;
    color: var(--color-text);
}

/* Gallery Sections - Mobile First */
.market-gallery {
    padding: 3rem 1rem;
    background: var(--color-bg);
}

.farm-gallery {
    padding: 3rem 1rem;
    background: var(--color-surface);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Contact Section - Mobile First */
.contact {
    padding: 3rem 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.contact-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    padding: 1rem;
    background: var(--color-surface);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.contact-form {
    background: var(--color-surface);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

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

/* Footer - Mobile First */
.footer {
    background: var(--color-primary);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-badge {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-logo-image {
    max-width: 250px;
    width: 100%;
}

.footer-logo-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* Cart & Checkout Modals - Mobile First */
.cart-modal,
.checkout-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.cart-modal.active,
.checkout-modal.active {
    display: flex;
}

.cart-content,
.checkout-content {
    background: var(--color-surface);
    border-radius: 20px;
    width: 95%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease-out;
}

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

.cart-header,
.checkout-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text-light);
    transition: var(--transition);
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: var(--color-text);
}

.cart-items {
    padding: 1.5rem;
    min-height: 200px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--color-bg);
    border-radius: 12px;
    margin-bottom: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.cart-item-info h4 {
    font-family: var(--font-display);
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--color-text-light);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: var(--color-primary-light);
}

.remove-btn {
    background: var(--color-accent);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    min-height: 48px;
}

.remove-btn:hover {
    background: #b91c1c;
}

.empty-cart {
    text-align: center;
    color: var(--color-text-light);
    padding: 2rem 1rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.btn-full {
    width: 100%;
}

/* Checkout Form - Mobile First */
#checkoutForm {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

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

.checkout-total {
    background: var(--color-bg);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-image img,
    .image-placeholder {
        animation: none;
    }

    .scroll-arrow {
        animation: none;
    }
}

/* Tablet and Landscape Phones - 480px+ */
@media (min-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        padding: 1.25rem 1.5rem;
    }

    .logo img {
        height: 45px;
    }

    .hero {
        padding: 6rem 1.5rem 4rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: row;
    }

    .hero-image img {
        max-width: 90%;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .about,
    .vegetables,
    .pickup-info,
    .market-gallery,
    .farm-gallery,
    .contact {
        padding: 4rem 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

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

    .pickup-icon {
        font-size: 3.5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .cart-content,
    .checkout-content {
        width: 90%;
    }

    .cart-header,
    .checkout-header {
        padding: 2rem;
    }

    .cart-items {
        padding: 2rem;
    }

    .cart-footer {
        padding: 2rem;
    }

    #checkoutForm {
        padding: 2rem;
    }

    .cart-total,
    .checkout-total {
        font-size: 1.5rem;
    }
}

/* Tablet Portrait - 768px+ */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }

    .nav-container {
        padding: 1.5rem 2rem;
    }

    .logo img {
        height: 50px;
    }

    /* Desktop Navigation */
    .hamburger {
        display: none;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        width: auto;
        background: transparent;
        padding: 0;
        gap: 2.5rem;
        border-bottom: none;
        box-shadow: none;
        backdrop-filter: none;
    }

    .nav-menu li {
        text-align: left;
    }

    .nav-menu a {
        font-size: 0.95rem;
        padding: 0;
        min-height: auto;
    }

    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--color-primary);
        transition: width 0.3s ease;
    }

    .nav-menu a:hover {
        background: transparent;
    }

    .nav-menu a:hover::after {
        width: 100%;
    }

    .hero {
        padding: 8rem 2rem 5rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-image {
        order: 0;
    }

    .hero-image img {
        max-width: 100%;
    }

    .section-title {
        font-size: 3rem;
    }

    .about,
    .vegetables,
    .pickup-info,
    .market-gallery,
    .farm-gallery,
    .contact {
        padding: 5rem 2rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }

    .section-header {
        margin: 0 auto 3rem;
    }

    .pickup-grid {
        gap: 3rem;
        margin-top: 3rem;
    }

    .pickup-card {
        padding: 3rem 2rem;
    }

    .pickup-icon {
        font-size: 4rem;
    }

    .pickup-card h3 {
        font-size: 1.75rem;
    }

    .contact-form {
        padding: 2.5rem;
    }

    .footer {
        padding: 3rem 2rem;
    }

    .footer-badge {
        height: 80px;
    }

    .footer-logo-image {
        max-width: 300px;
    }
}

/* Desktop - 1024px+ */
@media (min-width: 1024px) {
    .hero {
        padding: 10rem 2rem 6rem;
    }

    .hero-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
    }

    .hero-title {
        font-size: 5rem;
        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .hero-image img {
        filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
        animation: float 6s ease-in-out infinite;
    }

    .image-placeholder {
        font-size: 15rem;
        animation: float 6s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-20px);
        }
    }

    .scroll-indicator {
        bottom: 2rem;
    }

    .about,
    .vegetables,
    .pickup-info,
    .market-gallery,
    .farm-gallery,
    .contact {
        padding: 6rem 2rem;
    }

    .about-grid {
        gap: 4rem;
    }

    .about-image .image-placeholder {
        font-size: 15rem;
        padding: 3rem;
    }

    .stats-grid {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .section-header {
        margin: 0 auto 4rem;
    }

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

/* Large Desktop - 1280px+ */
@media (min-width: 1280px) {
    .nav-menu {
        gap: 3rem;
    }

    .contact-grid {
        gap: 4rem;
    }
}
