
/* Styles spécifiques à la page fruits de saison */
.seasonal-fruits-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header h2 i {
    margin-right: 0.5rem;
}

.month-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.month-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.month-btn:hover,
.month-btn.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.fruits-display {
    position: relative;
    min-height: 400px;
}

.month-fruits {
    display: none;
    animation: fadeIn 0.5s ease;
}

.month-fruits.active {
    display: block;
}

.month-fruits h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.fruits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.fruit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

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

.maceration-time {
    display: block;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.maceration-time i {
    margin-right: 0.25rem;
}

.maceration-section {
    padding: 4rem 0;
    background: white;
}

.maceration-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 1rem 1.5rem;
    border: none;
    background: #f8f9fa;
    color: var(--text-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.ingredient-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.ingredient-card:hover {
    transform: translateX(5px);
}

.ingredient-card h4 {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.time-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.tips-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.tip-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.tip-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
    .month-selector {
        gap: 0.25rem;
    }

    .month-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .fruits-grid,
    .ingredients-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .maceration-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}


.month-selector {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.month-select {
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    min-width: 200px;
    text-align: center;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A0522D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

.month-select:hover,
.month-select:focus {
    background: var(--primary-color);
    color: white;
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.month-select option {
    background: white !important;
    color: #333 !important;
    padding: 0.5rem;
    font-weight: normal;
}

.month-select option:hover,
.month-select option:checked,
.month-select option:selected {
    background: var(--primary-color) !important;
    color: white !important;
}

.month-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Suppression des anciens styles des boutons */
.month-btn {
    display: none;
}

@media (max-width: 768px) {
    .month-select {
        min-width: 150px;
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        padding-right: 2.5rem;
    }
}