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

:root {
    --bg: #f8f6f0;
    --bg-card: #ffffff;
    --bg-warm: #fdfbf7;
    --bg-green-soft: #f0f7f0;
    --bg-green-light: #e8f5e9;
    --text-primary: #1f2937;
    --text-secondary: #4b5563;
    --text-muted: #9ca3af;
    --accent: #2e7d32;
    --accent-light: #4caf50;
    --accent-sage: #81c784;
    --accent-pale: #a5d6a7;
    --accent-bg: #e8f5e9;
    --orange: #f57c00;
    --orange-light: #fff3e0;
    --gold: #f9a825;
    --gold-light: #fff8e1;
    --berry: #c62828;
    --berry-light: #ffebee;
    --border: #e5e0d5;
    --border-light: #f0ece1;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
    --radius: 10px;
    --radius-sm: 6px;
    --radius-lg: 16px;
    --font-serif: 'DM Serif Display', 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-primary);
    background: var(--bg);
    line-height: 1.6;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s;
}
a:hover {
    color: var(--accent-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Top Bar */
.top-bar {
    background: var(--accent);
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: #fff;
    font-weight: 500;
}
.top-bar a:hover {
    color: rgba(255,255,255,0.8);
}

/* Header */
header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.logo h1 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--accent);
    letter-spacing: -0.5px;
    font-style: italic;
}

.logo h1 a {
    color: inherit;
}
.logo h1 a:hover {
    color: var(--accent-light);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.nav-links a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent-sage);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* Hero */
.hero {
    background: linear-gradient(160deg, #f8f6f0 0%, #f0f7f0 50%, #fdfbf7 100%);
    padding: 70px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    max-width: 580px;
}

.badge {
    display: inline-block;
    background: var(--accent-bg);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 18px;
    border: 1px solid var(--accent-pale);
}

.hero h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.hero .highlight {
    color: var(--accent);
}

.hero > .container > .hero-content > p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 13px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: #1b5e20;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.25);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.btn-whatsapp:hover {
    background: #1da851;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    font-size: 1.15rem;
}

.btn-large {
    padding: 17px 44px;
    font-size: 1rem;
}

.hero-stats {
    display: flex;
    gap: 36px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-top: 2px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: var(--bg);
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dots span.active {
    background: #fff;
    width: 26px;
    border-radius: 5px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(255,255,255,0.7);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.2s;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.slider-nav.prev {
    left: 12px;
}

.slider-nav.next {
    right: 12px;
}

/* About */
.about-section {
    padding: 80px 0;
    background: #fff;
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    aspect-ratio: 1/1;
    object-fit: cover;
}

.about-image-quote {
    position: absolute;
    bottom: -12px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 14px 18px;
    border-radius: var(--radius);
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-style: italic;
    color: var(--accent);
    box-shadow: var(--shadow);
    text-align: center;
    border-left: 4px solid var(--accent-sage);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    margin-bottom: 8px;
}

.about-text h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 18px;
    line-height: 1.2;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 14px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.about-features {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

.feature-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.feature-tag h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-tag p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

/* Seasonal Section */
.seasonal-section {
    padding: 80px 0;
    background: var(--bg);
}

.section-header {
    text-align: center;
    margin-bottom: 45px;
}

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.season-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.season-image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-bottom: 3px solid var(--border-light);
}

.season-content {
    padding: 22px 24px 26px;
}

.season-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.season-tag.spring {
    background: #fce4ec;
    color: #c62828;
}

.season-tag.summer {
    background: var(--orange-light);
    color: var(--orange);
}

.season-tag.winter {
    background: #e3f2fd;
    color: #1565c0;
}

.season-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.season-content > p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.season-content ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 10px;
}

.season-content li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 3px 0 3px 16px;
    position: relative;
}

.season-spring .season-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #ef9a9a;
    border-radius: 50%;
}

.season-summer .season-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #ffcc80;
    border-radius: 50%;
}

.season-winter .season-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #90caf9;
    border-radius: 50%;
}

/* Veg List */
.veg-list-section {
    padding: 80px 0;
    background: #fff;
}

/* Featured Veggies Gallery */
.featured-veggies {
    margin-bottom: 45px;
}

.featured-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 18px;
    text-align: center;
}

.veggie-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.veggie-card {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    overflow: hidden;
    text-align: center;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
    cursor: default;
}

.veggie-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.veggie-img {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--bg);
}

.veggie-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.veggie-card:hover .veggie-img img {
    transform: scale(1.12);
}

.veggie-name {
    display: block;
    padding: 10px 8px 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    background: #fff;
    position: relative;
}

.veggie-card:hover .veggie-name {
    color: var(--accent);
}

/* --- Animations --- */
@keyframes fadeSlideUp {
    0% { opacity: 0; transform: translateY(24px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUpSmall {
    0% { opacity: 0; transform: translateY(12px); }
    100% { opacity: 1; transform: translateY(0); }
}

.veggie-card.visible {
    animation: fadeSlideUp 0.5s ease-out both;
    animation-delay: calc(var(--idx, 0) * 0.07s);
}

.season-card.visible {
    animation: fadeSlideUp 0.5s ease-out both;
    animation-delay: calc(var(--idx, 0) * 0.12s);
}

.letter-block.visible {
    animation: fadeSlideUpSmall 0.4s ease-out both;
}

.animate-on-scroll.visible {
    animation: fadeSlideUp 0.55s ease-out both;
}

.alphabet-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-bottom: 40px;
}

.alphabet-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 5px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.2s;
}

.alphabet-nav a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.letter-block {
    margin-bottom: 28px;
    background: var(--bg);
    padding: 24px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

.letter-heading {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--accent);
    border-bottom: 2px solid var(--accent-sage);
    padding-bottom: 6px;
    margin-bottom: 14px;
}

.letter-block ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 4px 18px;
}

.letter-block li {
    padding: 5px 8px 5px 20px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    position: relative;
    border-bottom: 1px solid var(--border-light);
}

.letter-block li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--accent-sage);
    border-radius: 50%;
    opacity: 0.6;
}

.order-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--bg-green-soft), #fdfbf7);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-top: 28px;
    border: 1px solid var(--accent-pale);
}

.order-cta p {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: var(--text-primary);
}

/* Contact */
.contact-section {
    padding: 80px 0;
    background: var(--bg);
}

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

.contact-info .info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
}

.info-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 1px;
    color: var(--accent);
}

.info-item h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-primary);
}

.info-item p,
.info-item a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.info-item a:hover {
    color: var(--accent);
}

.store-photo {
    margin-top: 28px;
}

.store-photo img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    aspect-ratio: 16/10;
    object-fit: cover;
}

.social-links {
    margin-top: 28px;
}

.social-links h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    color: var(--text-secondary);
    border-radius: 50%;
    border: 1px solid var(--border);
    transition: all 0.2s;
}

.social-icon:hover {
    background: var(--accent-bg);
    color: var(--accent);
    border-color: var(--accent-sage);
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 34px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.84rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 11px 15px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    background: var(--bg);
    color: var(--text-primary);
    transition: border 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-sage);
    box-shadow: 0 0 0 3px rgba(129, 199, 132, 0.15);
    background: #fff;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 0.95rem;
    margin-top: 4px;
}

.form-status {
    margin-top: 14px;
    font-size: 0.85rem;
    text-align: center;
}

.form-status.success {
    color: var(--accent);
}

.form-status.error {
    color: #c62828;
}

/* Footer */
footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 55px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 30px;
}

footer h3 {
    font-family: var(--font-serif);
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

footer p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #9ca3af;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 7px;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    margin-bottom: 9px;
}

.footer-contact a {
    color: #9ca3af;
}

.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #6b7280;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 54px;
    height: 54px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.25s ease;
    z-index: 99;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-slider {
        order: -1;
        aspect-ratio: 16/9;
    }

    .seasonal-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .season-image img {
        aspect-ratio: 16/8;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

    .nav-links.open {
        display: flex;
    }

    nav {
        position: relative;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        order: -1;
    }

    .veggie-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .letter-block ul {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .alphabet-nav a {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 520px) {
    .veggie-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .hero h2 {
        font-size: 1.6rem;
    }

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

    .btn {
        text-align: center;
    }

    .letter-block {
        padding: 16px;
    }

    .letter-block ul {
        grid-template-columns: 1fr 1fr;
    }

    .season-content ul {
        grid-template-columns: 1fr 1fr;
    }
}
