/* ============================
   BLOC BLANC GLOBAL (même style que catégories)
   ============================ */
.produit-detail {
    text-align: center;
    min-width: 300px;
    box-sizing: border-box;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 30px 20px;
    width: 100%;
    max-width: 100%;
    margin: 10px;
    background-color: white;
}

/* ============================
   TITRE PRODUIT
   ============================ */
.produit-detail h2 {
    font-weight: normal;
    background-color: #f3f3f3;
    color: #35687B;
    font-size: 40px;
    margin: 10px auto 25px auto;
    padding: 10px 25px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* ============================
   WRAPPER GLOBAL
   ============================ */
.produit-wrapper {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 20px;
    flex-wrap: wrap; /* responsive */
}

/* ============================
   IMAGE PRODUIT
   ============================ */
.produit-image img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* ============================
   INFOS PRODUIT
   ============================ */
.produit-infos {
    max-width: 450px;
    text-align: left;
}

.produit-infos p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
}

.produit-infos strong {
    color: #35687B;
}

/* ============================
   DESCRIPTION
   ============================ */
.description {
    line-height: 1.5;
    white-space: pre-line;
}

/* ============================
   BOUTON RETOUR
   ============================ */
.btn-retour {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 18px;
    background-color: #35687B;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: background-color 0.2s ease;
}

.btn-retour:hover {
    background-color: #2a5262;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
    .produit-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .produit-infos {
        text-align: center;
    }
}
