* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
}

/* Top Nav */
.crop-nav {
    background: #2e7d32;
    padding: 12px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.crop-nav-brand {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

.crop-nav-brand:hover {
    color: #c8e6c9;
}

.crop-nav-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
}

.crop-nav-label {
    color: #fff;
    font-size: 0.9rem;
    white-space: nowrap;
}

.crop-nav .crop-select {
    max-width: 200px;
    padding: 8px 12px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    cursor: pointer;
}

.crop-nav .crop-select option {
    background: #2e7d32;
    color: #fff;
}

.crop-nav .crop-select:focus {
    outline: none;
    border-color: #fff;
}

/* Hero */
.crop-hero {
    background: linear-gradient(rgba(0, 60, 0, 0.7), rgba(0, 60, 0, 0.7)),
                url("images/WhatsApp Image 2026-02-10 at 6.19.11 PM.jpeg") center/cover no-repeat;
    color: #fff;
    padding: 60px 10%;
    text-align: center;
}

.crop-hero .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.crop-hero .hero-content p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
.crop-section {
    padding: 50px 10%;
}

.crop-container {
    max-width: 1000px;
    margin: 0 auto;
}

.crop-section h2 {
    font-size: 1.8rem;
    color: #2e7d32;
    margin-bottom: 20px;
}

.section-lead {
    margin-bottom: 30px;
    color: #555;
    font-size: 1.05rem;
}

/* Intro */
.crop-intro {
    background: #fff;
}

.crop-intro p {
    margin-bottom: 16px;
    color: #444;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.category-card {
    background: #fff;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2e7d32;
}

.category-card h3 {
    font-size: 1.2rem;
    color: #2e7d32;
    margin-bottom: 10px;
}

.category-card p {
    color: #444;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.category-read-more {
    display: inline-block;
    padding: 8px 18px;
    background: #2e7d32;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.2s ease, transform 0.15s ease;
}

.category-read-more:hover {
    background: #1b5e20;
    color: #fff;
    transform: translateY(-1px);
}

/* Details */
.crop-details {
    background: #f0f4f0;
}

.detail-block {
    background: #fff;
    padding: 20px 24px;
    margin-bottom: 16px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.detail-block h3 {
    font-size: 1.15rem;
    color: #2e7d32;
    margin-bottom: 8px;
}

.detail-block p {
    color: #444;
    font-size: 0.98rem;
}

/* Dropdown Section */
.crop-dropdown-section {
    background: #fff;
}

.cereal-detail-box {
    padding: 24px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    color: #444;
}

.cereal-detail-box h3 {
    color: #2e7d32;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.cereal-detail-box.cereal-detail-active {
    border-color: #2e7d32;
    background: #f0f7f0;
}

.cereal-detail-box p {
    margin: 0;
}

.cereals-dropdown .crop-select {
    min-width: 180px;
}

.crop-detail-placeholder {
    padding: 24px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px dashed #b0bec5;
    color: #555;
}

/* CTA */
.crop-cta {
    padding: 50px 10%;
    text-align: center;
    background: #2e7d32;
    color: #fff;
}

.crop-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.crop-cta p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.cta-button {
    display: inline-block;
    padding: 12px 28px;
    background: #fff;
    color: #2e7d32;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.25s ease, transform 0.15s ease;
}

.cta-button:hover {
    background: #c8e6c9;
    color: #1b5e20;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .crop-hero {
        padding: 50px 7%;
    }

    .crop-hero .hero-content h1 {
        font-size: 2rem;
    }

    .crop-section {
        padding: 40px 7%;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .crop-hero .hero-content h1 {
        font-size: 1.7rem;
    }

    .crop-section h2 {
        font-size: 1.5rem;
    }
}
