/*
    boutique.css - Styles pour la page boutique
    
    Ce module contient les styles spécifiques à la page boutique,
    ainsi que les styles pour la section boutique.

    @author Alexandre BURIN
    @version 1.0.0
*/

/* Styles pour la section boutique */
#boutique-header {
    background: linear-gradient(135deg, rgba(122, 155, 110, 0.08) 0%, rgba(201, 169, 97, 0.08) 100%);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    margin-bottom: 2.5rem;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
}

#boutique-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    letter-spacing: -0.4px;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.3;
}

#boutique-header figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

#boutique-header img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-height: 300px;
    object-fit: cover;
}

#boutique-header figcaption {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 12px;
    border: 1.5px solid var(--border-light);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

#boutique-header figcaption span {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    letter-spacing: 0.1px;
}

#boutique-header figcaption span:first-child {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.2rem;
    letter-spacing: -0.2px;
    line-height: 1.4;
}

/* Responsive boutique header */
@media (max-width: 768px) {
    #boutique-header {
        padding: 2rem 1.5rem;
    }

    #boutique-header h2 {
        font-size: 1.6rem;
    }

    #boutique-header img {
        max-height: 200px;
    }

    #boutique-header figcaption {
        padding: 1.25rem 1.5rem;
    }

    #boutique-header figcaption span {
        font-size: 1rem;
    }

    #boutique-header figcaption span:first-child {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    #boutique-header {
        padding: 1.5rem 1rem;
    }

    #boutique-header h2 {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    #boutique-header img {
        max-height: 180px;
    }

    #boutique-header figcaption {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }

    #boutique-header figcaption span {
        font-size: 0.95rem;
    }

    #boutique-header figcaption span:first-child {
        font-size: 1.05rem;
    }
}
