/* ===== FICHE TECHNIQUE ===== */
.fiche-technique {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.fiche-technique h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
  color: black;
  text-align: center;
  font-family: "Lovelo Black";
  line-height: 1.4;
}
/* ===== HEADER RESPONSIVE ===== */
.fiche-header {
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
  background-color: #f1efec;
  padding: 0 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.back-arrow {
  cursor: pointer;
  position: absolute;
  left: 15px;
  font-size: 18px;
  color: #1e2a57;
  font-weight: bold;
  font-family: "Futura";
  transition: color 0.3s ease;
  z-index: 10;
}

.back-arrow:hover {
  color: #e0b78f;
}

.logo-container {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.logo-responsive {
  height: 55px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* ===== RESPONSIVE LOGO ===== */
@media (max-width: 992px) {
  .fiche-header {
    height: 55px;
    padding: 0 12px;
  }

  .back-arrow {
    left: 12px;
    font-size: 16px;
  }

  .logo-responsive {
    height: 55px;
    max-width: 180px;
  }
}

@media (max-width: 768px) {
  .fiche-header {
    height: 50px;
    padding: 0 10px;
  }

  .back-arrow {
    left: 10px;
    font-size: 14px;
  }

  .logo-responsive {
    height: 50px;
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .fiche-header {
    height: 45px;
    padding: 0 8px;
  }

  .back-arrow {
    left: 8px;
    font-size: 12px;
  }

  .logo-responsive {
    height: 40px;
    max-width: 120px;
  }
}

@media (max-width: 350px) {
  .fiche-header {
    height: 40px;
    padding: 0 5px;
  }

  .back-arrow {
    left: 5px;
    font-size: 11px;
  }

  .logo-responsive {
    height: 35px;
    max-width: 100px;
  }
}

.fiche-technique {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.fiche-technique h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  color: black;
  text-align: center;
  font-family: "Lovelo Black";
  line-height: 1.4;
}
/* ===== SECTIONS PRODUITS ===== */
.product-section {
  margin-bottom: 40px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 30px;
}

.product-section:last-child {
  border-bottom: none;
}

/* ===== AFFICHAGE PRODUIT ===== */
.product-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.product-variants {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.fiche-technique  .product-frame {
  border: 2px solid #1e2a57;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 10px;
  height: 200px;
  width: 160px;
  background-color: #f9f9f9;
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  font-family: "Futura";
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-frame img {
  width: 80%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
}

.product-name {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin: 0;
  line-height: 1.2;
}

/* ===== BOUTONS PRODUITS ===== */
.product-btn {
  background: linear-gradient(135deg, #1e2a57, #2a3a6b);
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 30px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  text-align: center;
  font-family: "Lovelo Black";
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-btn:hover {
  background: linear-gradient(135deg, #2a3a6b, #1e2a57);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.product-btn.active {
  background: linear-gradient(135deg, #e0b78f, #d4a86a);
  color: #1e2a57;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(224, 183, 143, 0.4);
}

/* ===== DESCRIPTIONS PRODUITS ===== */
.product-description {
  margin-top: 20px;
  padding: 20px;
  background-color: #fafafa;
  border-radius: 10px;
  border-left: 4px solid #1e2a57;
  animation: fadeIn 0.5s ease-in-out;
}

.product-description.active {
  display: block !important;
}

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

.fiche-content {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.8;
  color: #333;
  text-align: center;
  font-family: "Futura";
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ===== DESCRIPTION DÉTAILLÉE ===== */
.description {
  background: linear-gradient(135deg, #e0b78f, #d4a86a);
  padding: 30px;
  margin-top: 20px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.description h3 {
  font-weight: bold;
  color: #1e2a57;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 18px;
  font-family: "Lovelo Black";
}

.description h3:first-child {
  margin-top: 0;
}

.description p,
.description li {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 10px;
}

.description ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.description li {
  margin-bottom: 8px;
}

.bold {
  font-weight: bold;
  color: #1e2a57;
}

/* ===== BOUTON FICHE TECHNIQUE ===== */
.fiche-btn {
  background: linear-gradient(135deg, #e0b78f, #d4a86a);
  color: #1e2a57;
  font-family: "Lovelo Black";
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  display: flex;
  width: fit-content;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin: 10px;
  /* Aligner à droite */
    margin-left: auto;
    margin-right: 10px;
}

.fiche-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .product-variants {
    gap: 15px;
  }

  .product-frame {
    width: 140px;
    height: 180px;
  }

  .fiche-technique h2 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .fiche-technique {
    padding: 15px;
  }

  .product-variants {
    gap: 10px;
  }

  .product-frame {
    width: 120px;
    height: 160px;
    padding: 10px;
  }

  .product-name {
    font-size: 12px;
  }

  .product-btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .fiche-content {
    font-size: 16px;
    padding: 15px;
  }

  .description {
    padding: 20px;
    margin-left: 0;
    margin-right: 0;
  }

  .description p,
  .description li {
    font-size: 14px;
  }

  .fiche-technique h2 {
    font-size: 18px;
  }
  .fiche-btn {
  background: linear-gradient(135deg, #e0b78f, #d4a86a);
  color: #1e2a57;
  font-family: "Lovelo Black";
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  display: block;
  width: fit-content;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
 
}
}

@media (max-width: 480px) {
  .product-variants {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .product-frame {
    width: 140px;
    height: 170px;
  }

  .product-btn {
    font-size: 12px;
    padding: 8px 16px;
    width: 90%;
    max-width: 280px;
  }

  .fiche-btn {
    font-size: 16px;
    padding: 12px 20px;
    width: 90%;
  }

  .description {
    padding: 15px;
  }

  .fiche-technique h2 {
    font-size: 16px;
    line-height: 1.3;
  }
  .fiche-btn {
  background: linear-gradient(135deg, #e0b78f, #d4a86a);
  color: #1e2a57;
  font-family: "Lovelo Black";
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 25px;
  
  border: none;
  cursor: pointer;
  display: block;
  
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
 
}
}
