.single-container {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
       
}

.produit-container {
    width: 90%; 
    display: flex;
    margin: 2rem 0;
    gap: 1rem;
}

.produit-gauche {
width: 30%;
height: 80vh;
overflow: hidden;
display: flex;
align-items: center;
}

.produit-gauche img {
border-radius: 15px;
    width: 100%;
}

.produit-droite {
width: 70%;
padding: 1rem;

}

.produit-titre {
    font-family: "Medula One", system-ui;
font-size: 75px;
}

.produit-description {
   max-width: 90%;
}

.produit-prix {
    margin: 1rem 0;
}

.cart {
    width: fit-content;
    /* display: flex; */
    align-items: center;
    gap: 1rem;

}

.button {
    background-color: #643C2B!important;
    transition: background-color 0.5s ease-in-out;
    color: white;
}

.button:hover {
    background-color: #ab6d53!important;
}


.disclaimer {
    font-size: 15px;
    width: 60%;
    margin-top: 2rem;
}


.woocommerce .quantity input.qty {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 16px;
    width: 60px;
    height: 40px;
}

  /* Responsive */
  @media (max-width: 862px) {


    .produit-container {
flex-direction: column;
      
    }

    .produit-gauche {
    width: 100%;
    height: fit-content;

    }
    
    .produit-droite {
    width: 100%;
    }
    
    .produit-titre {
        font-family: "Medula One", system-ui;
    font-size: 45px;
    text-align: center;
    }
    
    .produit-description {
       max-width: 100%;
    }

    .disclaimer {
        font-size: 12px;
        width: 100%;
        margin-top: 2rem;
    }
    
    
    .woocommerce .quantity input.qty {
        text-align: center;
        border: 1px solid #ddd;
        border-radius: 5px;
        padding: 5px 10px;
        font-size: 16px;
        width: 60px;
        height: 40px;
    }

  }
