/* ============================
   MODERN HARVEST PAGE STYLES
   ============================ */

/* Modern Hero Section */
.modern-harvest-hero {
    position: relative;
    background: linear-gradient(135deg, #ff9800 0%, #ff5722 50%, #e91e63 100%);
    color: white;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px, 80px 80px, 40px 40px;
    animation: patternFloat 20s ease-in-out infinite;
}

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

.hero-content-wrapper {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-weight: 500;
    animation: fadeInDown 0.8s ease;
}

.modern-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.gradient-text {
    background: linear-gradient(45deg, #fff, #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.month-highlight {
    display: block;
    font-size: 3rem;
    color: #ffeb3b;
    text-shadow: 0 2px 10px rgba(255,235,59,0.3);
    margin-top: 10px;
}

.modern-hero-subtitle {
    font-size: 1.4rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.highlight-text {
    color: #ffeb3b;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.stat-item i {
    font-size: 2rem;
    opacity: 0.8;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.3);
}

/* Modern Products Section */
.modern-harvest-products {
    padding: 100px 0;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}

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

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #ff9800, #ff5722);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-title-modern {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.section-description-modern {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Modern Product Grid */
.modern-harvest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.modern-harvest-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

.modern-harvest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Card Image */
.card-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.modern-harvest-card:hover .card-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,152,0,0.8), rgba(255,87,34,0.8));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-harvest-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.freshness-indicator {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.harvest-badge-modern {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(76,175,80,0.3);
}

/* Card Content */
.card-content {
    padding: 30px;
}

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

.product-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.availability-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 15px;
    margin-left: 15px;
}

.availability-status.available {
    background: #e8f5e9;
    color: #2e7d32;
}

.availability-status.unavailable {
    background: #ffebee;
    color: #c62828;
}

.seasonal-highlight {
    background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
    border-left: 4px solid #4CAF50;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.seasonal-highlight i {
    color: #4CAF50;
    margin-top: 2px;
}

.seasonal-highlight p {
    margin: 0;
    color: #2d5a2d;
    font-weight: 500;
    line-height: 1.5;
}

.product-description-modern {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Harvest Info Card */
.harvest-info-card {
    background: #fafafa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.harvest-timing-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: #ff9800;
    font-weight: 500;
}

.freshness-meter {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
}

.meter-label {
    color: #666;
    font-weight: 500;
    min-width: 50px;
}

.meter-bar {
    flex: 1;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.8s ease;
}

.meter-fill.peak {
    width: 95%;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
}

.meter-status {
    color: #4CAF50;
    font-weight: 600;
    min-width: 60px;
}

/* Product Meta */
.product-meta {
    margin-bottom: 20px;
}

.meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.quantity-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.quantity-info i {
    color: #999;
}

.price-info {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.currency {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Household Info */
.household-info-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #e3f2fd, #f0f4ff);
    border-radius: 12px;
    border: 1px solid #e3f2fd;
    margin-bottom: 25px;
}

.household-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #2196F3, #64B5F6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.household-details {
    flex: 1;
}

.household-name {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.household-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: #666;
}

/* Action Buttons */
.card-actions {
    display: flex;
    gap: 12px;
}

.btn-harvest-primary {
    flex: 2;
    background: linear-gradient(45deg, #ff9800, #ff5722);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-harvest-primary:hover:not(:disabled) {
    background: linear-gradient(45deg, #f57c00, #d84315);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3);
}

.btn-harvest-primary:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-harvest-secondary {
    flex: 1;
    background: white;
    color: #ff9800;
    border: 2px solid #ff9800;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-harvest-secondary:hover {
    background: #ff9800;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* No Harvest Products */
.no-harvest-modern {
    padding: 120px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.no-harvest-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.no-harvest-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, #e0e0e0, #f5f5f5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.no-harvest-icon i {
    font-size: 3rem;
    color: #999;
}

.no-harvest-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.no-harvest-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.no-harvest-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-alternative {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-alternative.primary {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: white;
}

.btn-alternative.primary:hover {
    background: linear-gradient(45deg, #45a049, #5cb85c);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.btn-alternative.secondary {
    background: white;
    color: #666;
    border: 2px solid #e0e0e0;
}

.btn-alternative.secondary:hover {
    background: #f5f5f5;
    border-color: #ccc;
    color: #333;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Modern Calendar Section */
.modern-calendar-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
}

.calendar-header {
    text-align: center;
    margin-bottom: 80px;
}

.calendar-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.calendar-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #64B5F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calendar-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.modern-calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.calendar-season {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease;
}

.calendar-season:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}

.season-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.season-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.calendar-season.winter .season-icon {
    background: linear-gradient(45deg, #64B5F6, #90CAF9);
}

.calendar-season.spring .season-icon {
    background: linear-gradient(45deg, #66BB6A, #A5D6A7);
}

.calendar-season.summer .season-icon {
    background: linear-gradient(45deg, #FFB74D, #FFCC02);
}

.calendar-season.autumn .season-icon {
    background: linear-gradient(45deg, #FF8A65, #FFAB91);
}

.season-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.season-info span {
    opacity: 0.7;
    font-size: 0.9rem;
}

.season-products {
    display: grid;
    gap: 15px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.product-item:hover {
    background: rgba(255,255,255,0.08);
}

.product-emoji {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

/* Calendar CTA */
.calendar-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.cta-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-content p {
    opacity: 0.8;
    margin: 0;
}

.btn-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta.primary {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: white;
}

.btn-cta.primary:hover {
    background: linear-gradient(45deg, #45a049, #5cb85c);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .modern-hero-title {
        font-size: 2.8rem;
    }
    
    .month-highlight {
        font-size: 2.2rem;
    }
    
    .modern-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .modern-harvest-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title-modern {
        font-size: 2.2rem;
    }
    
    .calendar-title {
        font-size: 2.2rem;
    }
    
    .calendar-cta {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .modern-harvest-hero {
        padding: 80px 0 60px;
    }
    
    .modern-hero-title {
        font-size: 2.2rem;
    }
    
    .month-highlight {
        font-size: 1.8rem;
    }
    
    .card-actions {
        flex-direction: column;
    }
    
    .household-info-modern {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================
   SEASONAL PRODUCTS STYLES
   ============================ */

/* Seasonal Hero Section */
.seasonal-hero-section {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f9f0 100%);
    padding: 80px 0 60px 0;
    text-align: center;
    position: relative;
}

.seasonal-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0,10 Q25,0 50,10 T100,10 L100,20 L0,20 Z" fill="rgba(255,255,255,0.1)"/></svg>') repeat-x;
}

.seasonal-hero-content {
    position: relative;
    z-index: 2;
}

.seasonal-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d5a2d;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.season-icon {
    font-size: 4rem;
    margin-right: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.seasonal-subtitle {
    font-size: 1.3rem;
    color: #4a7c59;
    font-weight: 400;
    margin: 0;
}

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

/* Products Section */
.products-section {
    padding: 60px 0;
    background: #fafafa;
}

.products-info {
    margin-bottom: 40px;
    text-align: center;
}

.products-count {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* Badges */
.seasonal-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

.season-icon-small {
    font-size: 1rem;
}

.harvest-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #FF9800, #FFB74D);
    color: white;
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 10px rgba(255, 152, 0, 0.3);
}

/* Product Info */
.product-info {
    padding: 25px;
}

.product-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d5a2d;
    margin-bottom: 12px;
    line-height: 1.3;
}

.seasonal-description {
    font-size: 0.95rem;
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 10px;
    font-style: italic;
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
}

.product-quantity {
    font-size: 0.9rem;
    color: #666;
    background: #e9ecef;
    padding: 4px 8px;
    border-radius: 5px;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d5a2d;
}

.product-household {
    margin-bottom: 20px;
    padding: 10px;
    background: #f1f8e9;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.product-household i {
    color: #4CAF50;
    margin-right: 8px;
}

.product-household small {
    color: #666;
    margin-left: 10px;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 10px;
}

.btn-add-to-cart {
    flex: 2;
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-to-cart:hover:not(:disabled) {
    background: linear-gradient(45deg, #45a049, #5cb85c);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.btn-add-to-cart:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.btn-view-details {
    flex: 1;
    background: white;
    color: #4CAF50;
    border: 2px solid #4CAF50;
    padding: 12px 15px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-view-details:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

/* No Products Message */
.no-products-message {
    text-align: center;
    padding: 80px 20px;
    color: #666;
}

.no-products-message i {
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-products-message h3 {
    margin-bottom: 15px;
    color: #333;
}

/* Seasonal Info Section */
.seasonal-info-section {
    padding: 60px 0;
    background: white;
}

.info-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    margin-bottom: 20px;
}

.info-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d5a2d;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

/* ============================
   HARVEST PAGE STYLES
   ============================ */

/* Harvest Hero */
.harvest-hero-section {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    padding: 80px 0 60px 0;
    text-align: center;
}

.harvest-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #e65100;
    margin-bottom: 20px;
}

.harvest-subtitle {
    font-size: 1.3rem;
    color: #f57c00;
    font-weight: 400;
}

/* Harvest Info Banner */
.harvest-info {
    margin-bottom: 40px;
}

.info-banner {
    background: linear-gradient(45deg, #fff3e0, #ffe0b2);
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid #FF9800;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-banner i {
    color: #FF9800;
    font-size: 1.5rem;
}

.info-banner p {
    margin: 0;
    color: #e65100;
}

/* Harvest Products */
.harvest-products-section {
    padding: 60px 0;
    background: #fafafa;
}

.harvest-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.harvest-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #FF9800;
}

.harvest-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.15);
}

.harvest-fresh-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.harvest-timing {
    background: #fff3e0;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #FF9800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.harvest-timing i {
    color: #FF9800;
}

.btn-add-to-cart-harvest {
    flex: 2;
    background: linear-gradient(45deg, #FF9800, #FFB74D);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-to-cart-harvest:hover:not(:disabled) {
    background: linear-gradient(45deg, #f57c00, #ff9800);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

/* No Harvest Products */
.no-harvest-products {
    text-align: center;
    padding: 80px 20px;
    color: #666;
}

.alternative-options {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Harvest Calendar */
.harvest-calendar-section {
    padding: 60px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5a2d;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

.harvest-calendar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.calendar-month {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-top: 4px solid #4CAF50;
    transition: transform 0.3s ease;
}

.calendar-month:hover {
    transform: translateY(-5px);
}

.calendar-month h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d5a2d;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calendar-month ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.calendar-month li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.95rem;
    color: #555;
}

.calendar-month li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .seasonal-title, .harvest-title {
        font-size: 2.5rem;
    }
    
    .season-icon {
        font-size: 3rem;
        margin-right: 10px;
    }
    
    .products-grid, .harvest-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .alternative-options {
        flex-direction: column;
        align-items: center;
    }
    
    .harvest-calendar {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .seasonal-title, .harvest-title {
        font-size: 2rem;
    }
    
    .seasonal-subtitle, .harvest-subtitle {
        font-size: 1.1rem;
    }
    
    .product-info {
        padding: 20px;
    }
}

/* ============================
   HOME PAGE SEASONAL SECTION
   ============================ */

/* Homepage seasonal section */
.seasonal-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f5e8 100%);
    position: relative;
    overflow: hidden;
}

.seasonal-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><path d="M0,20 Q25,0 50,20 T100,20 L100,0 L0,0 Z" fill="white"/></svg>') repeat-x;
    z-index: 1;
}

.seasonal-section .section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.seasonal-section .seasonal-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d5a2d;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.seasonal-section .season-icon {
    font-size: 3rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.seasonal-section .section-header p {
    font-size: 1.2rem;
    color: #4a7c59;
    margin: 0;
}

/* Homepage seasonal products grid */
.seasonal-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.seasonal-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

.seasonal-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.seasonal-product-card .product-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.seasonal-product-card .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.seasonal-product-card:hover .product-image {
    transform: scale(1.1);
}

.seasonal-product-card .product-info {
    padding: 20px;
}

.seasonal-product-card .product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.seasonal-product-card .seasonal-description {
    font-size: 0.85rem;
    color: #4CAF50;
    font-weight: 500;
    margin-bottom: 8px;
    font-style: italic;
    line-height: 1.3;
}

.seasonal-product-card .product-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 8px;
}

.seasonal-product-card .product-quantity {
    font-size: 0.8rem;
    color: #666;
    background: #e9ecef;
    padding: 3px 6px;
    border-radius: 4px;
}

.seasonal-product-card .product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d5a2d;
}

.seasonal-product-card .product-household {
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.seasonal-product-card .product-household i {
    color: #4CAF50;
}

/* Small add to cart button for homepage */
.btn-add-to-cart-small {
    width: 100%;
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-add-to-cart-small:hover:not(:disabled) {
    background: linear-gradient(45deg, #45a049, #5cb85c);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.btn-add-to-cart-small:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Action buttons */
.btn-seasonal {
    background: linear-gradient(45deg, #4CAF50, #66BB6A);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 10px 10px 0;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.btn-seasonal:hover {
    background: linear-gradient(45deg, #45a049, #5cb85c);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.btn-harvest {
    background: linear-gradient(45deg, #FF9800, #FFB74D);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 10px 10px 0;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.btn-harvest:hover {
    background: linear-gradient(45deg, #f57c00, #ff9800);
    color: white;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
}

.season-icon-small {
    font-size: 1.2rem;
}

/* Homepage responsive */
@media (max-width: 768px) {
    .seasonal-section {
        padding: 60px 0;
    }
    
    .seasonal-section .seasonal-title {
        font-size: 2.2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .seasonal-section .season-icon {
        font-size: 2.5rem;
    }
    
    .seasonal-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .seasonal-product-card .product-info {
        padding: 15px;
    }
    
    .seasonal-product-card .product-name {
        font-size: 1.1rem;
    }
    
    .btn-seasonal, .btn-harvest {
        padding: 12px 24px;
        font-size: 0.9rem;
        margin: 5px 5px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .seasonal-section .seasonal-title {
        font-size: 1.8rem;
    }
    
    .seasonal-section .section-header p {
        font-size: 1rem;
    }
    
    .seasonal-product-card .product-image-wrapper {
        height: 180px;
    }
}