/* =========================
   styles.css Manaplast – Sections transparentes organisées
   Palette : #22344a, #454e5b, #8d6f57, #f7e7b5, #aab1bc, #344d67
   ========================= */

/* Variables de ta palette */
:root {
  --bleu-fonce: #22344a;
  --gris-bleu: #454e5b;
  --marron-chaud: #8d6f57;
  --beige-dore: #f7e7b5;
  --gris-clair: #aab1bc;
  --bleu-moyen: #344d67;
}

/* Header transparent avec ta palette */
.header-white {

  color: var(--bleu-fonce);
  border-bottom: 1.5px solid rgba(170, 177, 188, 0.3);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}

.nav-links li a:hover {
  color: var(--marron-chaud);
}

/* Barre de recherche corrigée */
/* Barre de recherche optimisée */
.header-search-bar {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 24px;
  background: rgba(247, 231, 181, 0.7);
  border-radius: 30px;
  border: 1.5px solid rgba(170, 177, 188, 0.4);
  padding: 4px 8px;
  backdrop-filter: blur(6px);
  min-width: 280px;
  max-width: 350px;
  flex-shrink: 0;
}

#header-search-input {
  border: none;
  background: transparent;
  padding: 8px 10px 8px 16px;
  border-radius: 30px 0 0 30px;
  font-size: 0.95rem;
  outline: none;
  width: 100%;
  color: var(--bleu-fonce);
}

.header-search-btn {
  background: none;
  border: none;
  color: var(--marron-chaud);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 0 30px 30px 0;
  transition: color 0.2s;
  flex-shrink: 0;
}

.header-search-btn:hover {
  color: var(--bleu-fonce);
}


/* Conteneur des résultats CORRIGÉ */
/* Conteneur des résultats de recherche */
.search-results {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: rgba(247, 231, 181, 0.95);
  border: 2px solid rgba(170, 177, 188, 0.4);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(34, 52, 74, 0.2);
  max-height: 350px;
  overflow-y: auto;
  z-index: 9999;
  display: none;
  width: max-content;
  min-width: 100%;
  max-width: 220px;
}

.search-results.show {
  display: block;
}

/* Items de résultats CORRIGÉS */
.search-result-item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(170, 177, 188, 0.2);
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
  gap: 12px;
  /* Espacement entre image et texte */
}

.search-result-item:hover {
  background: rgba(141, 111, 87, 0.15);
}

.search-result-item:last-child {
  border-bottom: none;
}

/* Image petite comme une icône */
.search-result-image {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 4px;
  background: rgba(247, 231, 181, 0.3);
  flex-shrink: 0;
  /* Empêche la compression */
}

/* Contenu texte à côté */
.search-result-content {
  flex: 1;
  min-width: 0;
  /* Permet la troncature */
}

.search-result-title {
  font-weight: 600;
  color: var(--bleu-fonce);
  margin-bottom: 2px;
  font-size: 0.9rem;
  line-height: 1.2;
  /* Troncature si trop long */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-description {
  color: var(--gris-bleu);
  font-size: 0.8rem;
  line-height: 1.2;
  /* Description sur 2 lignes max */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Header des résultats */
.search-results-header {
  padding: 8px 12px;
  background: rgba(52, 77, 103, 0.1);
  border-bottom: 1px solid rgba(170, 177, 188, 0.2);
  font-size: 0.85rem;
  color: var(--bleu-fonce);
  font-weight: 600;
}

/* Message aucun résultat */
.search-no-results {
  padding: 16px 12px;
  text-align: center;
  color: var(--gris-bleu);
  font-style: italic;
  font-size: 0.9rem;
}

/* Header container corrigé */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  gap: 18px;
  /* Important : empêcher le débordement */
  overflow: visible;
  position: relative;
}

/* Navigation corrigée */
nav {
  flex: 1 1 auto;
  /* Empêcher la compression */
  min-width: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  align-items: center;
  /* Important pour éviter la compression */
  flex-wrap: nowrap;
}

/* Logo stable */
.logo {
  /* Empêcher la compression du logo */
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--bleu-fonce);
}


.header-search-btn {
  color: var(--marron-chaud);
}

.header-search-btn:hover {
  color: var(--bleu-fonce);
}

/* HERO transparent */
.hero {
  text-align: center;
  padding: 100px 20px 60px 20px;
  background: rgba(247, 231, 181, 0.2);
  margin: 40px 0 0 0;
  border-radius: 0 0 32px 32px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--bleu-fonce);
  margin-bottom: 18px;
  letter-spacing: 2px;
  min-height: 48px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.hero p {
  font-size: 1.15rem;
  color: black;
  margin-bottom: 32px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

/* Pourquoi choisir Manaplast */
.why-manaplast {
  background: rgba(52, 77, 103, 0.15);
  padding: 50px 0 30px 0;
  backdrop-filter: blur(4px);
}

.why-manaplast h2 {
  text-align: center;
  color: var(--bleu-fonce);
  margin-bottom: 36px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.why-list {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.why-item {
  background: rgba(247, 231, 181, 0.6);
  border-radius: 16px;
  border: 2px solid rgba(170, 177, 188, 0.4);
  box-shadow: 0 4px 20px rgba(34, 52, 74, 0.15);
  backdrop-filter: blur(8px);
  width: 260px;
  padding: 28px 18px 22px 18px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s, background 0.3s, border-color 0.3s;
}

.why-item.visible {
  opacity: 1;
  transform: none;
}

.why-item:hover {
  background: rgba(247, 231, 181, 0.8);
  border-color: rgba(141, 111, 87, 0.8);
  box-shadow: 0 8px 32px rgba(141, 111, 87, 0.25);
  transform: translateY(-8px) scale(1.04);
}

.why-item .icon {
  width: 38px;
  margin-bottom: 14px;
}

.why-item h3 {
  color: var(--bleu-fonce);
  margin-bottom: 8px;
}

.why-item p {
  color: var(--gris-bleu);
}

/* Chiffres clés animés */
.key-numbers {
  background: rgba(247, 231, 181, 0.15);
  padding: 50px 0 30px 0;
  backdrop-filter: blur(4px);
}

.key-numbers h2 {
  text-align: center;
  color: var(--bleu-fonce);
  margin-bottom: 36px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.numbers-list {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.number-item {
  background: rgba(247, 231, 181, 0.6);
  border-radius: 16px;
  border: 2px solid rgba(170, 177, 188, 0.4);
  box-shadow: 0 4px 20px rgba(34, 52, 74, 0.15);
  backdrop-filter: blur(8px);
  width: 180px;
  padding: 30px 0 18px 0;
  text-align: center;
  font-size: 2.2rem;
  color: var(--marron-chaud);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s, background 0.3s, border-color 0.3s;
}

.number-item.visible {
  opacity: 1;
  transform: none;
}

.number-item:hover {
  background: rgba(247, 231, 181, 0.8);
  border-color: rgba(141, 111, 87, 0.8);
  box-shadow: 0 8px 32px rgba(141, 111, 87, 0.25);
  transform: translateY(-8px) scale(1.04);
}

.number-item p {
  font-size: 1rem;
  color: var(--gris-bleu);
  margin: 8px 0 0 0;
}

/* Guide interactif */
.solutions-guide {
  background: rgba(170, 177, 188, 0.15);
  padding: 50px 0 30px 0;
  text-align: center;
  backdrop-filter: blur(4px);
}

.solutions-guide h2 {
  color: var(--bleu-fonce);
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.guide-filters {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.guide-btn {
  background: rgba(141, 111, 87, 0.8);
  color: var(--beige-dore);
  border: none;
  border-radius: 24px;
  padding: 10px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.guide-btn:hover {
  background: rgba(34, 52, 74, 0.9);
  color: var(--beige-dore);
  transform: translateY(-2px);
}

.guide-result {
  min-height: 38px;
  font-size: 1.08rem;
  color: var(--gris-bleu);
  margin-bottom: 8px;
}

/* Section produits phares */
.products-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background: rgba(247, 231, 181, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 25px rgba(34, 52, 74, 0.1);
}

.products-section h2 {
  text-align: center;
  font-size: 2.1rem;
  color: var(--bleu-fonce);
  margin-bottom: 36px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.product-search-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 36px;
  gap: 0;
  background: rgba(247, 231, 181, 0.7);
  border-radius: 30px;
  border: 2px solid rgba(170, 177, 188, 0.4);
  backdrop-filter: blur(6px);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
}

#product-search-input {
  width: 100%;
  max-width: 320px;
  padding: 12px 16px;
  border: none;
  border-radius: 30px 0 0 30px;
  font-size: 1rem;
  outline: none;
  background: transparent;
  color: var(--bleu-fonce);
}

.product-search-btn {
  padding: 12px 20px;
  background: rgba(141, 111, 87, 0.8);
  color: var(--beige-dore);
  border: none;
  border-radius: 0 30px 30px 0;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.product-search-btn:hover {
  background: var(--bleu-fonce);
  color: var(--beige-dore);
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card {
  background: rgba(247, 231, 181, 0.6);
  border-radius: 16px;
  border: 2px solid rgba(170, 177, 188, 0.4);
  box-shadow: 0 4px 20px rgba(34, 52, 74, 0.15);
  backdrop-filter: blur(8px);
  width: 270px;
  padding: 26px 18px 20px 18px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s, background 0.3s, border-color 0.3s;
}

.product-card.visible {
  opacity: 1;
  transform: none;
}

.product-card:hover {
  background: rgba(247, 231, 181, 0.8);
  border-color: rgba(141, 111, 87, 0.8);
  box-shadow: 0 8px 32px rgba(141, 111, 87, 0.25);
  transform: translateY(-8px) scale(1.04);
}

.product-card img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 14px;
  background: rgba(247, 231, 181, 0.3);
}

.product-card h3 {
  font-size: 1.15rem;
  color: var(--bleu-fonce);
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.98rem;
  color: var(--gris-bleu);
  margin-bottom: 0;
}

/* Découvrir plus */
.discover-more {
  background: rgba(141, 111, 87, 0.15);
  padding: 50px 0 30px 0;
  border-radius: 24px;
  backdrop-filter: blur(4px);
  margin: 40px 0;
}

.discover-more h2 {
  text-align: center;
  color: var(--bleu-fonce);
  margin-bottom: 36px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.discover-cards {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.discover-card {
  background: rgba(247, 231, 181, 0.6);
  border-radius: 16px;
  border: 2px solid rgba(170, 177, 188, 0.4);
  box-shadow: 0 4px 20px rgba(34, 52, 74, 0.15);
  backdrop-filter: blur(8px);
  width: 260px;
  padding: 28px 18px 22px 18px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s, transform 0.6s, background 0.3s, border-color 0.3s;
}

.discover-card.visible {
  opacity: 1;
  transform: none;
}

.discover-card:hover {
  background: rgba(247, 231, 181, 0.8);
  border-color: rgba(141, 111, 87, 0.8);
  box-shadow: 0 8px 32px rgba(141, 111, 87, 0.25);
  transform: translateY(-8px) scale(1.04);
}

.discover-card h3 {
  color: var(--bleu-fonce);
  margin-bottom: 8px;
}

.discover-card p {
  color: var(--gris-bleu);
  margin-bottom: 14px;
}

/* Boutons */
.cta-button {
  background: rgba(141, 111, 87, 0.9);
  color: var(--beige-dore);
  border: 2px solid rgba(141, 111, 87, 0.6);
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 14px 32px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  backdrop-filter: blur(4px);
  display: inline-block;
  margin-top: 10px;
}

.cta-button:hover {
  background: rgba(34, 52, 74, 0.9);
  color: var(--beige-dore);
  border-color: var(--bleu-fonce);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 52, 74, 0.3);
}

/* Titres et textes */
h1,
h2,
h3,
h4 {
  color: white;
  letter-spacing: 1px;
}

p,
li,
.guide-result {
  color: black;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-container {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 5vw;
    overflow: visible;
  }

  .header-search-bar {
    margin: 50px 0 0 0;
    width: 100%;
    justify-content: center;
    min-width: auto;
    max-width: 100%;

  }

  .search-results {
    max-width: 100%;
    left: 0;
    right: 0;
  }

  nav {
    order: 2;
  }

  .header-search-bar {
    order: 3;
  }
}

.nav-links {

  backdrop-filter: blur(8px);
}

/* =========================
   PAGES ANNEXES - Toutes les pages avec ta palette transparente
   ========================= */

/* === PAGE PRODUCTS PRINCIPALE === */
.products-main {
  max-width: 1200px;
  margin: 50px auto;
  padding: 40px 20px;
  background: rgba(247, 231, 181, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 25px rgba(34, 52, 74, 0.1);
}

.products-main h1 {
  text-align: center;
  font-size: 2.4rem;
  color: var(--bleu-fonce);
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.products-intro {
  text-align: center;
  font-size: 1.1rem;
  color: black;
  margin-bottom: 40px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

/* Filtres par secteur */
.product-filters {
  text-align: center;
  margin-bottom: 40px;
}

.product-filters h3 {
  color: var(--bleu-fonce);
  margin-bottom: 20px;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(141, 111, 87, 0.8);
  color: var(--beige-dore);
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.filter-btn.active,
.filter-btn:hover {
  background: rgba(34, 52, 74, 0.9);
  color: var(--beige-dore);
  transform: translateY(-2px);
}

.product-specs {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.spec {
  background: rgba(170, 177, 188, 0.3);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--gris-bleu);
  backdrop-filter: blur(2px);
}

.products-help {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background: rgba(141, 111, 87, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(4px);
}

.products-help h3 {
  color: var(--bleu-fonce);
  margin-bottom: 15px;
}

.products-help p {
  color:black;
  margin-bottom: 20px;
}

/* === PAGE GUIDE D'ACHAT === */
.guide-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 40px 30px;
  background: rgba(247, 231, 181, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 25px rgba(34, 52, 74, 0.1);
}

.guide-section h1 {
  text-align: center;
  font-size: 2.4rem;
  color: var(--bleu-fonce);
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.guide-section>p {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gris-bleu);
  margin-bottom: 40px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

/* Quiz interactif */
.quiz-container {
  background: rgba(247, 231, 181, 0.4);
  border-radius: 16px;
  border: 2px solid rgba(170, 177, 188, 0.4);
  padding: 30px;
  margin-bottom: 40px;
  backdrop-filter: blur(8px);
}

.quiz-step {
  text-align: center;
}

.quiz-step h3 {
  color: var(--bleu-fonce);
  margin-bottom: 25px;
  font-size: 1.3rem;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  align-items: center;
}

.quiz-btn {
  background: rgba(52, 77, 103, 0.8);
  border: 2px solid rgba(52, 77, 103, 0.6);
  border-radius: 12px;
  padding: 15px 25px;
  font-size: 1rem;
  color: var(--beige-dore);
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
  min-width: 300px;
}

.quiz-btn:hover {
  background: rgba(141, 111, 87, 0.9);
  border-color: var(--marron-chaud);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(141, 111, 87, 0.3);
}

.quiz-result {
  text-align: center;
}

.quiz-result h3 {
  color: var(--marron-chaud);
  margin-bottom: 20px;
}

.recommendation {
  background: rgba(141, 111, 87, 0.15);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.recommendation h4 {
  color: var(--bleu-fonce);
  margin-bottom: 15px;
}

.recommendation p {
  color: var(--gris-bleu);
  margin-bottom: 15px;
}

.recommendation ul {
  text-align: left;
  color: var(--gris-bleu);
  margin-bottom: 20px;
}

.hidden {
  display: none;
}

/* Guide complet */
.complete-guide {
  margin-top: 50px;
}

.complete-guide h2 {
  text-align: center;
  color: var(--bleu-fonce);
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.guide-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.guide-card {
  background: rgba(247, 231, 181, 0.6);
  border-radius: 16px;
  border: 2px solid rgba(170, 177, 188, 0.4);
  box-shadow: 0 4px 20px rgba(34, 52, 74, 0.15);
  backdrop-filter: blur(8px);
  padding: 25px 20px;
  transition: all 0.3s ease;
}

.guide-card:hover {
  background: rgba(247, 231, 181, 0.8);
  border-color: rgba(141, 111, 87, 0.8);
  box-shadow: 0 8px 32px rgba(141, 111, 87, 0.25);
  transform: translateY(-5px);
}

.guide-card h3 {
  color: var(--bleu-fonce);
  margin-bottom: 15px;
}

.guide-card p {
  color: var(--gris-bleu);
  line-height: 1.5;
  margin-bottom: 8px;
}

.guide-card strong {
  color: var(--marron-chaud);
}

/* === PAGE À PROPOS === */
.about-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 40px 30px;
  background: rgba(247, 231, 181, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 25px rgba(34, 52, 74, 0.1);
}

.about-section h1 {
  text-align: center;
  font-size: 2.4rem;
  color: var(--bleu-fonce);
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.about-intro {
  text-align: center;
  margin-bottom: 40px;
}

.about-intro h2 {
  color:black;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.about-intro p {
  font-size: 1.1rem;
  color:black;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

.about-story {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(52, 77, 103, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(4px);
}

.about-story h3 {
  color: black;
  margin-bottom: 15px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

.about-story p {
  color:black;
  line-height: 1.6;
}

.about-values {
  margin-bottom: 40px;
}

.about-values h3 {
  text-align: center;
  color: var(--bleu-fonce);
  margin-bottom: 30px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.value-item {
  background: rgba(247, 231, 181, 0.6);
  border-radius: 16px;
  border: 2px solid rgba(170, 177, 188, 0.4);
  box-shadow: 0 4px 20px rgba(34, 52, 74, 0.15);
  backdrop-filter: blur(8px);
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(247, 231, 181, 0.8);
  border-color: rgba(141, 111, 87, 0.8);
  box-shadow: 0 8px 32px rgba(141, 111, 87, 0.25);
  transform: translateY(-5px);
}

.value-item h4 {
  color: var(--marron-chaud);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.value-item p {
  color: var(--gris-bleu);
  line-height: 1.5;
}

.about-team {
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(170, 177, 188, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(4px);
}

.about-team h3 {
  color:black;
  margin-bottom: 15px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

.about-team p {
  color:black;
  line-height: 1.6;
}

.about-contact {
  text-align: center;
  padding: 30px;
  background: rgba(141, 111, 87, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(4px);
}

.about-contact h3 {
  color:black;
  margin-bottom: 15px;
}

.about-contact p {
  color:black;
  margin-bottom: 20px;
}

.about-contact a {
  color:black;
  text-decoration: none;
}

.about-contact a:hover {
  color:black;
}

/* === PAGE CONTACT === */
.contact-section {
  max-width: 700px;
  margin: 50px auto;
  padding: 40px 30px;
  background: rgba(247, 231, 181, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 25px rgba(34, 52, 74, 0.1);
  text-align: center;
}

.contact-section h1 {
  font-size: 2.4rem;
  color: var(--bleu-fonce);
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.contact-section>p {
  font-size: 1.1rem;
  color:black;
  margin-bottom: 30px;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

.contact-details {
  background: #ffe7af52;
  border-radius: 16px;
  padding: 25px 20px;
  margin-bottom: 30px;
  backdrop-filter: blur(4px);
}

.contact-details p {
  font-size: 1.1rem;
  color: black;
  line-height: 1.8;
  margin: 0;
}

.contact-details a {
  color:black;
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--bleu-fonce);
}

.contact-form {
  background: rgba(247, 231, 181, 0.4);
  border-radius: 16px;
  border: 2px solid rgba(170, 177, 188, 0.4);
  padding: 30px;
  margin-bottom: 30px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  text-align: left;
  font-weight: 600;
  color: var(--bleu-fonce);
  margin-bottom: 5px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 2px solid rgba(170, 177, 188, 0.4);
  font-size: 1rem;
  background: rgba(247, 231, 181, 0.6);
  color: var(--bleu-fonce);
  backdrop-filter: blur(4px);
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--marron-chaud);
}

.contact-form button {
  background: rgba(141, 111, 87, 0.9);
  color: var(--beige-dore);
  border: 2px solid rgba(141, 111, 87, 0.6);
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 14px 32px;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
  align-self: center;
}

.contact-form button:hover {
  background: rgba(34, 52, 74, 0.9);
  border-color: var(--bleu-fonce);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 52, 74, 0.3);
}

.retour-accueil {
  margin-top: 20px;
}

.retour-accueil .cta-button {
  background: rgba(170, 177, 188, 0.8);
  color: var(--bleu-fonce);
  border: 2px solid rgba(170, 177, 188, 0.6);
}

.retour-accueil .cta-button:hover {
  background: rgba(52, 77, 103, 0.9);
  color: var(--beige-dore);
}

/* === HEADER HARMONISÉ POUR TOUTES LES PAGES === */
header {
  background: rgba(247, 231, 181, 0.9);
  color: var(--bleu-fonce);
  border-bottom: 1.5px solid rgba(170, 177, 188, 0.3);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
}

header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  gap: 18px;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--bleu-fonce);
}

header .logo a {
  color: var(--bleu-fonce);
  text-decoration: none;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
  align-items: center;
}

header nav ul li a {
  color: var(--bleu-fonce);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
  padding: 6px 0;
}

header nav ul li a:hover {
  color: var(--marron-chaud);
}

/* === RESPONSIVE POUR TOUTES LES PAGES === */
@media (max-width: 900px) {

  .products-main,
  .guide-section,
  .about-section,
  .contact-section {
    padding: 20px 4vw;
    margin: 20px 5vw;
    border-radius: 0;
  }

  .filter-buttons,
  .quiz-options {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .values-grid,
  .guide-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .quiz-btn {
    min-width: 90%;
  }

  header .nav-container {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 5vw;
  }

  header nav ul {
    flex-direction: column;
    gap: 12px;
  }
}
/* CARROUSEL D'IMAGES RUBANS */
.carousel-container {
  position: relative;
  width: 80%;
  max-width: 900px;
  height: 500px;
  margin: 3rem auto;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(141, 111, 87, 0.3);
  background: linear-gradient(135deg, #f7e7b5 0%, #e8d5a3 100%);
}

.carousel {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}

.carousel-item {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(141, 111, 87, 0.8);
  border: none;
  color: white;
  font-size: 2.5rem;
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.carousel-btn:hover {
  background: rgba(141, 111, 87, 1);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

/* Indicateurs de position */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(141, 111, 87, 0.8);
}

.indicator.active,
.indicator:hover {
  background: rgba(141, 111, 87, 1);
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-container {
    width: 95%;
    height: 300px;
    margin: 2rem auto;
  }
  
  .carousel-btn {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }
  
  .carousel-btn.prev {
    left: 10px;
  }
  
  .carousel-btn.next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .carousel-container {
    height: 250px;
    border-radius: 15px;
  }
  
  .carousel-item {
    border-radius: 15px;
  }
}
