@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lora', serif;
  color: #333333;
  background-color: #ffffff;
  font-size: 18px;
}

nav {
  background-color: #2d4a2d;
  padding: 16px 0;
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  color: #f5f0e8;
  font-size: 22px;
  font-weight: 600;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  align-items: center;
}

nav ul a {
  color: #c8d8c8;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 1px;
}

nav ul a:hover {
  color: #ffffff;
}

.nav-actif {
  color: #ffffff !important;
  font-weight: 600;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #eeeeee;
  padding: 8px 0;
  min-width: 200px;
  z-index: 100;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333333 !important;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.dropdown-menu a:hover {
  background-color: #f5f0e8;
  color: #2d4a2d !important;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* BARRE DE RECHERCHE */
.nav-search {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-search input {
  background-color: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 20px;
  padding: 10px 40px 10px 20px;
  font-size: 17px;
  color: #ffffff;
  font-family: 'Lora', serif;
  width: 280px;
  transition: all 0.2s;
}

.nav-search input::placeholder {
  color: rgba(255,255,255,0.6);
  font-size: 17px;
}

.nav-search input:focus {
  outline: none;
  background-color: rgba(255,255,255,0.25);
  width: 340px;
}

.search-icon {
  position: absolute;
  right: 12px;
  font-size: 14px;
  pointer-events: none;
}

footer {
  background-color: #2d4a2d;
  color: #c8d8c8;
  text-align: center;
  padding: 24px 32px;
  font-size: 15px;
  letter-spacing: 0.5px;
}

/* FOOTER RÉSEAUX */
.footer-reseaux {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-reseau {
  color: #c8d8c8;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.footer-reseau:hover {
  color: #ffffff;
}

/* HERO */
.hero {
  background-color: #f5f0e8;
  padding: 100px 32px;
  text-align: center;
}

.hero-container {
  max-width: 700px;
  margin: 0 auto;
}

.hero-tag {
  background-color: #e8f0e8;
  color: #2d4a2d;
  font-size: 14px;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 56px;
  color: #2d4a2d;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero p {
  font-size: 20px;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 36px;
}

.btn {
  background-color: #2d4a2d;
  color: #f5f0e8;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: 'Lora', serif;
}

.btn:hover {
  background-color: #3d6a3d;
}

/* HERO PLEIN ÉCRAN */
.hero-full {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.1) 100%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 560px;
}

.hero-content .hero-tag {
  background-color: rgba(255,255,255,0.2);
  color: #ffffff;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 24px;
  letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.4);
}

.hero-content h1 {
  font-size: 56px;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 500;
}

.hero-content p {
  font-size: 20px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-content .btn {
  background-color: #ffffff;
  color: #2d4a2d;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: 'Lora', serif;
}

.hero-content .btn:hover {
  background-color: #f5f0e8;
}

/* SECTION COMMUNE */
.section-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section-tag {
  font-size: 13px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-container h2 {
  font-size: 40px;
  color: #2d4a2d;
  line-height: 1.3;
  margin-bottom: 48px;
  font-weight: 500;
}

/* PAGE HEADER */
.page-header {
  background-color: #f5f0e8;
  padding: 60px 32px;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  color: #2d4a2d;
  margin: 12px 0;
  font-weight: 500;
}

.page-header p {
  font-size: 18px;
  color: #666666;
}

/* CATÉGORIES RAPIDES */
.categories-rapides {
  background-color: #ffffff;
  padding: 40px 32px;
  border-bottom: 1px solid #eeeeee;
}

.categories-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.categorie-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 1;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eeeeee;
  transition: all 0.2s;
}

.categorie-card:hover {
  border-color: #2d4a2d;
  background-color: #f9f9f9;
}

.categorie-card p {
  font-size: 15px;
  color: #2d4a2d;
  font-family: 'Lora', serif;
  letter-spacing: 0.5px;
}

.categorie-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.categorie-icon.vert { background-color: #e8f0e8; }
.categorie-icon.amber { background-color: #faeeda; }
.categorie-icon.bleu { background-color: #e6f1fb; }

/* PRODUITS VEDETTES */
.produits-vedettes {
  padding: 80px 32px;
  background-color: #f9f9f9;
}

/* FILTRES */
.filtres {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.filtre-btn {
  background-color: transparent;
  color: #2d4a2d;
  border: 1px solid #2d4a2d;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 15px;
  cursor: pointer;
  font-family: 'Lora', serif;
  letter-spacing: 0.5px;
}

.filtre-btn:hover {
  background-color: #2d4a2d;
  color: #ffffff;
}

.filtre-btn.actif {
  background-color: #2d4a2d;
  color: #ffffff;
}

/* CATÉGORIES */
.categorie-section {
  padding: 60px 32px;
  background-color: #ffffff;
}

.categorie-section.alt {
  background-color: #f5f0e8;
}

.categorie-section.cachee {
  display: none;
}

.categorie-header {
  text-align: center;
  margin-bottom: 40px;
}

.categorie-header h2 {
  font-size: 34px;
  color: #2d4a2d;
  margin: 10px 0 8px;
  font-weight: 500;
}

.categorie-header p {
  font-size: 17px;
  color: #666666;
}

.categorie-badge {
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.categorie-badge.cosmetique {
  background-color: #e8f0e8;
  color: #2d4a2d;
}

.categorie-badge.infusion {
  background-color: #faeeda;
  color: #854f0b;
}

.categorie-badge.complement {
  background-color: #e6f1fb;
  color: #185fa5;
}

.categorie-badge.capillaire {
  background-color: #e1f5ee;
  color: #0f6e56;
}

.categorie-badge.hydratation {
  background-color: #f0ede0;
  color: #6b5a3e;
}

.categorie-badge.confiserie {
  background-color: #faeeda;
  color: #854f0b;
}

/* GRILLE PRODUITS */
.produits-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.produit-card-v2 {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #eeeeee;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}

.produit-card-v2:hover {
  border-color: #2d4a2d;
  transform: translateY(-4px);
}

.card-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #888888;
}

.card-image.vert { background-color: #e8f0e8; }
.card-image.beige { background-color: #f0ede0; }
.card-image.amber { background-color: #faeeda; }

.card-image-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 20px;
}

.card-body h3 {
  font-size: 18px;
  color: #2d4a2d;
  margin-bottom: 12px;
  font-weight: 500;
}

.card-formats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.format-pill {
  background-color: #f5f0e8;
  color: #2d4a2d;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

.format-pill.amber {
  background-color: #faeeda;
  color: #854f0b;
}

.produit-card-lien {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* PAGE PRODUIT DÉTAIL */
.fil-ariane {
  padding: 16px 32px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
}

.fil-ariane a {
  font-size: 15px;
  color: #2d4a2d;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.fil-ariane a:hover {
  text-decoration: underline;
}

.produit-page {
  padding: 60px 32px;
  background-color: #ffffff;
}

.produit-page-container {
  display: flex;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

.produit-page-image {
  flex: 1;
  min-width: 400px;
}

.image-principale {
  background-color: #e8f0e8;
  height: 460px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #888888;
}

.produit-page-info {
  flex: 1;
}

.produit-page-info h1 {
  font-size: 38px;
  color: #2d4a2d;
  margin: 12px 0 10px;
  line-height: 1.3;
  font-weight: 500;
}

.produit-accroche {
  font-size: 18px;
  color: #888888;
  font-style: italic;
  margin-bottom: 20px;
}

.produit-description {
  font-size: 17px;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 32px;
}

.produit-categorie {
  background-color: #e8f0e8;
  color: #2d4a2d;
  font-size: 13px;
  padding: 4px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

/* FORMATS */
.produit-formats {
  margin-bottom: 32px;
}

.formats-titre {
  font-size: 13px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.formats-grid {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.format-card {
  flex: 1;
  border: 1px solid #dddddd;
  border-radius: 8px;
  padding: 14px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.format-card:hover {
  border-color: #2d4a2d;
  background-color: #f5f0e8;
}

.format-card.selectionne {
  border-color: #2d4a2d;
  background-color: #f5f0e8;
}

.format-poids {
  font-size: 20px;
  font-weight: 600;
  color: #2d4a2d;
  margin-bottom: 4px;
}

.format-label {
  font-size: 13px;
  color: #888888;
}

.format-prix {
  font-size: 16px;
  font-weight: 600;
  color: #2d4a2d;
  margin-top: 6px;
}

.prix-selectionne {
  margin-top: 8px;
  padding: 16px 20px;
  background-color: #f5f0e8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prix-label {
  font-size: 15px;
  color: #888888;
}

.prix-montant {
  font-size: 26px;
  font-weight: 600;
  color: #2d4a2d;
}

/* BIENFAITS */
.produit-bienfaits {
  margin-bottom: 24px;
}

.bienfaits-liste {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}

.bienfaits-liste li {
  font-size: 16px;
  color: #555555;
  padding-left: 20px;
  position: relative;
}

.bienfaits-liste li::before {
  content: "✓";
  color: #2d4a2d;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* INGRÉDIENTS */
.produit-ingredients {
  margin-top: 24px;
}

.ingredients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.ingredient-tag {
  background-color: #e8f0e8;
  color: #2d4a2d;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
}

/* COMPLÉMENTS */
.tailles-info {
  margin-bottom: 16px;
}

.taille-explication {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.taille-bloc {
  flex: 1;
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 14px;
  border: 1px solid #eeeeee;
}

.taille-nom {
  font-size: 17px;
  font-weight: 600;
  color: #2d4a2d;
  margin-bottom: 6px;
}

.taille-detail {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* À PROPOS */
.apropos {
  background-color: #f5f0e8;
  padding: 80px 32px;
}

.apropos-texte {
  font-size: 19px;
  color: #555555;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 48px;
}

.valeurs {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.valeur {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 28px 24px;
  flex: 1;
  max-width: 300px;
  text-align: left;
}

.valeur h3 {
  font-size: 19px;
  color: #2d4a2d;
  margin-bottom: 10px;
  font-weight: 500;
}

.valeur p {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
}

/* CONTACT */
.contact {
  background-color: #ffffff;
  padding: 80px 32px;
}

.contact-intro {
  font-size: 18px;
  color: #666666;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 16px;
  border: 1px solid #dddddd;
  border-radius: 6px;
  font-size: 16px;
  color: #333333;
  background-color: #f9f9f9;
  width: 100%;
  font-family: 'Lora', serif;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  background-color: #2d4a2d;
  color: #f5f0e8;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  font-family: 'Lora', serif;
  letter-spacing: 1px;
}

.contact-form button:hover {
  background-color: #3d6a3d;
}

/* PAGE CONTACT SIMPLE */
.contact-simple {
  padding: 80px 32px;
  background-color: #ffffff;
}

.contact-simple-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-coordonnees {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact-coordonnees span {
  font-size: 15px;
  color: #555555;
}

.contact-form-simple {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-simple input,
.contact-form-simple textarea,
.contact-form-simple select {
  padding: 14px 18px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  font-size: 16px;
  color: #333333;
  background-color: #f9f9f9;
  font-family: 'Lora', serif;
  transition: border-color 0.2s;
  width: 100%;
}

.contact-form-simple input:focus,
.contact-form-simple textarea:focus,
.contact-form-simple select:focus {
  outline: none;
  border-color: #2d4a2d;
  background-color: #ffffff;
}

.contact-form-simple textarea {
  resize: vertical;
}

.contact-form-simple button {
  background-color: #2d4a2d;
  color: #f5f0e8;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 17px;
  cursor: pointer;
  font-family: 'Lora', serif;
  letter-spacing: 1px;
  transition: background-color 0.2s;
}

.contact-form-simple button:hover {
  background-color: #3d6a3d;
}

.contact-reseaux-simple {
  text-align: center;
  margin-top: 40px;
}

.contact-reseaux-simple p {
  font-size: 14px;
  color: #888888;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* AVIS CLIENTS */
.avis-section {
  padding: 80px 32px;
  background-color: #f5f0e8;
}

.avis-grille {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.avis-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #eeeeee;
}

.avis-produit {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.avis-produit-img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #888;
  flex-shrink: 0;
}

.avis-produit-img.vert { background-color: #e8f0e8; }
.avis-produit-img.amber { background-color: #faeeda; }
.avis-produit-img.beige { background-color: #f0ede0; }

.avis-produit-nom {
  font-size: 14px;
  font-weight: 500;
  color: #2d4a2d;
  line-height: 1.4;
}

.avis-etoiles {
  color: #e8a020;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.avis-texte {
  font-size: 14px;
  color: #555555;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.avis-auteur {
  font-size: 13px;
  color: #888888;
  font-weight: 500;
}

/* BLOG */
.blog-section {
  padding: 80px 32px;
  background-color: #ffffff;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-card {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #eeeeee;
  overflow: hidden;
  transition: all 0.2s;
}

.blog-card:hover {
  border-color: #2d4a2d;
  transform: translateY(-4px);
}

.blog-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #888888;
}

.blog-image.vert { background-color: #e8f0e8; }
.blog-image.amber { background-color: #faeeda; }
.blog-image.beige { background-color: #f0ede0; }

.blog-body {
  padding: 24px;
}

.blog-categorie {
  background-color: #e8f0e8;
  color: #2d4a2d;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 12px;
}

.blog-body h3 {
  font-size: 18px;
  color: #2d4a2d;
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 500;
}

.blog-body p {
  font-size: 14px;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #eeeeee;
}

.blog-date {
  font-size: 12px;
  color: #888888;
}

.blog-lire {
  font-size: 13px;
  color: #2d4a2d;
  font-weight: 500;
}

/* NEWSLETTER */
.newsletter {
  padding: 80px 32px;
  background-color: #2d4a2d;
  text-align: center;
}

.newsletter .section-tag {
  color: #c8d8c8;
}

.newsletter h2 {
  color: #f5f0e8;
  font-size: 36px;
  margin-bottom: 16px;
  font-weight: 500;
}

.newsletter-texte {
  font-size: 17px;
  color: #c8d8c8;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
  font-family: 'Lora', serif;
}

.newsletter-form button {
  background-color: #f5f0e8;
  color: #2d4a2d;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  font-family: 'Lora', serif;
  font-weight: 500;
}

.newsletter-form button:hover {
  background-color: #ffffff;
}

/* BOUTON WHATSAPP FLOTTANT */
.whatsapp-flottant {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.2s;
}

.whatsapp-flottant:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}

#cosmetique,
#infusions,
#complements {
  scroll-margin-top: 80px;
}

/* RESPONSIVE — MOBILE */
@media (max-width: 768px) {

  .nav-container {
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .nav-search input {
    width: 160px;
  }

  .hero-full {
    height: 60vh;
  }

  .hero-content {
    left: 5%;
    right: 5%;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .categories-grid {
    flex-direction: column;
    max-width: 300px;
  }

  .produits-grille {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-container {
    grid-template-columns: 1fr;
  }

  .avis-grille {
    grid-template-columns: 1fr;
  }

  .valeurs {
    flex-direction: column;
    align-items: center;
  }

  .valeur {
    max-width: 100%;
    width: 100%;
  }

  .produit-page-container {
    flex-direction: column;
    gap: 32px;
  }

  .produit-page-image {
    min-width: 100%;
  }

  .image-principale {
    height: 300px;
  }

  .filtres {
    flex-wrap: wrap;
    gap: 8px;
  }

  .filtre-btn {
    font-size: 13px;
    padding: 6px 16px;
  }

  .contact-coordonnees {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  footer {
    padding: 20px 16px;
    font-size: 13px;
  }

  .page-header h1 {
    font-size: 32px;
  }

  .page-header p {
    font-size: 15px;
  }

  .section-container h2 {
    font-size: 28px;
  }
}

/* RESPONSIVE — TRÈS PETIT ÉCRAN */
@media (max-width: 480px) {

  .produits-grille {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 26px;
  }

  .formats-grid {
    flex-direction: column;
  }

  .taille-explication {
    flex-direction: column;
  }
}