/* ===== PAGE PRODUITS ===== */

/* ===== HERO ===== */

.produits-hero
{
    position: relative;
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.produits-hero-img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.produits-hero-overlay
{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to top, rgba(26,10,16,0.88) 0%, rgba(26,10,16,0.30) 55%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 22px 20px;
    box-sizing: border-box;
}

.produits-hero-titre
{
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.produits-hero-sous-titre
{
    color: #E8198B;
    font-size: 13px;
    font-style: italic;
    font-family: Arial, sans-serif;
    margin: 0;
    letter-spacing: 0.5px;
}

/* ===== INTRO ===== */

.produits-intro
{
    max-width: 88%;
    margin: 30px auto 10px;
    padding: 22px 20px 0;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: #1a1a1a;
    border-top: 3px solid #E8198B;
    box-sizing: border-box;
}

.produits-intro p
{
    margin: 0;
}

/* ===== BOUTIQUE EN LIGNE ===== */

.produits-boutique
{
    text-align: center;
    padding: 10px 20px 28px;
}

.produits-boutique-btn
{
    display: inline-block;
    background: #E8198B;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    padding: 12px 32px;
    border-radius: 30px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 14px rgba(232, 25, 139, 0.30);
}

.produits-boutique-btn:hover
{
    background: #C0134F;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(232, 25, 139, 0.40);
}

/* ===== GRILLE ===== */

.produits-grille
{
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    padding: 30px 20px 50px;
    max-width: 960px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ===== CARTE PRODUIT ===== */

.produit-carte
{
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(232, 25, 139, 0.10);
    overflow: hidden;
    width: 100%;
    max-width: 420px;
    font-family: Arial, sans-serif;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.produit-carte:hover
{
    box-shadow: 0 10px 30px rgba(232, 25, 139, 0.22);
    transform: translateY(-5px);
}

/* Image */

.produit-carte-image
{
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: #FFF0F6;
}

.produit-carte-image img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
}

.produit-carte:hover .produit-carte-image img
{
    transform: scale(1.06);
}

.produit-carte-overlay
{
    position: absolute;
    inset: 0;
    background: rgba(26, 10, 16, 0.52);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.produit-carte:hover .produit-carte-overlay
{
    opacity: 1;
}

.produit-btn-decouvrir
{
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 13px;
    font-weight: bold;
    padding: 10px 26px;
    border-radius: 30px;
    cursor: pointer;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.produit-btn-decouvrir:hover
{
    background: #E8198B;
    border-color: #E8198B;
}

/* Corps */

.produit-carte-corps
{
    padding: 18px 20px 22px;
    border-top: 3px solid #E8198B;
    text-align: left;
}

.produit-carte-titre
{
    color: #1a1a1a;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 10px;
}

.produit-carte-desc
{
    color: #555555;
    font-size: 13px;
    line-height: 1.65;
    margin: 0 0 16px;
}

.produit-btn-detail
{
    display: inline-block;
    background: #E8198B;
    color: #ffffff;
    border: none;
    font-size: 12px;
    font-weight: bold;
    padding: 9px 22px;
    border-radius: 30px;
    cursor: pointer;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: Arial, sans-serif;
    transition: background 0.2s ease;
}

.produit-btn-detail:hover
{
    background: #C0134F;
}

.produit-btn-detail:disabled,
.produit-btn-detail.indisponible
{
    background: #cccccc;
    cursor: default;
}

/* ===== RESPONSIVE 441px à 580px ===== */
@media only screen and (min-width: 441px)
{
    .produits-hero { height: 180px; }
    .produits-hero-titre { font-size: 26px; }
    .produits-hero-sous-titre { font-size: 14px; }
}

/* ===== RESPONSIVE 726px et plus ===== */
@media only screen and (min-width: 726px)
{
    .produits-hero { height: 210px; }
    .produits-hero-titre { font-size: 30px; letter-spacing: 3px; }
    .produits-hero-sous-titre { font-size: 15px; }
    .produits-intro { font-size: 15px; max-width: 580px; }
    .produit-carte { max-width: 340px; }
    .produit-carte-image { height: 230px; }
    .produit-carte-titre { font-size: 17px; }
}

/* ===== RESPONSIVE 991px et plus ===== */
@media only screen and (min-width: 991px)
{
    .produits-hero { height: 250px; }
    .produits-hero-titre { font-size: 36px; letter-spacing: 4px; }
    .produits-hero-sous-titre { font-size: 16px; }
    .produits-intro { font-size: 15px; margin-bottom: 0; max-width: 720px; }
    .produit-carte { max-width: 380px; }
    .produit-carte-image { height: 255px; }
}

/* ===== SÉPARATEUR DE SECTIONS ===== */

.produits-section-separateur
{
    text-align: center;
    padding: 22px 20px 0;
    max-width: 960px;
    margin: 0 auto;
    box-sizing: border-box;
    border-top: 3px solid #E8198B;
}

.produits-section-separateur h2
{
    color: #1a1a1a;
    font-size: 18px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.produits-section-separateur p
{
    color: #555555;
    font-size: 13px;
    font-family: Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
}

@media only screen and (min-width: 726px)
{
    .produits-section-separateur h2 { font-size: 20px; }
}

@media only screen and (min-width: 991px)
{
    .produits-section-separateur h2 { font-size: 22px; }
    .produits-section-separateur p { font-size: 14px; }
}
