/* === Style général === */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f8f8f8;
}

header,
footer {
  background: #1f2937;
  color: white;
  text-align: center;
  padding: 1em;
}

.container {
  width: 80%;
  margin: auto;
  background: white;
  padding: 1.5em;
  border-radius: 8px;
  margin-top: 1em;
}

h1,
h2,
h3 {
  color: #c9956b;
}

.btn {
  background: #2563eb;
  color: white;
  padding: 0.5em 1em;
  border: none;
  border-radius: 6px;
  text-decoration: none;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1em;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 1em;
  border-radius: 8px;
  text-align: center;
}

.card img {
  width: 100%;
  border-radius: 8px;
}

/* ----------------------------------------------------------------- */
/* ===== STYLE DE LA NAVIGATION PRINCIPALE (Essentiel au positionnement) ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #FDF6F1; /* Couleur claire pour correspondre à votre capture d'écran */
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #1f2937;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    /* !!! RÈGLE CLÉ : positionnement du parent pour le dropdown !!! */
    position: relative; 
    padding: 10px 15px;
}

.nav-links a {
    text-decoration: none;
    color: #1f2937;
    padding: 0;
}

/* ----------------------------------------------------------------- */
/* ===== MENU DÉROULANT : VERSION FIABLE ET FORCÉE (avec !important) ===== */

/* Masque le menu déroulant par défaut */
.dropdown-content {
    /* RÈGLES FORCÉES pour le masquage initial */
    visibility: hidden !important; 
    opacity: 0 !important; 
    transform: translateY(10px) !important; 
    
    /* Transitions */
    transition: visibility 0s 0.25s, opacity 0.25s ease, transform 0.25s ease; 
    
    /* Styles de positionnement et d'apparence */
    position: absolute;
    top: 100%; 
    left: 0;
    background-color: #FDF6F1;
    min-width: 180px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 0;
    margin: 0;
}

/* Affichage du menu au survol de l'élément li parent */
.dropdown:hover > .dropdown-content {
    /* RÈGLES FORCÉES pour l'affichage */
    visibility: visible !important; 
    opacity: 1 !important; 
    transform: translateY(0) !important; 
    transition-delay: 0s !important; 
}

/* Styles des liens du sous-menu */
.dropdown-content li {
    list-style: none;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #2E2B29;
    text-decoration: none;
    font-size: 15px;
}

.dropdown-content a:hover {
    background-color: #EAE3DD;
}

/* ================================
   🌸 STYLES DE LA PAGE PRODUITS
   ================================ */

/* Section d’en-tête */
.page-header {
  background: linear-gradient(135deg, #FDF6F1 0%, #EBDED4 100%);
  padding: 60px 40px;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 15px;
  color: #2E2B29;
}

.page-header p {
  font-size: 18px;
  color: #2E2B29;
  opacity: 0.8;
}

/* Conteneur global */
.products-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  gap: 40px;
}

/* Sidebar */
.sidebar {
  flex: 0 0 280px;
  background-color: #FDF6F1;
  padding: 30px;
  border-radius: 15px;
  height: fit-content;
  position: sticky;
  top: 120px;
}

.filter-section {
  margin-bottom: 35px;
}

.filter-section h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #2E2B29;
  border-bottom: 2px solid #EEC9C4;
  padding-bottom: 10px;
}

.filter-option {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  cursor: pointer;
}

.filter-option input {
  margin-right: 10px;
  cursor: pointer;
}

.price-range {
  display: flex;
  gap: 10px;
  align-items: center;
}

.price-input {
  width: 80px;
  padding: 8px;
  border: 1px solid #EBDED4;
  border-radius: 5px;
  background-color: #FAF8F6;
}

.filter-button {
  width: 100%;
  padding: 12px;
  background-color: #EEC9C4;
  color: #2E2B29;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 20px;
}

.filter-button:hover {
  background-color: #2E2B29;
  color: #F7E9E3;
}

/* Grille de produits */
.products-main {
  flex: 1;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.products-count {
  font-size: 16px;
  color: #2E2B29;
  opacity: 0.7;
}

.sort-select {
  padding: 10px 20px;
  border: 1px solid #EBDED4;
  border-radius: 8px;
  background-color: #FDF6F1;
  color: #2E2B29;
  cursor: pointer;
  font-size: 15px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: #FDF6F1;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #EEC9C4;
  color: #2E2B29;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  z-index: 1;
}

.product-image {
  width: 100%;
  height: 320px;
  background-color: #EBDED4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #2E2B29;
  position: relative;
  overflow: hidden;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(46, 43, 41, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.quick-view-btn {
  background-color: #F7E9E3;
  color: #2E2B29;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.quick-view-btn:hover {
  background-color: #EEC9C4;
  transform: scale(1.05);
}

.product-info {
  padding: 25px;
}

.product-category {
  font-size: 13px;
  color: #EEC9C4;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-name {
  font-size: 20px;
  margin-bottom: 10px;
  color: #2E2B29;
}

.product-description {
  font-size: 14px;
  color: #2E2B29;
  opacity: 0.7;
  margin-bottom: 15px;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 22px;
  color: #EEC9C4;
  font-weight: bold;
}

.add-to-cart {
  background-color: #2E2B29;
  color: #F7E9E3;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.add-to-cart:hover {
  background-color: #EEC9C4;
  color: #2E2B29;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

.page-btn {
  padding: 10px 18px;
  background-color: #FDF6F1;
  color: #2E2B29;
  border: 1px solid #EBDED4;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.page-btn:hover, .page-btn.active {
  background-color: #EEC9C4;
  color: #2E2B29;
  border-color: #EEC9C4;
}

/* Responsive */
@media (max-width: 968px) {
  .products-container {
    flex-direction: column;
  }

  .sidebar {
    flex: 1;
    position: static;
  }
}

/* ----- Menu déroulant plus esthétique ----- */
.pretty-dropdown {
  background-color: #FDF6F1;
  border-radius: 12px;
  padding: 10px 0;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  margin-top: 10px;
  min-width: 220px;
  transition: all 0.3s ease;
}

.pretty-dropdown li {
  list-style: none;
}

.pretty-dropdown a {
  display: block;
  padding: 12px 20px;
  color: #2E2B29;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}

.pretty-dropdown a:hover {
  background-color: #EEC9C4;
  color: #fff;
  border-left: 3px solid #2E2B29;
  transform: translateX(3px);
}

/* Icônes plus discrètes et élégantes */
.pretty-dropdown a::before {
  opacity: 0.7;
  margin-right: 8px;
}

.hero {
  background: url("../images/acceuil.png") center center/cover no-repeat;
  padding: 120px 40px;
  text-align: center;
  color: #2E2B29;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero h1, 
.hero p, 
.hero a {
  position: relative;
  z-index: 2;
}

/* === SECTION PHILOSOPHIE === */
.philosophie {
  background: linear-gradient(135deg, #FAF8F6 0%, #FDF3EF 100%);
  padding: 80px 20px;
  text-align: center;
  color: #2E2B29;
}

.philosophie-container {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.philosophie .section-title {
  font-size: 40px;
  margin-bottom: 30px;
  color: #2E2B29;
}

.philosophie p {
  font-size: 18px;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* === PAGE À PROPOS === */
.about-header {
  background: linear-gradient(135deg, #FAF8F6 0%, #FDF3EF 100%);
  padding: 100px 30px;
  text-align: center;
  color: #2E2B29;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-title {
  font-size: 42px;
  margin-bottom: 30px;
}

.about-mission, .about-values, .about-adn {
  padding: 80px 30px;
  background-color: #FFFFFF;
  color: #2E2B29;
  text-align: center;
}

.about-values {
  background: #FDF6F1;
}

.about-values ul {
  list-style: none;
  padding: 0;
}

.about-values li {
  margin: 10px 0;
  font-size: 17px;
  opacity: 0.9;
}

.about-adn {
  background: linear-gradient(135deg, #FDF3EF 0%, #FAF8F6 100%);
}

/* === PAGE NOS MARQUES === */
.marques-header {
  background: linear-gradient(135deg, #FAF8F6 0%, #FDF3EF 100%);
  padding: 100px 30px;
  text-align: center;
  color: #2E2B29;
}

.marques-header p {
  max-width: 900px;
  margin: 20px auto 0;
  font-size: 18px;
  line-height: 1.8;
}

.marques-list {
  padding: 80px 40px;
  background-color: #fff;
}

.marques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.marque-card {
  background-color: #FDF6F1;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.marque-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.marque-card h2 {
  color: #2E2B29;
  margin-bottom: 10px;
}

.marque-card p {
  color: #2E2B29;
  font-size: 15px;
  margin-bottom: 5px;
}

.marque-card span {
  color: #EEC9C4;
  font-size: 14px;
  font-style: italic;
}

/* === Nouveau Footer Épuré === */
footer {
  background-color: #2E2B29;
  color: #FAF8F6;
  padding: 60px 40px 30px;
  font-family: 'Georgia', serif;
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 120px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-section {
  text-align: center;
}

.footer-section h3 {
  color: #EEC9C4;
  font-size: 18px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section a {
  text-decoration: none;
  color: #FAF8F6;
  font-size: 15px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #EEC9C4;
}

.social-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}

/* === PAGE COMMANDE - Glow by Kawtar === */

body {
  font-family: 'Georgia', serif;
  background-color: #FAF8F6;
  color: #2E2B29;
}

/* --- En-tête de page --- */
.page-header {
  background: linear-gradient(135deg, #FDF6F1 0%, #EBDED4 100%);
  padding: 60px 40px;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 15px;
  color: #2E2B29;
}

.page-header p {
  font-size: 18px;
  color: #2E2B29;
  opacity: 0.8;
}

/* --- Conteneur principal --- */
.form-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

/* --- Sections du formulaire --- */
.form-section {
  background-color: #FDF6F1;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 24px;
  margin-bottom: 25px;
  color: #2E2B29;
  padding-bottom: 15px;
  border-bottom: 2px solid #EEC9C4;
}

.form-group {
  margin-bottom: 25px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #2E2B29;
  font-size: 16px;
  font-weight: 500;
}

.required {
  color: #EEC9C4;
}

/* --- Champs de texte --- */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #EBDED4;
  border-radius: 8px;
  background-color: #FAF8F6;
  color: #2E2B29;
  font-size: 15px;
  font-family: 'Georgia', serif;
  transition: border-color 0.3s;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #EEC9C4;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* --- Produits --- */
.products-section {
  margin-top: 30px;
}

.product-item {
  background-color: #FAF8F6;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.product-item:hover {
  border-color: #EEC9C4;
  transform: translateX(5px);
}

.product-item.selected {
  background-color: #EBDED4;
  border-color: #EEC9C4;
}

.product-checkbox {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #EEC9C4;
}

.product-image {
  width: 60px;
  height: 60px;
  background-color: #EBDED4;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.product-details {
  flex: 1;
}

.product-name {
  font-size: 18px;
  font-weight: 600;
  color: #2E2B29;
  margin-bottom: 5px;
}

.product-price {
  font-size: 16px;
  color: #EEC9C4;
  font-weight: bold;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-label {
  font-size: 14px;
  color: #2E2B29;
}

.quantity-input {
  width: 70px;
  padding: 8px;
  border: 1px solid #EBDED4;
  border-radius: 6px;
  background-color: #FAF8F6;
  text-align: center;
  font-size: 15px;
}

/* --- Récapitulatif --- */
.order-summary {
  background-color: #FDF6F1;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  height: fit-content;
  position: sticky;
  top: 120px;
}

.summary-title {
  font-size: 24px;
  margin-bottom: 25px;
  color: #2E2B29;
  padding-bottom: 15px;
  border-bottom: 2px solid #EEC9C4;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #EBDED4;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-label {
  color: #2E2B29;
  font-size: 15px;
}

.summary-value {
  color: #2E2B29;
  font-size: 15px;
  font-weight: 600;
}

.summary-total {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #EEC9C4;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-label {
  font-size: 20px;
  font-weight: bold;
  color: #2E2B29;
}

.total-value {
  font-size: 28px;
  font-weight: bold;
  color: #EEC9C4;
}

.empty-cart {
  text-align: center;
  padding: 40px 20px;
  color: #2E2B29;
  opacity: 0.6;
}

/* --- Bouton Validation --- */
.submit-section {
  margin-top: 30px;
}

.submit-btn {
  width: 100%;
  background-color: #EEC9C4;
  color: #2E2B29;
  padding: 18px 40px;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Georgia', serif;
}

.submit-btn:hover {
  background-color: #2E2B29;
  color: #F7E9E3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.submit-btn:disabled {
  background-color: #EBDED4;
  cursor: not-allowed;
  transform: none;
}

/* --- Responsive --- */
@media (max-width: 968px) {
  .form-container {
    grid-template-columns: 1fr;
  }
  .order-summary {
    position: static;
  }
}

/* ----- Bouton Panier Flottant ----- */
.floating-cart {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #EEC9C4;
  color: #2E2B29;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 1000;
}

.floating-cart:hover {
  background-color: #2E2B29;
  color: #fff;
  transform: translateY(-3px);
}

/* Agrandit les images des produits */
.product-image {
  width: 100%;
  height: 280px; /* augmente la hauteur selon ton design */
  object-fit: cover; /* pour garder le bon ratio sans déformer */
  border-radius: 12px; /* garde des coins doux */
  transition: transform 0.3s ease;
}

/* Petit effet au survol */
.product-image:hover {
  transform: scale(1.05);
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background-color: #FDF6F1;
  padding: 80px 40px;
  text-align: center;
}

.faq-title {
  font-size: 36px;
  color: #2E2B29;
  margin-bottom: 40px;
  font-family: 'Georgia', serif;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 20px 25px;
  text-align: left;
  font-size: 18px;
  color: #2E2B29;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.faq-question:hover {
  background-color: #F7E9E3;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.faq-answer p {
  margin: 15px 0;
  color: #2E2B29;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 25px;
}

.faq-item.active .faq-question {
  background-color: #F7E9E3;
  color: #2E2B29;
}

.order-summary {
  background-color: #FFF8F5;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #EEC9C4;
  transition: all 0.3s ease;
}

.order-summary:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.summary-title {
  font-size: 22px;
  color: #2E2B29;
  margin-bottom: 20px;
  text-align: center;
}

.summary-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FDF6F1;
  padding: 12px 18px;
  border-radius: 10px;
  transition: background-color 0.3s;
}

.summary-item:hover {
  background-color: #F7E9E3;
}

.summary-left {
  display: flex;
  flex-direction: column;
}

.summary-name {
  font-weight: 600;
  color: #2E2B29;
}

.summary-qty {
  font-size: 14px;
  color: #B88B7A;
}

.summary-price {
  font-weight: 600;
  color: #EEC9C4;
}

.summary-total {
  margin-top: 25px;
  border-top: 1px solid #EEC9C4;
  padding-top: 15px;
  text-align: right;
  font-size: 18px;
  color: #2E2B29;
}

/* === Contrôles de quantité dans le récapitulatif === */
.quantity-control {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  border-radius: 30px;
  padding: 5px 12px;
  border: 1px solid #EEC9C4;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.btn-plus,
.btn-minus {
  background-color: #EEC9C4;
  border: none;
  color: #2E2B29;
  font-weight: bold;
  font-size: 18px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-plus:hover,
.btn-minus:hover {
  background-color: #2E2B29;
  color: #FDF6F1;
  transform: scale(1.1);
}

.summary-qty {
  font-weight: 600;
  color: #B88B7A;
  font-size: 15px;
  min-width: 20px;
  text-align: center;
}

.add-btn {
  display: inline-block;
  background: linear-gradient(135deg, #eec9c4, #ebded4);
  color: #2E2B29;
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 10px rgba(238, 201, 196, 0.3);
}

.add-btn:hover {
  background: #2E2B29;
  color: #fffaf7;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(46, 43, 41, 0.3);
}

.btn-details {
  background: linear-gradient(135deg, #EEC9C4, #F7E9E3);
  color: #2E2B29;
}
.btn-details:hover {
  background-color: #2E2B29;
  color: #F7E9E3;
}

/* --- Améliorations générales de la section Philosophie --- */

.philosophie {
  /* Ajoute un peu plus d'espace autour de la section */
  padding: 60px 0; 
}

/* Style du titre */
.philosophie .section-title {
  font-family: 'Playfair Display', serif; /* Exemple d'une police élégante (à importer) */
  font-weight: 700;
  font-size: 2.5rem; /* Rendre le titre plus grand et plus impactant */
  color: #333; /* Un gris foncé pour l'élégance */
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  /* Soulignement léger et raffiné (similaire à l'image fournie) */
}
.philosophie .section-title::after {
  content: '';
  display: block;
  width: 80px; /* Longueur du trait */
  height: 1px;
  background-color: #e8d0c2; /* Couleur douce (rose/pêche) */
  margin: 10px auto 0; /* Centrer le trait sous le titre */
}

/* Conteneur principal (pour ne pas toucher les marges du titre) */
.philosophie-container {
  max-width: 1100px; /* Assurez-vous que le contenu n'est pas trop large */
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Améliorations de la grille Image + Texte --- */

.philosophie-grid {
  display: flex;
  gap: 60px; /* Augmenter l'espace pour mieux respirer */
  align-items: center; 
}

/* --- Améliorations pour l'Image (colonne de gauche) --- */

.philosophie-image {
  flex: 0 0 45%; /* Donner un peu plus de place à l'image (45%) */
  max-width: 45%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Ajouter une ombre subtile pour un effet de profondeur */
  border-radius: 12px; /* Augmenter légèrement le rayon des coins */
  overflow: hidden; /* Important pour que l'ombre et le border-radius s'appliquent correctement à l'image */
}

.philosophie-image img {
  width: 100%;
  height: 100%; /* Assure que l'image remplit la hauteur, si nécessaire */
  object-fit: cover;
  /* Optionnel : un léger zoom au survol pour un effet interactif */
  transition: transform 0.3s ease-in-out;
}
.philosophie-image img:hover {
  transform: scale(1.03); 
}

/* --- Améliorations du Contenu Textuel (colonne de droite) --- */

.philosophie-content {
  flex: 1; 
  line-height: 1.8; /* Augmenter l'interligne pour une meilleure lisibilité */
  font-size: 1.1rem; /* Rendre le texte légèrement plus grand */
  color: #555; /* Un gris moins agressif que le noir pur */
}

/* Styles pour les éléments mis en évidence */
.philosophie-content p strong {
  color: #d19f8a; /* Utiliser une couleur chaude pour le texte clé */
  font-weight: 600;
}

/* Style pour les italiques */
.philosophie-content p em {
  font-style: italic;
  color: #888;
}

/* Adaptation Mobile (mêmes règles que précédemment, mais les valeurs ont été ajustées) */
@media (max-width: 992px) { /* Je passe à 992px pour que la mise en page change plus tôt sur tablette */
  .philosophie-grid {
      flex-direction: column;
      gap: 30px;
  }

  .philosophie-image,
  .philosophie-content {
      max-width: 100%;
      flex: auto;
  }
}

/* --- Styles généraux pour le Header --- */

header {
  width: 100%;
  /* Utilisation de la couleur de la navbar que l'on voit (bleu nuit/anthracite) */
  background-color: #2c3e50; 
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Ombre très subtile pour la profondeur */
  position: sticky; /* Pour que le header reste visible en haut lors du défilement */
  top: 0;
  z-index: 1000; /* Assure qu'il est au-dessus des autres éléments */
}

/* --- Styles pour la Barre de Navigation --- */

.navbar {
  display: flex;
  justify-content: space-between; /* Espace le logo à gauche et les liens à droite */
  align-items: center;
  max-width: 1200px; /* Limiter la largeur de la navigation pour une meilleure lisibilité */
  margin: 0 auto;
  padding: 15px 30px; /* Espacement intérieur */
}

/* --- Styles pour le Logo --- */

.logo {
  font-family: 'Playfair Display', serif; /* Si vous utilisez une police élégante */
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #dcb7a1; /* Couleur douce pour faire ressortir le logo */
}

/* --- Styles pour les Liens de Navigation Principaux --- */

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  margin-left: 30px; /* Espace entre les liens principaux */
  position: relative; /* Nécessaire pour positionner correctement le menu déroulant */
}

.nav-links a {
  text-decoration: none;
  color: #2c3e50; /* Couleur des liens (blanc cassé) */
  font-size: 1rem;
  padding: 10px 0; /* Espacement autour du texte du lien */
  display: block;
  transition: color 0.3s ease;
  font-weight: 500;
}

/* Effet au survol des liens */
.nav-links a:hover,
.dropdown:hover > a { /* Appliquer l'effet aussi au lien "Produits" quand le menu est ouvert */
  color: #d19f8a; /* Couleur pêche/or doux au survol */
}

/* --- Styles pour le Menu Déroulant (Dropdown) --- */

.dropdown-content {
  display: none; /* Cache le menu par défaut */
  position: absolute;
  top: 100%; /* Positionne le menu juste sous le lien parent */
  right: 0; /* Aligner le menu déroulant à droite de son parent 'Produits' */
  min-width: 200px; /* Largeur minimale du menu */
  background-color: #ffffff; /* Fond blanc propre */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); /* Ombre plus marquée pour le menu */
  border-radius: 8px; /* Coins arrondis pour un look doux */
  overflow: hidden; /* Assure que le contenu respecte le border-radius */
  padding: 10px 0;
  list-style: none;
  z-index: 2000; /* Assure qu'il est au-dessus du header et du contenu */
}

/* Afficher le menu déroulant au survol */
.dropdown:hover .dropdown-content {
  display: block; 
}

/* Styles pour les liens du menu déroulant */
.dropdown-content li a {
  color: #555; /* Couleur de texte plus sombre à l'intérieur du menu */
  padding: 8px 20px;
  font-size: 0.95rem;
  white-space: nowrap; /* Empêche les noms de catégorie de se couper */
}

/* Effet au survol des liens du menu déroulant */
.dropdown-content li a:hover {
  background-color: #f8f8f8; /* Un très léger fond gris au survol */
  color: #2c3e50; /* Couleur principale du header au survol du sous-lien */
}

/* --- Styles de base du Footer --- */
.main-footer {
    background: linear-gradient(135deg, #2c2c2c 0%, #3a3a3a 100%);
    color: #f5f5f5;
    padding: 70px 30px 30px;
    font-family: 'Georgia', serif;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.1);
}

/* Conteneur principal pour centrer le contenu */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid rgba(201, 168, 138, 0.2);
}

/* Styles pour le titre de colonne */
.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #c9a88a;
    margin-bottom: 20px;
    position: relative;
    letter-spacing: 1px;
}

/* Séparation subtile sous le titre */
.footer-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #c9a88a, transparent);
    margin-top: 8px;
    border-radius: 2px;
}

/* Styles pour le Logo et intro (colonne 1) */
.footer-logo {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-logo img {
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-intro {
    font-size: 1rem;
    line-height: 1.7;
    color: #d4d4d4;
    max-width: 280px;
}

/* Styles pour les liens de navigation */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

/* Effet au survol des liens */
.footer-links a:hover {
    color: #c9a88a;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -15px;
}

/* --- Styles pour la section du bas (Droits d'auteur) --- */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    font-size: 0.9rem;
    color: #999;
}

.footer-bottom p {
    margin: 0;
}

/* Adaptation pour les petits écrans (tablettes et mobiles) */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column; /* Les colonnes s'empilent */
        text-align: center;
    }

    .footer-col {
        margin-bottom: 30px;
    }

    /* Centrer la séparation du titre sur mobile */
    .footer-title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links {
        /* Centrer la liste des liens sur mobile */
        display: inline-block;
    }
}

/* --- Styles pour la colonne Suivez-nous --- */

/* Aligner les icônes au centre */
.footer-col.social-icons {
  text-align: center; 
}

/* Rendre les liens de la liste alignés horizontalement */
.social-icons {
  display: flex;
  justify-content: center; /* Centrer les icônes */
  gap: 25px; /* Espace entre les icônes */
  margin-top: 20px;
}

/* Enlever les points de liste pour les icônes */
.social-icons li {
  margin: 0;
}

/* Style de l'icône elle-même */
.social-icons a {
  color: #e8d0c2; /* Couleur pêche/rose pour l'icône (couleur du texte du footer) */
  font-size: 1.5rem; /* Taille de l'icône */
  display: block; /* Assure que le lien est un bloc pour l'effet de survol */
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 5px; /* Ajouter un petit padding pour une zone de clic plus grande */
}

/* Effet de survol */
.social-icons a:hover {
  color: #d19f8a; /* Couleur d'accentuation plus vive au survol */
  transform: translateY(-3px) scale(1.1); /* Petit soulèvement et zoom au survol */
}

/* Petite correction pour que les icônes soient plus cohérentes en taille */
.social-icons a i {
  width: 20px; /* Assure une uniformité de taille pour toutes les icônes */
  text-align: center;
}

/* --- Styles de l'entête de la page Marques --- */
.marques-header {
  padding: 60px 20px 30px;
  background-color: #fcf7f4; /* Fond très léger, presque blanc, pour la section d'introduction */
  text-align: center;
}

.marques-container {
  max-width: 900px;
  margin: 0 auto;
}

.marques-header .section-title {
  font-size: 3rem;
  color: #383431; /* Couleur sombre et élégante pour le titre */
  margin-bottom: 15px;
}

.marques-header .intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* --- Styles de la Grille des Marques --- */
.marques-list {
  padding: 50px 20px;
  background-color: #ffffff; /* Fond blanc pour la grille */
}

.marques-grid {
  display: grid;
  /* Crée 3 colonnes de taille égale, ajustées pour le responsive */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 30px; /* Espace entre les cartes */
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Styles des Cartes de Marque --- */
.marque-card {
  display: block; /* Important car c'est un lien <a> maintenant */
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #eee; /* Bordure très subtile */
  border-radius: 12px; /* Coins arrondis pour la douceur */
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Assure que toutes les cartes ont la même hauteur */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Ombre douce par défaut */
}

/* Effet de survol professionnel */
.marque-card:hover {
  transform: translateY(-5px); /* Légère élévation au survol */
  box-shadow: 0 10px 20px rgba(210, 160, 140, 0.2); /* Ombre avec couleur d'accentuation */
  border-color: #d19f8a; /* Bordure qui prend la couleur d'accentuation */
}

/* --- Styles du Logo --- */
.marque-logo {
  height: 80px; /* Hauteur fixe pour le logo */
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.marque-logo img {
  max-height: 100%;
  max-width: 80%;
  object-fit: contain;
}

/* --- Styles du Contenu Textuel --- */
.marque-details h2 {
  font-size: 1.5rem;
  color: #383431;
  margin-bottom: 8px;
}

.marque-details p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.marque-produits {
  display: block;
  font-size: 0.85rem;
  color: #d19f8a; /* Couleur d'accentuation pour les produits phares */
  font-style: italic;
}

/* --- Styles de l'entête de la page Marques --- */

.marques-header {
  /* Utilise le fond clair et doux que l'on voit sur votre image */
  background-color: #c7ab9b; 
  padding: 100px 20px 80px; /* Augmenter le padding pour que le contenu respire plus */
  text-align: center;
}

.marques-container {
  max-width: 800px; /* Conteneur légèrement plus étroit pour centrer la lecture */
  margin: 0 auto;
}

/* Style du Titre Principal */
.marques-header .section-title {
  font-family: 'Playfair Display', serif; /* Ou une autre police Serif élégante */
  font-size: 3.2rem; /* Rendre le titre plus grand et plus impactant */
  font-weight: 700;
  color: #dac49e8a; /* Couleur sombre élégante */
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 20px;
}

/* Ajout d'une ligne de séparation élégante sous le titre */
.marques-header .section-title::after {
  content: '';
  display: block;
  width: 60px; /* Longueur du trait */
  height: 1px;
  background-color: #d19f8a; /* Couleur d'accentuation (pêche/rose) */
  margin: 10px auto 0; /* Centrer le trait sous le titre */
}


/* Style du Texte d'introduction */
.marques-header p {
  font-size: 1.15rem; /* Augmenter légèrement la taille pour une meilleure lisibilité */
  line-height: 1.8; /* Augmenter l'interligne pour l'esthétique */
  color: #555; /* Un gris doux */
  max-width: 700px;
  margin: 0 auto;
}

/* Style de mise en évidence des mots-clés */
.marques-header p strong {
  color: #d19f8a; /* Couleur d'accentuation pour les mots importants */
  font-weight: 600;
}

/* --- Styles Généraux de la Page À Propos --- */
.about-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.section-padding {
  padding: 80px 0;
}

/* Style de l'En-tête (pour la cohérence) */
.about-header {
  background-color: #ed9c6d; /* Fond très léger */
  text-align: center;
}
.about-title {
  /* Reprendre le style des titres de page élégants */
  font-family: 'Playfair Display', serif; 
  font-size: 3rem;
  font-weight: 700;
  color: #383431;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 20px;
}
.about-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background-color: #d19f8a;
  margin: 10px auto 0;
}
.intro-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #555;
  max-width: 700px;
  margin: 0 auto 20px;
}
.intro-text strong {
  color: #d19f8a;
}

/* --- Styles pour les Sections Visuelles (Mission, ADN) --- */
.section-visual {
  padding: 60px 0;
}

/* Style commun à tous les titres de section */
.section-visual h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #383431;
  margin-bottom: 25px;
}

/* Mise en page grille pour l'alternance image/texte */
.grid-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

.visual-content {
  flex: 0 0 45%; /* L'image prend 45% de la largeur */
  max-width: 45%;
}

.text-content {
  flex: 1; /* Le texte prend le reste */
  line-height: 1.7;
  font-size: 1.05rem;
  color: #444;
}

/* Style de l'Image */
.about-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px; /* Coins arrondis élégants */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* Ombre subtile */
  object-fit: cover;
}

/* Alternance des Sections (pour l'inversion) */
.text-left-image-right .grid-layout {
  flex-direction: row-reverse; /* Inverse l'ordre du texte et de l'image */
}

/* --- Styles pour la section Valeurs --- */
.values-center {
  background-color: #fcf7f4; /* Fond léger pour cette section */
  text-align: center;
}
.values-list {
  list-style: none;
  padding: 0;
  margin: 30px auto 0;
  max-width: 600px;
  text-align: left;
}
.values-list li {
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #444;
}
.values-list strong {
  color: #d19f8a;
}


/* Adaptation Mobile (Empilement) */
@media (max-width: 992px) {
  .grid-layout {
      flex-direction: column; /* Empile les éléments en colonne */
      gap: 40px;
  }

  .visual-content,
  .text-content {
      flex: auto;
      max-width: 100%;
  }

  /* Supprimer l'inversion sur mobile pour une cohérence verticale */
  .text-left-image-right .grid-layout {
      flex-direction: column;
  }
}

/* --- Styles de base de la section FAQ --- */

.faq-section {
  padding: 80px 20px;
  background-color: #fcf7f4; /* Reprendre le fond très léger et doux */
  text-align: center;
}

.faq-title {
  /* Style de titre élégant pour la cohérence */
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #383431;
  margin-bottom: 50px;
  position: relative;
}

.faq-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background-color: #d19f8a;
  margin: 10px auto 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

/* --- Styles des éléments de la FAQ --- */

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0d9d6; /* Bordure fine et douce */
  border-radius: 8px; /* Coins arrondis pour l'esthétique */
  overflow: hidden; /* Important pour l'animation */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

/* Style du bouton/question */
.faq-question {
  display: flex; /* Utiliser flex pour positionner l'icône */
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 25px;
  text-align: left;
  background-color: #ffffff; /* Fond blanc propre */
  color: #383431;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
  background-color: #fcf7f4; /* Très léger changement au survol */
}

/* Style de l'icône (+/- ou flèche) */
.faq-question::after {
  content: '+'; /* Icône plus par défaut */
  font-size: 1.5rem;
  color: #d19f8a;
  transition: transform 0.3s ease;
  line-height: 1; /* Assurer que l'icône est bien alignée */
}

/* Rotation et changement de l'icône quand la question est active (dépliée) */
.faq-question.active::after {
  content: '—'; /* Icône moins ou trait quand c'est actif */
  transform: rotate(0deg); 
  color: #383431;
}

/* Style de la réponse */
.faq-answer {
  /* Définir la hauteur à 0 par défaut pour l'animation (sera gérée par JS) */
  max-height: 0; 
  overflow: hidden;
  transition: max-height 0.3s ease-out; /* Animation douce de déploiement */
}

.faq-answer p {
  padding: 15px 25px 20px;
  margin: 0;
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  background-color: #ffffff;
}

/* Mise en évidence du premier élément (style de l'image fournie) */
.faq-item:first-child .faq-question {
  background-color: #f7eded; /* Un fond rose/pêche plus prononcé */
}

.faq-item:first-child .faq-answer p {
  background-color: #f7eded; 
}

/* --- Correction du panneau Filtres --- */
.filters-sidebar {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  position: sticky;
  top: 20px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  border: 1px solid #f0e8e2;
}

.filter-group {
  margin-bottom: 30px;
}

.filter-group h4 {
  font-size: 1.1rem;
  color: #2c2c2c;
  margin-bottom: 15px;
  font-weight: 600;
  border-left: 4px solid #c9a88a;
  padding-left: 8px;
}

.category-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-item {
  margin-bottom: 12px;
}

.category-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #faf8f6;
  border: 1px solid #e8d5c4;
  border-radius: 10px;
  padding: 8px 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-checkbox:hover {
  background: #f5efeb;
  border-color: #c9a88a;
}

.category-checkbox input[type="checkbox"] {
  accent-color: #c9a88a;
  transform: scale(1.1);
}

.category-checkbox label {
  cursor: pointer;
  color: #444;
  font-size: 0.95rem;
  flex: 1;
}

.category-count {
  color: #999;
  font-size: 0.85rem;
}

/* --- Section Produits --- */
.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 220px;
}

.product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  margin-bottom: 15px;
}

.current-price {
  font-size: 1.3rem;
  color: #b48a6a;
  font-weight: 700;
}

/* --- Bouton "Ajouter au panier" Glow --- */
.product-actions {
  display: flex;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #c9a88a 0%, #b89a7f 100%);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-family: 'Georgia', serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(201,168,138,0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #bfa286 0%, #a9886c 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201,168,138,0.35);
}

.btn-primary:active {
  transform: scale(0.97);
}

/* --- Alignement des cartes --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 35px;
}

.category-checkbox input[type="checkbox"] {
  accent-color: #c9a88a;
  transform: scale(1.15);
  cursor: pointer;
}


.file-input {
  padding: 12px;
  background: #fff;
  border: 2px solid #EEC9C4;
  border-radius: 12px;
  width: 100%;
  cursor: pointer;
  font-family: 'Georgia', serif;
}

.file-input:hover {
  border-color: #c9a88a;
}

.current-image {
  margin: 15px 0;
}

.preview-img {
  width: 140px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
  
/* --- 0. Conteneur principal de la carte (.product-card) --- */
/* (Appliquer à la balise <div> qui enveloppe l'image, le nom, le prix et le bouton) */
.product-card {
  /* Mise en forme de la carte elle-même */
  background-color: #fcf8f0; /* Couleur de fond très claire (similaire à la photo) */
  border-radius: 12px; /* Coins arrondis de la carte */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Petite ombre subtile */
  width: 300px; /* **À Ajuster** : Largeur fixe ou relative de ta carte */
  padding-bottom: 20px; /* Espace en bas de la carte */
  
  /* Disposition des éléments de la carte */
  display: flex;
  flex-direction: column;
  overflow: hidden; /* Important pour que les coins arrondis fonctionnent bien avec l'image */
}

/* --- 1. CSS pour le conteneur de l'image (Ton code) --- */
.product-image-container {
  width: 100%;
  /* La hauteur du cadre de l'image doit être ajustée à ta préférence */
  height: 250px; 
  overflow: hidden; 
  /* Applique des coins arrondis seulement en haut de l'image (si ton design le nécessite) */
  border-top-left-radius: 12px; 
  border-top-right-radius: 12px;
}

/* --- 2. CSS pour la balise image (Ton code) --- */
.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Clé du cadrage */
  object-position: center; 
  /* S'assure que l'image remplit le conteneur */
  display: block; 
}

/* --- 3. Styles pour le Nom et le Prix --- */
/* (Ceci s'applique à la zone de texte sous l'image) */
.product-details {
  padding: 15px 20px 0 20px; /* Espacement intérieur autour du texte */
  text-align: left; /* Aligner le texte à gauche (comme sur la photo) */
}

.product-name {
  font-size: 1.1em;
  font-weight: 500; /* Moins gras que le prix */
  color: #333;
  margin-top: 0;
  margin-bottom: 10px;
}

.product-price {
  font-size: 1.25em;
  font-weight: 700; /* Plus gras et plus grand pour le prix */
  color: #333;
  margin-top: 5px;
  margin-bottom: 20px; /* Espace avant le bouton */
}

/* --- 4. Styles pour le Bouton "Ajouter au panier" --- */
.add-to-cart-button {
  /* Styles pour la couleur et l'arrondi */
  background-color: #c4b097; /* Couleur brun-beige de la photo */
  color: #fff; /* Texte blanc */
  border: none;
  border-radius: 20px; /* Arrondi des coins du bouton */
  
  /* Taille et espacement du bouton */
  padding: 10px 20px;
  width: 90%; /* Ajuste la largeur du bouton (ici, 90% de son conteneur) */
  cursor: pointer;
  text-align: center;
  font-size: 1em;
  font-weight: 600;
  transition: background-color 0.3s; /* Effet de transition pour le survol */
  
  /* Centrer le bouton */
  margin: 0 auto; 
  display: block;
}

.add-to-cart-button:hover {
  background-color: #a8947b; /* Couleur plus foncée au survol */
}

/* =======================================================
   PAGE ADMIN CLIENTS - DASHBOARD GLOW
   ======================================================= */

   .admin-clients-container {
    padding: 50px;
    background: linear-gradient(135deg, #faf8f6 0%, #fdf6f1 40%, #f3e8de 100%);
    min-height: 85vh;
}

.admin-clients-title {
    font-size: 32px;
    font-weight: 700;
    color: #2E2B29;
    margin-bottom: 5px;
}

.admin-clients-subtitle {
    font-size: 16px;
    color: #8a807c;
    margin-bottom: 30px;
}

/* TABLE STYLING */
.clients-table {
    width: 100%;
    border-collapse: collapse;
    background: #fffdfc;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.clients-table thead {
    background: #eec9c4;
    color: #2E2B29;
}

.clients-table th,
.clients-table td {
    padding: 14px 18px;
    text-align: left;
    font-size: 15px;
}

.clients-table th {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.clients-table tbody tr {
    transition: background 0.2s ease;
}

.clients-table tbody tr:hover {
    background: #fff5f3;
}

/* MESSAGE COLUMN */
.msg-column {
    max-width: 350px;
    white-space: normal;
    word-wrap: break-word;
}

/* EMPTY STATE */
.no-messages {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.no-messages p {
    color: #6b605c;
    font-size: 18px;
    font-style: italic;
}

/* =======================================================
   PAGE ADMIN CLIENTS - STYLE GLOW
   ======================================================= */

   .admin-clients-container {
    padding: 40px;
    background: #FAF8F6;
    min-height: 100vh;
}

.admin-clients-title {
    font-size: 32px;
    font-weight: 700;
    color: #2E2B29;
    margin-bottom: 5px;
}

.admin-clients-subtitle {
    font-size: 16px;
    color: #8a807c;
    margin-bottom: 30px;
}

/* TABLE */
.clients-table {
    width: 100%;
    border-collapse: collapse;
    background: #fffdfc;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.clients-table thead {
    background: #f7e9e3;
}

.clients-table th,
.clients-table td {
    padding: 14px 18px;
    text-align: left;
    font-size: 15px;
    border-bottom: 1px solid #EBDED4;
}

.clients-table tbody tr:hover {
    background: #fff5f3;
}

/* MESSAGE COLUMN */
.msg-column {
    max-width: 350px;
    white-space: normal;
    word-wrap: break-word;
}

/* EMPTY */
.no-messages {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.no-messages p {
    color: #6b605c;
    font-size: 18px;
}

/* ============================
   CARD WHATSAPP GLOW
   ============================ */

   .whatsapp-card {
    background: #f8f2ec;
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    width: 430px;
    margin-left: 40px;
}

.whatsapp-icon img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

.whatsapp-card h3 {
    color: #c08a63;
    font-size: 26px;
    margin-bottom: 5px;
}

.whatsapp-card p {
    color: #6a5a53;
    font-size: 15px;
    margin-bottom: 25px;
}

.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.2s;
    font-size: 15px;
}

.whatsapp-btn:hover {
    background: #1ebe5b;
    transform: translateY(-2px);
}

/* === SIDEBAR FIX CATÉGORIES === */
.filters-sidebar {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 6px 26px rgba(0,0,0,0.06);
  position: sticky;
  top: 30px;
}

.filters-sidebar h3 {
  font-size: 1.45rem;
  font-weight: 600;
  color: #2c2c2c;
}

.filter-group {
  margin-bottom: 32px;
}

.category-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.category-item {
  margin-bottom: 12px;
}

.category-checkbox {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 10px;
  background: #faf8f6;
  border: 1px solid #eee0d6;
  transition: all .2s ease;
}

.category-checkbox:hover {
  background: #f3ebe5;
  border-color: #d7bfae;
}

.category-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #c9a88a;
}

.category-checkbox label {
  cursor: pointer;
  color: #4a4a4a;
  font-size: 0.95rem;
  font-weight: 500;
}


.merci-social-link {
  width: 55px !important;
  height: 55px !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: 50%;
  display: inline-block;
}

/* Styles uniquement pour les icônes de réseaux sociaux */
.social-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-links .social-link {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

.social-links .social-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.social-links .social-link:hover::before {
  width: 100%;
  height: 100%;
}

.social-links .social-link:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.social-links .social-link svg {
  width: 35px;
  height: 35px;
  fill: #fff;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.social-links .social-link:hover svg {
  transform: scale(1.1);
}

/* Couleurs officielles des réseaux sociaux */
.social-links .social-link.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-links .social-link.facebook {
  background: #1877F2;
}

.social-links .social-link.tiktok {
  background: #000000;
}

/* Responsive */
@media (max-width: 480px) {
  .social-links .social-link {
      width: 60px;
      height: 60px;
  }

  .social-links .social-link svg {
      width: 30px;
      height: 30px;
  }
}

/* Section réseaux sociaux sur la page Merci */
.contact-social-section {
  text-align: center;
  margin-top: 30px;
}

.contact-social-section p {
  color: #7a6a63;
  font-size: 16px;
  margin-bottom: 12px;
}

.merci-social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
}

/* Forme ronde + taille */
.merci-social-link {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  display: inline-block;
  transition: transform 0.2s ease;
}

/* Hover effect Glow */
.merci-social-link:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* Icônes */
.merci-social-link.whatsapp {
  background-image: url('/static/images/whatsapp.png');
}
.merci-social-link.instagram {
  background-image: url('/static/images/instagram.png');
}
.merci-social-link.facebook {
  background-image: url('/static/images/facebook.png');
}


/* === SECTION PRODUITS PHARES (Index) === */

.products {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 20px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding-bottom: 25px;
  text-align: center;
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.product-img-wrapper {
  width: 100%;
  height: 300px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-title {
  font-size: 1.3rem;
  margin: 18px 0 8px;
  color: #333;
}

.product-price {
  color: #c9a88a;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.product-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #c9a88a;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s ease;
}

.product-btn:hover {
  background: #b0896f;
}

/* Centrage bouton */
.center {
  text-align: center;
  margin-top: 40px;
}

/* Badge ÉPUISÉ */
.badge-epuise {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #d9534f;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: bold;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-transform: uppercase;
}


.product-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 25px;
  border: 1px solid #c9a88a;
  background: transparent;
  color: #c9a88a;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: #c9a88a;
  color: #fff;
}

.product-card {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute;
}

.products-subtitle {
  margin: 50px 0 25px;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  color: #c9a88a;
  letter-spacing: 1px;
}

.btn-product{
  display:block;
  width: calc(100% - 32px);
  margin: 12px auto 18px;
  padding: 12px 16px;
  border-radius: 999px;
  text-align:center;
  text-decoration:none;
  background:#c9a88a;
  color:#fff;
  font-weight:600;
}
.btn-product:hover{ filter:brightness(0.95); }
.products-subtitle{
  text-align:center;
  margin: 40px 0 20px;
  color:#b89a7f;
  font-size: 1.2rem;
}


/* Section produits phares */
.products {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* Titres Makeup / Skincare */
.products-subtitle {
  text-align: center;
  margin: 60px 0 30px;
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: #b89a7f;
  text-transform: uppercase;
}

/* Grille produits */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 40px;
  justify-content: center;
  justify-items: center;
  margin-bottom: 40px;
}

/* Carte produit */
.product-card {
  width: 100%;
  max-width: 320px;
  text-align: center;
}

/* Image bien centrée */
.product-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Ligne marque */
.product-brand {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #b89a7f;
  margin-top: 16px;
}

/* Nom produit */
.product-title {
  margin-top: 6px;
}

.product-price {
  text-align: center;
  display: block;
  margin-top: 8px;
  font-weight: 600;
  color: #c8a07a; /* garde ta couleur actuelle si différente */
}


.hero-section {
  background: linear-gradient(135deg, #C9B5A0 0%, #D4C4B0 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .hero-title {
      font-size: 2rem;
  }
  
  .hero-subtitle {
      font-size: 1.1rem;
  }
}

.hero-section {
  background: linear-gradient(135deg, #C9B5A0 0%, #D4C4B0 100%);
  min-height: 40vh; /* Réduit de 70vh à 40vh */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px; /* Réduit de 80px à 60px */
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem; /* Légèrement réduit */
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.1rem; /* Légèrement réduit */
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-section {
      min-height: 35vh;
      padding: 40px 20px;
  }
  
  .hero-title {
      font-size: 1.8rem;
  }
  
  .hero-subtitle {
      font-size: 1rem;
  }
}


.hero-section {
  background: linear-gradient(135deg, #d69f63 0%, #D4C4B0 100%);
  min-height: 30vh; /* Réduit à 30vh */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px; /* Réduit à 40px */
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  font-weight: 300;
  max-width: 600px; /* Réduit pour forcer le retour à la ligne */
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero-section {
      min-height: 25vh;
      padding: 30px 20px;
  }
  
  .hero-title {
      font-size: 1.8rem;
  }
  
  .hero-subtitle {
      font-size: 1rem;
  }
}

/* ================================================================
   🌟 RESPONSIVE DESIGN COMPLET - TOUTES PLATEFORMES
   ================================================================ */

/* === TABLETTES (max-width: 992px) === */
@media (max-width: 992px) {
  .container {
    width: 90%;
    padding: 1.2em;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }
}

/* === SMARTPHONES (max-width: 768px) === */
@media (max-width: 768px) {
  /* Navigation */
  .navbar {
    padding: 0 15px;
  }

  .logo {
    font-size: 1.4rem;
  }

  /* Conteneurs */
  .container {
    width: 95%;
    padding: 1em;
  }

  /* Grille produits - 1 colonne sur mobile */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

  /* Hero section */
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }

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

  .page-header {
    padding: 40px 20px;
  }

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

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

  /* Product Card */
  .product-card {
    max-width: 100%;
  }

  .product-image {
    height: 250px;
  }

  /* Sidebar - Devient horizontal sur mobile */
  .sidebar {
    padding: 20px;
  }

  .filter-section {
    margin-bottom: 20px;
  }

  /* Formulaires */
  .form-row {
    flex-direction: column;
  }

  .form-group {
    margin-bottom: 15px;
  }

  /* Boutons */
  .btn, .cta-button, .filter-button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-logo {
    font-size: 1.8rem;
  }

  /* Tables responsive */
  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  /* Panier flottant */
  .floating-cart {
    bottom: 15px;
    right: 15px;
    padding: 12px 18px;
    font-size: 14px;
  }

  /* Admin sections */
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .actions {
    flex-direction: column;
    gap: 10px;
  }

  .actions .btn {
    width: 100%;
  }
}

/* === PETITS SMARTPHONES (max-width: 480px) === */
@media (max-width: 480px) {
  /* Typography */
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  /* Hero ultra compact */
  .hero {
    padding: 40px 15px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }

  /* Product Image */
  .product-image {
    height: 200px;
  }

  .product-title {
    font-size: 16px;
  }

  .product-price {
    font-size: 18px;
  }

  /* Logo plus petit */
  .logo {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }

  .logo::before {
    left: -15px;
    font-size: 0.9rem;
  }

  /* Container ultra compact */
  .container {
    width: 100%;
    padding: 0.8em;
    margin-top: 0.5em;
  }

  /* Inputs et selects */
  input, select, textarea {
    font-size: 16px; /* Évite le zoom sur iOS */
  }

  .price-input {
    width: 100%;
  }

  /* Pagination */
  .pagination {
    flex-wrap: wrap;
    gap: 5px;
  }

  .page-btn {
    padding: 8px 12px;
    font-size: 14px;
  }

  /* Cards compactes */
  .card {
    padding: 0.8em;
  }

  /* Footer compact */
  .footer-logo {
    font-size: 1.5rem;
  }

  .footer-title {
    font-size: 16px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 15px;
  }
}

/* === RESPONSIVE IMAGES === */
@media (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }

  .product-card img,
  .card img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

/* === FIX POUR LES OVERFLOW === */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }

  * {
    max-width: 100%;
  }

  .products-container {
    padding: 30px 15px;
  }

  .products-header {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .sort-select {
    width: 100%;
  }
}

/* === ORIENTATION PAYSAGE SUR MOBILE === */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 30px 20px;
  }

  .navbar {
    height: 60px;
  }

  .mobile-menu-toggle {
    padding: 8px;
  }
}

/* === TRÈS GRANDS ÉCRANS (min-width: 1600px) === */
@media (min-width: 1600px) {
  .container {
    max-width: 1400px;
  }

  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero h1 {
    font-size: 64px;
  }
}

/* === ACCESSIBILITÉ - PRÉFÉRENCES UTILISATEUR === */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* === FIX POUR LES TOUCH DEVICES === */
@media (hover: none) and (pointer: coarse) {
  .product-card:hover,
  .btn:hover,
  .nav-links a:hover {
    transform: none;
  }

  /* On garde l'effet au tap/click */
  .product-card:active {
    transform: translateY(-5px);
  }

  .btn:active {
    transform: translateY(2px);
  }
}