/* ============================================
   EDOUARD GENTON — Thème Luxe Moderne
   Basé sur l'identité du site actuel
   ============================================ */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* === Variables === */
:root {
  --eg-black: #0a0a0a;
  --eg-dark: #1a1a1a;
  --eg-gold: #c8a96e;
  --eg-gold-light: #d4ba85;
  --eg-white: #ffffff;
  --eg-off-white: #f8f7f5;
  --eg-gray-light: #e8e6e3;
  --eg-gray: #999;
  --eg-font-serif: 'Playfair Display', Georgia, serif;
  --eg-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --eg-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* === Reset thème Classic — Suppression du bleu turquoise === */
body {
  font-family: var(--eg-font-sans);
  font-weight: 300;
  color: var(--eg-dark);
  background-color: var(--eg-white);
  letter-spacing: 0.02em;
}

a {
  color: var(--eg-dark);
  transition: var(--eg-transition);
}
a:hover {
  color: var(--eg-gold);
  text-decoration: none;
}

/* === HEADER — Fond noir, esprit luxe === */
#header {
  background: var(--eg-black);
  box-shadow: none;
  border: none;
}

#header .header-nav {
  background: var(--eg-black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-height: none;
  padding: 8px 0;
}

#header .header-nav a,
#header .header-nav span {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Material Icons — ne pas transformer le texte (sinon l'icône ne s'affiche pas) */
#header .header-nav .material-icons {
  color: rgba(255,255,255,0.7);
  text-transform: none !important;
  letter-spacing: normal;
  font-size: 1.2rem;
}

#header .header-nav a:hover {
  color: var(--eg-gold);
}

/* Top bar — devise/langue */
#header .header-nav .currency-selector button,
#header .header-nav .language-selector button {
  color: rgba(255,255,255,0.7);
}

/* Header principal */
#header .header-top {
  background: var(--eg-black);
  padding: 20px 0;
  border: none;
}

/* Logo — masquer l'image et afficher le texte "Edouard Genton" */
#header .header-top .logo {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Remplacer le logo image par du texte */
#_desktop_logo img.logo,
img.logo.img-fluid {
  display: none !important;
}

#_desktop_logo a {
  font-family: var(--eg-font-serif) !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  color: var(--eg-white) !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: nowrap;
  margin-right: 30px;
}

#_desktop_logo a::after {
  content: "Edouard Genton";
}

/* Barre de recherche — masquée sur desktop (esprit luxe, pas de barre visible) */
#header .header-top #search_widget {
  display: none !important;
}

/* Connexion / Panier */
#header .user-info a,
#header .cart-preview .header a {
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

#header .user-info a:hover,
#header .cart-preview .header a:hover {
  color: var(--eg-gold);
}

#header .blockcart .header .material-icons {
  color: var(--eg-white);
}

/* Panier — fond transparent sur header noir, pas de carré blanc */
#header .blockcart {
  background: transparent;
}

#header .blockcart .header {
  background: transparent;
  padding: 0;
}

#header .blockcart .body {
  background: var(--eg-white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border: none;
}

/* Dropdown panier inactif — cacher proprement */
#header .blockcart .no-items {
  color: rgba(255,255,255,0.5);
  background: transparent;
  display: none;
}

/* Blockcart body quand il est vide ou visible */
#header .cart-preview.inactive .body,
#header .blockcart.inactive .body {
  display: none;
}

/* Fix le bloc panier blanc résiduel */
#_desktop_cart .cart-preview {
  background: transparent;
}

#_desktop_cart .blockcart {
  background: transparent !important;
}

#_desktop_cart .body {
  background: transparent;
}

/* === NAVIGATION — Menu principal sur fond noir === */
#_desktop_top_menu .top-menu {
  display: flex;
  justify-content: center;
  gap: 0;
}

/* Liens de niveau 0 uniquement (pas les sous-menus) */
#_desktop_top_menu > .top-menu > li > a[data-depth="0"] {
  color: var(--eg-white) !important;
  font-family: var(--eg-font-sans);
  font-weight: 400;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 15px 28px;
  transition: var(--eg-transition);
  position: relative;
}

#_desktop_top_menu > .top-menu > li > a[data-depth="0"]::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--eg-gold);
  transition: width 0.4s ease;
}

#_desktop_top_menu > .top-menu > li > a[data-depth="0"]:hover::after,
#_desktop_top_menu > .top-menu > li.current > a[data-depth="0"]::after {
  width: 60%;
}

#_desktop_top_menu > .top-menu > li > a[data-depth="0"]:hover {
  color: var(--eg-gold) !important;
}

/* Sous-menus dropdown */
#_desktop_top_menu .top-menu > li {
  position: relative;
}

#_desktop_top_menu .sub-menu {
  background: var(--eg-white);
  border: none;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  border-top: 2px solid var(--eg-gold);
  min-width: 220px;
  width: auto !important;
  padding: 10px 0;
  z-index: 1000;
}

/* Empêcher le sous-menu de prendre toute la largeur */
#_desktop_top_menu .popover.sub-menu {
  max-width: 280px;
}

#_desktop_top_menu .sub-menu .top-menu {
  display: block;
}

#_desktop_top_menu .sub-menu a,
#_desktop_top_menu .sub-menu .top-menu > li > a {
  color: var(--eg-dark) !important;
  font-size: 0.85rem;
  padding: 8px 20px;
  letter-spacing: 0.03em;
  display: block;
  white-space: nowrap;
  text-transform: capitalize;
}

#_desktop_top_menu .sub-menu a:hover,
#_desktop_top_menu .sub-menu .top-menu > li > a:hover {
  color: var(--eg-gold) !important;
  background: var(--eg-off-white);
}

/* Supprimer le séparateur horizontal dans le sous-menu */
#_desktop_top_menu .sub-menu ul[data-depth="1"] {
  margin: 0;
  padding: 0;
}

#_desktop_top_menu .sub-menu ul[data-depth="1"] > li {
  float: none;
  width: 100%;
}

/* === CONTENU PRINCIPAL === */

/* Titres */
h1, h2, h3 {
  font-family: var(--eg-font-serif);
  font-weight: 400;
  color: var(--eg-dark);
  letter-spacing: 0.04em;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Section titres centrés */
.featured-products h2,
#content h2 {
  text-align: center;
  font-family: var(--eg-font-serif);
  font-weight: 400;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 20px;
}

.featured-products h2::after,
#content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--eg-gold);
}

/* === CARTES PRODUITS — Épuré, luxe === */
.product-miniature {
  border: none;
  box-shadow: none;
  text-align: center;
  padding: 15px;
  transition: var(--eg-transition);
  background: var(--eg-white);
}

.product-miniature:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.product-miniature .thumbnail-container {
  border: none;
  box-shadow: none;
  overflow: hidden;
  position: relative;
  background: var(--eg-off-white);
}

.product-miniature .thumbnail-container .product-thumbnail img {
  transition: transform 0.6s ease;
  mix-blend-mode: multiply;
}

.product-miniature:hover .thumbnail-container .product-thumbnail img {
  transform: scale(1.05);
}

/* Nom du produit */
.product-miniature .product-title a {
  font-family: var(--eg-font-sans);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--eg-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.product-miniature .product-title a:hover {
  color: var(--eg-gold);
}

/* Prix */
.product-miniature .product-price-and-shipping .price {
  font-family: var(--eg-font-sans);
  font-weight: 500;
  font-size: 1rem;
  color: var(--eg-dark);
  letter-spacing: 0.04em;
}

/* Masquer les badges turquoise laids */
.product-miniature .product-flags .product-flag {
  background: var(--eg-black);
  font-family: var(--eg-font-sans);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  padding: 4px 12px;
  min-width: auto;
}

.product-miniature .product-flags .product-flag.new {
  background: var(--eg-black);
}

.product-miniature .product-flags .product-flag.on-sale,
.product-miniature .product-flags .product-flag.discount {
  background: var(--eg-gold);
  color: var(--eg-white);
}

/* Wishlist heart */
.product-miniature .wishlist-button-add {
  color: var(--eg-gray);
}

/* === PAGE PRODUIT === */
.product-container h1.h1 {
  font-family: var(--eg-font-serif);
  font-weight: 400;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--eg-dark);
}

.product-price {
  font-family: var(--eg-font-sans);
}

.product-price .current-price-value {
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--eg-dark);
  letter-spacing: 0.02em;
}

.product-information .product-description {
  font-family: var(--eg-font-sans);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #555;
}

/* Bouton Ajouter au panier */
.product-information .add-to-cart,
.btn-primary {
  background: var(--eg-black) !important;
  border: none !important;
  border-radius: 0 !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: var(--eg-font-sans);
  font-weight: 400;
  font-size: 0.8rem;
  padding: 14px 40px;
  transition: var(--eg-transition);
}

.product-information .add-to-cart:hover,
.btn-primary:hover {
  background: var(--eg-gold) !important;
  color: var(--eg-white) !important;
}

/* Onglets produit */
.product-tabs .nav-tabs {
  border-bottom: 1px solid var(--eg-gray-light);
}

.product-tabs .nav-tabs .nav-link {
  font-family: var(--eg-font-sans);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  color: var(--eg-gray);
  border: none;
  padding: 12px 24px;
}

.product-tabs .nav-tabs .nav-link.active {
  color: var(--eg-dark);
  border-bottom: 2px solid var(--eg-gold);
  background: transparent;
}

/* === BREADCRUMB === */
.breadcrumb {
  background: transparent;
  font-family: var(--eg-font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.breadcrumb a {
  color: var(--eg-gray);
}

.breadcrumb .breadcrumb-item.active {
  color: var(--eg-dark);
}

/* === FOOTER — Fond noir, cohérent avec header === */
.footer-container {
  background: var(--eg-black);
  color: rgba(255,255,255,0.6);
  font-family: var(--eg-font-sans);
  font-weight: 300;
  padding-top: 50px;
}

.footer-container h3,
.footer-container .h3 {
  font-family: var(--eg-font-sans);
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--eg-white);
  margin-bottom: 20px;
}

.footer-container a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

.footer-container a:hover {
  color: var(--eg-gold);
}

.footer-container .links .collapse {
  display: block;
}

/* Newsletter */
.block_newsletter {
  background: var(--eg-dark);
  padding: 40px 30px;
  border: none;
}

.block_newsletter p,
.block_newsletter label,
.block_newsletter .title {
  color: rgba(255,255,255,0.85) !important;
  font-family: var(--eg-font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.block_newsletter h2,
.block_newsletter .h2 {
  color: var(--eg-white) !important;
  font-family: var(--eg-font-serif);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}

.block_newsletter .btn-primary {
  background: var(--eg-gold) !important;
  color: var(--eg-white) !important;
}

.block_newsletter input[type="email"] {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0;
  color: var(--eg-white);
  font-family: var(--eg-font-sans);
}

.block_newsletter .col-xs-12 {
  padding: 0 15px;
}

/* Copyright */
.footer-container .footer-copyright {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}

/* === CATÉGORIE PAGE === */
#category #left-column {
  width: 250px;
  min-width: 250px;
  padding-right: 20px;
}

#category #left-column .block-categories .category-sub-menu li a,
#category #left-column .facet a {
  font-family: var(--eg-font-sans);
  font-size: 0.85rem;
  color: var(--eg-dark);
}

#category #left-column .facet-title {
  font-family: var(--eg-font-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--eg-dark);
  border-bottom: 1px solid var(--eg-gray-light);
  padding-bottom: 10px;
}

.block-category {
  min-height: auto;
  padding: 40px 0;
  margin-bottom: 30px;
  text-align: center;
}

.block-category h1 {
  font-family: var(--eg-font-serif);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 2rem;
}

/* Filtres */
#search_filters .facet .facet-title {
  font-family: var(--eg-font-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

/* Masquer le bloc fournisseurs (vide/inutile) */
#left-column .block-suppliers {
  display: none !important;
}

/* === BLOCKREASSURANCE === */
#block-reassurance {
  border: none;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  #header .header-top {
    padding: 10px 0;
  }

  #header .header-nav {
    background: var(--eg-black);
  }

  /* Mobile header — fond noir uniforme */
  #header .header-top .header-top-right,
  #header .header-top .col-md-10 {
    background: transparent;
  }

  #_desktop_top_menu .top-menu > li > a {
    padding: 10px 15px;
    font-size: 0.75rem;
  }

  h1 {
    font-size: 1.6rem;
  }

  .featured-products h2 {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
  }

  /* Hero banner mobile */
  .eg-hero-section {
    padding: 50px 15px !important;
    margin: 0 !important;
    overflow: hidden;
  }

  #custom-text .eg-hero-section .eg-hero-title,
  .eg-hero-section h2.eg-hero-title {
    font-size: 2rem !important;
    letter-spacing: 0.06em !important;
  }

  #custom-text .eg-hero-section .eg-hero-subtitle,
  .eg-hero-section p.eg-hero-subtitle {
    font-size: 0.7rem !important;
    letter-spacing: 0.1em !important;
    padding: 0 5px;
  }

  #custom-text .eg-hero-section .eg-hero-btn,
  .eg-hero-section a.eg-hero-btn {
    padding: 10px 25px !important;
    font-size: 0.7rem !important;
    letter-spacing: 0.08em !important;
  }

  .eg-hero-cta {
    gap: 10px;
  }

  /* Panier mobile — pas de débordement */
  #header .blockcart {
    background: transparent !important;
    overflow: visible;
  }

  /* Produits populaires mobile */
  .featured-products,
  .new-products {
    padding: 20px 10px !important;
  }

  /* ps_customtext — pas de padding en mobile */
  #custom-text {
    padding: 0 !important;
  }

  /* Footer mobile */
  .footer-container {
    padding-top: 30px;
  }

  /* === CATÉGORIE MOBILE === */
  /* Masquer le menu catégories latéral sur mobile */
  #category #left-column,
  #left-column {
    display: none !important;
  }

  /* Titre catégorie — plus petit, pas "ACCUEIL" géant */
  .block-category {
    padding: 20px 15px;
    margin-bottom: 15px;
  }

  .block-category h1 {
    font-size: 1.3rem !important;
    letter-spacing: 0.08em;
  }

  /* Breadcrumb mobile — wrap proprement */
  .breadcrumb {
    font-size: 0.65rem;
    white-space: normal;
    word-break: break-word;
  }

  /* Produits en grille 2 colonnes sur mobile */
  #category #content-wrapper,
  #content-wrapper {
    width: 100% !important;
    padding: 0 10px !important;
  }

  /* Products grid mobile */
  .products .product-miniature {
    width: 48% !important;
    display: inline-block;
    vertical-align: top;
    margin: 1%;
    padding: 8px;
  }

  .product-miniature .product-title a {
    font-size: 0.72rem;
  }

  .product-miniature .product-price-and-shipping .price {
    font-size: 0.85rem;
  }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-miniature {
  animation: fadeInUp 0.5s ease forwards;
}

/* Stagger effect pour les produits */
.product-miniature:nth-child(2) { animation-delay: 0.1s; }
.product-miniature:nth-child(3) { animation-delay: 0.2s; }
.product-miniature:nth-child(4) { animation-delay: 0.3s; }
.product-miniature:nth-child(5) { animation-delay: 0.15s; }
.product-miniature:nth-child(6) { animation-delay: 0.25s; }
.product-miniature:nth-child(7) { animation-delay: 0.35s; }
.product-miniature:nth-child(8) { animation-delay: 0.45s; }

/* === HERO BANNER === */
.eg-hero-section {
  background: linear-gradient(135deg, var(--eg-black) 0%, var(--eg-dark) 50%, var(--eg-black) 100%) !important;
  padding: 100px 40px !important;
  margin: -50px -50px 0 -50px !important;
  text-align: center;
}

#custom-text .eg-hero-section .eg-hero-title,
.eg-hero-section h2.eg-hero-title {
  font-family: var(--eg-font-serif) !important;
  color: #ffffff !important;
  font-size: 2.8rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  margin-bottom: 15px !important;
}

.eg-hero-separator {
  width: 40px;
  height: 1px;
  background: var(--eg-gold);
  margin: 0 auto 20px;
}

#custom-text .eg-hero-section .eg-hero-subtitle,
.eg-hero-section p.eg-hero-subtitle {
  font-family: var(--eg-font-sans) !important;
  color: #c8a96e !important;
  font-size: 1.1rem !important;
  font-weight: 300 !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  margin-bottom: 30px !important;
}

.eg-hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

#custom-text .eg-hero-section .eg-hero-btn,
.eg-hero-section a.eg-hero-btn {
  display: inline-block !important;
  padding: 14px 45px !important;
  border: 1px solid #c8a96e !important;
  color: #c8a96e !important;
  text-decoration: none !important;
  font-family: var(--eg-font-sans) !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  transition: var(--eg-transition) !important;
  background: transparent !important;
}

#custom-text .eg-hero-section .eg-hero-btn:hover,
.eg-hero-section a.eg-hero-btn:hover {
  background: #c8a96e !important;
  color: #0a0a0a !important;
}

/* ps_customtext #custom-text — supprimer le padding pour le hero pleine largeur */
#custom-text {
  padding: 0 !important;
  margin-bottom: 0 !important;
}

/* Le wrapper principal — pleine largeur sur homepage */
.page-home #wrapper > .container,
.page-index #wrapper > .container {
  max-width: 100% !important;
  padding: 0 !important;
}

/* content-wrapper — supprimer le padding col Bootstrap */
.page-home #content-wrapper,
.page-index #content-wrapper {
  padding: 0 !important;
}

/* Rétablir le container pour les produits en dessous */
.page-home .featured-products,
.page-home .new-products,
.page-index .featured-products,
.page-index .new-products {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 15px;
}

/* === Suppression éléments indésirables de Classic === */
.social-sharing {
  display: none;
}

/* Masquer "Nouveaux produits" si beaucoup sont sans image */
#content .new-products {
  /* Visible — on garde, les images seront importées */
}

/* Dropdowns langue/devise — fond sombre cohérent */
#header .header-nav .dropdown-menu {
  background: var(--eg-dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0;
  min-width: 120px;
}

#header .header-nav .dropdown-menu a,
#header .header-nav .dropdown-menu .dropdown-item {
  color: rgba(255,255,255,0.8) !important;
  font-size: 0.8rem;
  padding: 6px 16px;
}

#header .header-nav .dropdown-menu a:hover,
#header .header-nav .dropdown-menu .dropdown-item:hover {
  color: var(--eg-gold) !important;
  background: rgba(255,255,255,0.05);
}

/* Dropdown panier — fond blanc propre quand actif */
#header .blockcart .cart-preview .body {
  background: var(--eg-white);
  border-radius: 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Fix sous-menus blancs — forcer le style */
#_desktop_top_menu .popover.sub-menu {
  background: var(--eg-white) !important;
  border: none !important;
  border-top: 2px solid var(--eg-gold) !important;
  border-radius: 0 !important;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
  padding: 10px 0 !important;
}

/* Sous-menu : masquer la flèche par défaut du popover */
#_desktop_top_menu .popover.sub-menu .arrow,
#_desktop_top_menu .popover.sub-menu::before,
#_desktop_top_menu .popover.sub-menu::after {
  display: none !important;
}

/* Liens sous-menus — texte sombre sur fond blanc */
#_desktop_top_menu .popover.sub-menu a {
  color: var(--eg-dark) !important;
  font-family: var(--eg-font-sans);
  font-size: 0.85rem;
  padding: 8px 24px;
  display: block;
  text-transform: capitalize;
  letter-spacing: 0.03em;
  transition: var(--eg-transition);
}

#_desktop_top_menu .popover.sub-menu a:hover {
  color: var(--eg-gold) !important;
  background: var(--eg-off-white);
}

/* Fix: le bloc "Magasins" en footer ne devrait pas s'afficher */
.footer-container #stores {
  display: none;
}

/* Fix copyright — supprimer mention PrestaShop */
.footer-container .footer-copyright .copyright-text {
  font-size: 0.75rem;
}

/* Bouton "Tous les produits" / "Tous les nouveaux produits" — style cohérent */
.all-product-link,
a.all-product-link {
  font-family: var(--eg-font-sans);
  font-weight: 400;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--eg-dark);
  border: none;
  padding: 10px 0;
}

.all-product-link:hover {
  color: var(--eg-gold);
}

/* Images manquantes — placeholder plus discret */
.product-miniature .thumbnail-container img[src*="no_image"],
.product-miniature .thumbnail-container img[src$="fr-default-home_default.jpg"] {
  opacity: 0.3;
}
