/*** BOUTIQUE ***/

section.univers {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 10px;
    animation: fadeIn 0.6s ease;
}

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

/* Titre univers */
section.univers h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.6em;
    color: #6B5896;
    margin-bottom: 15px;
    position: relative;
    padding-left: 10px;
}

section.univers h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: #d837be;
    border-radius: 2px;
}

/* Grid produits */
section.univers .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

/* Carte produit */
section.univers .product {
    background: rgba(255,255,255,0.6);
    border-radius: 10px;
    padding: 5px;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Hover doux */
section.univers .product:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Image */
section.univers .product .image {
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 4 / 5;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

section.univers .product a.card {
    display: block;
    text-decoration: none;
    color: inherit;
}

section.univers .product h3 {
    font-size: 0.95em;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    margin: 8px 0 5px;
    color: #333;
    line-height: 1.3em;

    /* coupe propre sur 2 lignes */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
section.univers .product .prix {
    font-family: "Libre Caslon Text", serif;
    font-size: 0.95em;
    color: #6B5896;
}

/* Voir plus */
section.univers .voir-plus {
    margin: 15px auto 0;
    display: block;
    background: #6B5896;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    font-family: "Montserrat", sans-serif;
}

section.univers .voir-plus:hover {
    background: #d837be;
}

/* Produits cachés */
section.univers .product.hidden {
    display: none;
}

/*** RESPONSIVE ***/

@media screen and (max-width: 900px) {
    section.univers .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 500px) {
    section.univers .grid {
        grid-template-columns: 1fr;
    }
    section.univers .grid {
        gap: 10px;
    }
    

    section.univers h2 {
        font-size: 1.3em;
    }
}