/* ===== PAGE PRODUIT / SITE VITRINE ===== */

.produit-section {
    position: relative;
    z-index: 5;
    color: white;
    padding-top: 20px; /* 🔹 Avant : 200px → réduit l’espace au-dessus */
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center; /* 🔹 Centre verticalement dans la page */
    min-height: 100vh; /* 🔹 occupe toute la hauteur de l’écran */
    text-align: left;
  }
  
  .produit-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 90%;
    gap: 100px; /* Espace entre texte et image */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s ease, transform 1.2s ease;
  }
  
  .produit-container.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .produit-image img {
    width: 500px;
    height: auto;
    border-radius: 35px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.3);
  }
  
  .produit-text {
    max-width: 550px;
  }
  
  .produit-title {
    font-size: 3rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-weight: 600;
  }
  
  .produit-description {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #f0f0f0;
  }
  
  /* ===== BOUTON DEVIS ===== */
  .cta-devis {
    display: inline-block;
    padding: 15px 35px;
    background-color: white;
    color: rgba(18, 33, 61, 0.55);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
  }
  
  .cta-devis:hover {
    background-color: #13284b;
    color: white;
    transform: translateY(-3px);
  }
  
  /* ===== ADAPTATION MOBILE ===== */
  @media (max-width: 900px) {
    .produit-container {
      flex-direction: column;
      text-align: center;
      gap: 50px;
    }
  
    .produit-image img {
      width: 90%;
    }
  
    .produit-text {
      max-width: 90%;
    }
  }