/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */
 #header .logo {
    margin-top: 20px;
}
.widget .owl-carousel .owl-item {
    padding: 10px;
}
.LPE-text-capi h2,
.LPE-text-capi p {
  text-transform: none !important;
}

.noborder.thumbnail.text-center.LPE-home_titres_home {
    height: 420px;
    box-shadow: #0151e4 1px 1px 12px;
}
h2.editableLine {
    margin-top: 6px;
}
 a.dropdown-item {
    background: #0151e4;
}

.specialUl li a {
    color: #fff!important;	
}
.specialUl li:hover {
    background: #ff0000;
}
#super_counter {
    color: #0151e4;
}
#header .header-nav .blockcart a:hover {
    color: #0151e4;
}
#header .header-nav .blockcart a:hover {
    color: #0151e4;
}
#header a:hover {
    color: #0151e4;
}.ps-alert-success .item, .ps-alert-success .item i svg {
    background-color: #0151e4;
}
.ps-alert-success .item, .ps-alert-success .item i {
    border-color: #0151e4;
}
.alert-success {
    background-color: #c2e8ff;
    border-color: #c2e8ff;
    color: #3c763d;
}

.button.button-medium {
    background: #0151e4;
    border: #0151e4 solid 1px;
}

a.xsubcategory-name {
    color: #000;
}
.product-miniature .product-price-and-shipping {
    background-color: #0151e4;
}
.block-category .block-category-inner #category-description .page-content.page-cms ul, .block-category .block-category-inner #category-description p, .page-content.page-cms .block-category .block-category-inner #category-description ul {
    color: #868484;
}
h2.description {
    text-align: center;
    padding: 20px 20px 0 20px;
    font-size: 17px;
}
p.description.texte {
    padding: 0px 20px 0 20px;
    font-size: 17px;
}
.home-titre-categories {

}
h1 {
    color: #fff;
    background-color: #0151e4;
}
#category-description h1 {
    line-height: 35px;
}
.btn-primary {
    background-color: #0151e4;
}
body#checkout section.checkout-step.-reachable.-current .step-number {
    background-color: #0151e4;
}
.block_newsletter form input[type=email]:focus {
    border: 3px #ff0000 solid;
}
.btn-danger {
    background-color: #a5a5a5;
    border-color: #a5a5a5;
}
.marg10.aMR {
	text-transform: none;
	background: #0151e4;
	border-color: #0151e4;
}
.marg10.aMR:hover {
    text-transform: none;
	background: #ff0000;
	border-color: #ff0000;
}
.btn-success {
	margin-top: -35px;
	background-color: #ff0000;
	border-color: #ff0000;
}
.btn-success.focus, .btn-success:focus {
    color: #fff;
    background-color: #ff0000;
}
.btn-primary:hover {
    background-color: #ff0000;
}
.card-block.checkout .btn-primary {
    font-size: 18px;
}
.form-control:focus {
    outline: none;
}
.btn-success:hover {
    color: #fff;
    background-color: #0151e4;
    border-color: #0151e4;
}
img.partenaire {
    margin-top: 10px;
}
/* --- Grille 4 colonnes --- */
.menu-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;                 /* espacement augmenté entre les cartes */
  padding: 0 20px;           /* 20px à gauche et à droite */
  margin-top: 40px;
}

/* --- Carte --- */
.menu-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 0 6px #0151e4;
}

/* --- Animation pulse (unique) --- */
@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.03); }   /* léger zoom, n’affecte pas la grille */
  100% { transform: scale(1); }
}

/* Application au survol — 1 seule variante */
.menu-card:hover {
  animation: pulse 0.6s ease;
  /* petit boost d’ombre pendant le pulse */
  box-shadow:0 0 12px rgba(255,0,0,0.7);
}

/* --- Médias --- */
.menu-card a { position: relative; display: block; }
.menu-card img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: cover;
  object-position: left center;
  display: block;
  border-radius: 0; /* pas de coins arrondis */
}

/* --- Titre superposé --- */
/* Titres courts */
.menu-card h2 {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  background: #fff;
  padding: 6px 12px;
  border-radius: 12px;
  margin: 0;
  pointer-events: none;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  right: 50px;              /* décalé du bord */
  min-width: fit-content;
  white-space: nowrap;      /* une seule ligne */
}
/* Titres longs */
.menu-card h2.long-title {
  right: 23px;
  max-width: 43%;          /* plus large → plus d’espace pour le texte */
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  padding: 6px 6px;        /* padding réduit pour éviter que ça déborde */
}
/* Titres moyens */
.menu-card h2.medium-title {
  padding: 6px 10px;      /* plus de blanc autour */
  max-width: 60%;         /* largeur intermédiaire */
  white-space: normal;    /* retour à la ligne si besoin */
  right:8px
}
/* --- Contenu texte --- */
.menu-card-content {
  padding: 12px 14px 14px;
  flex: 1;
  display: flex;
  align-items: flex-start;
}
.menu-card-content p {
  margin: 0;
  font-size: .97rem;
  line-height: 1.5;
  color: #333;
}
.menu-card-content p strong { color: #000; }

/* --- Responsive --- */
@media (max-width:768px){
  .menu-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .menu-card img { max-height: 170px; }
  .menu-card h2 {
    font-size: .9rem;
    right: 10px;
  }
  .menu-card-content { padding: 10px 12px 12px; }
}
.material-symbols-outlined {
  font-size: 1em;              /* même taille que le texte */
  vertical-align: middle;      /* centre verticalement avec le texte */
  line-height: 1;              /* évite les décalages */
  margin-right: -1px;           /* petit espace entre l’icône et le texte */
  margin-left: 4px;
  position: relative;
  top: -2px;                    /* ajuste finement la hauteur si besoin */
}
/* Neutraliser le gris hérité par text-muted */
#category-description.text-muted,
#category-description.text-muted * {
  color: inherit;
}

/* Conteneur centré (comme boutique 1) */
.block-category,
.block-category-inner,
#category-description {
  text-align: center;
}

/* H1 encadré – reconstitution à partir de ta capture (prend le dessus sur le thème) */
#category-description h1,
.block-category h1,
.page-header h1,
.category-header h1 {
  display: block;                 /* la boutique 1 utilise width:100% */
  width: 100%;
  margin: 0 auto 12px;
  line-height: 25px !important;   /* vu dans custom.css:318 */
  font-size: 22px !important;     /* vu dans custom.css:318 */
  font-weight: 200 !important;    /* contourne "h1,h2,h3{font-weight:normal!important;}" */
  color: #000;
  text-align: center;
  background-color: #d9ecff !important; /* vu dans custom.css:65 ; > custom-child.css:25 (#fff) */
  padding: 12px;                  /* vu dans custom.css:65 */
  border: 1px solid #e7e7e7;      /* vu dans custom.css:65 */
}
/* Bloc d’icônes sous le texte : remplace le <br> */
#category-description .desc-icons{
  display: block;       /* force la ligne à passer en dessous */
  margin-top: 13px;      /* espace avant le bloc d’icônes */
  white-space: normal;  /* annule un éventuel nowrap global */
}

/* Optionnel : si le thème pousse un gros margin-bottom via .block-category h1 */
.block-category h1 { margin-bottom: 12px !important; 
}
/**** =======================
   Suppression espace vide au-dessus du footer
========================== ****/

/* Supprime le container vide généré si la newsletter est désactivée */
.footer-container > .container-fluid:empty {
  display: none !important;
}

/* Supprime aussi toute marge fantôme */
#footer {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* Bloc principal */
.shops-3 {
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  margin-bottom: 30px;
}

/* Intro */
.shops-3__intro {
  text-align: center;
  font-size: 16px;
  color: #333;
  margin-bottom: 25px;
}

/* Grille */
.shops-3__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Carte boutique */
.shop-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}
.shop-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.shop-card__media img {
  display: block;
  margin: 0 auto 15px;
  max-height: 80px;
}

.shop-card__title {
  font-size: 18px;
  font-weight: 600;
  color: #ab1e24; /* Rouge de T-Shirts Nice */
  text-align: center;
  margin: 10px 0;
}

.shop-card__desc {
  font-size: 14px;
  color: #555;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.5;
}

.shop-card__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}
.shop-card__bullets li {
  font-size: 13px;
  color: #666;
  padding-left: 16px;
  margin: 4px 0;
  position: relative;
}
.shop-card__bullets li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ab1e24;
  font-size: 12px;
}

.shop-card a {
  display: inline-block;
  color: #ab1e2
}
}
/* ===== Header & outils ===== */
.brands-title{ text-align:center; margin:10px 0 6px; font-weight:700; }
.brands-count{ font-weight:400; font-size:.9rem; color:#666; }

.brands-tools{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; align-items:center; margin:8px 0 20px; }
.brands-search{
  min-width:260px; max-width:420px; width:100%;
  padding:10px 12px; border:1px solid #ddd; border-radius:999px;
}
.brands-az__list{ display:flex; flex-wrap:wrap; gap:6px; justify-content:center; padding:0; margin:0; list-style:none; }
.brands-az__link{
  display:inline-block; padding:6px 10px; border:1px solid #e5e5e5; border-radius:999px;
  text-decoration:none; font-weight:600; font-size:.9rem; color:#444; background:#fff;
}
.brands-az__link:hover{ border-color:#bbb; }

/* ===== Groupes A→Z ===== */
.brand-letter{
  margin:18px 0 8px; font-size:1.1rem; font-weight:700; text-align:left;
  border-left:4px solid #c1332b; padding-left:8px;
}

/* ===== Grille ===== */
ul.brand-grid{
  display:grid !important;
  grid-template-columns: repeat(2, 1fr); /* CHANGEMENT : pas d'auto-fill ici */
  gap:12px 16px;
  padding:0 !important;
  margin:8px 0 24px !important;
  list-style:none;
  align-items:stretch;
  justify-content:start;
  grid-auto-flow:dense; /* comble les trous quand les hauteurs varient */
}
ul.brand-grid > li{
  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
  float:none !important; /* neutralise d’éventuels floats/bootstrap */
}

/* ===== Card ===== */
.brand-card{ 
  border-radius:14px;
  background:#fff;
  box-shadow:0 1px 0 rgba(0,0,0,.06), 0 0 0 1px rgba(0,0,0,.08);
  overflow:hidden;
}
.brand-card__link{ display:flex; flex-direction:column; height:100%; text-decoration:none; }
.brand-card__media{
  min-height:95px;               /* plus compact */
  display:grid; place-items:center;
  padding:12px; background:#fff;
}
.brand-card__media img{
  max-width:100%;
  max-height:72px;               /* hauteur visuelle homogène */
  object-fit:contain;
}
.brand-card__footer{
  border-top:1px solid #eee;
  background:#f7f7f7;
  padding:8px 10px;              /* compact */
  text-align:center;
}
.brand-card__name{ color:#444; font-weight:700; }
.brand-card:hover{ box-shadow:0 4px 14px rgba(0,0,0,.10), 0 0 0 1px rgba(0,0,0,.12); transform:translateY(-1px); transition:.18s ease; }

/* Placeholder si pas de logo */
.brand-card__placeholder{
  font-size:13px; color:#666; border:1px dashed #ddd; width:100%;
  padding:22px; text-align:center; border-radius:8px; background:#fafafa;
}

/* ===== Bloc SEO ===== */
/* Bloc SEO Marques */
.brands-seo-card{
  border:1px solid #e5e5e5;
  border-radius:12px;
  padding:16px 18px;
  background:#fff;
  box-shadow:0 1px 3px rgba(0,0,0,.04);
  margin:14px 0;
}
.brands-seo__subtitle{
  margin:14px 0 8px;
  font-weight:700;
  display:flex;
  align-items:center;
  gap:8px;
}
.brands-seo__subtitle .fa{ font-size:1.05em; }
.brands-seo__points{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.seo-point{
  display:flex;
  gap:8px;
  align-items:flex-start;
}
.seo-point .fa{
  min-width:18px;
  margin-top:3px; /* aligne l’icône avec le texte multi-ligne */
}
.mt-2{ margin-top:.75rem; }


/* ===== Responsive ===== */
@media (max-width: 640px){
  ul.brand-grid{
    grid-template-columns: repeat(2, 1fr); /* CHANGEMENT : 2 colonnes mobile */
    gap:10px 12px;
  }
  .brand-card__media{ min-height:80px; }
  .brand-card__media img{ max-height:60px; }
}
/* ----- Page Marques + large ----- */
.brands-page.container{
  max-width: 1500px; /* augmente la largeur utile */
}

/* ----- Grille 5 colonnes en desktop (cartes "grandes") ----- */
@media (min-width: 1200px){
  #brandGrid{
    grid-template-columns: repeat(5, 1fr) !important; /* 5 colonnes desktop */
    gap: 18px !important;
  }
  .brand-card__media{ min-height:130px; padding:16px; }
  .brand-card__media img{ max-height:86px; }
  .brand-card__footer{ padding:10px 12px; }
}

/* ----- Breakpoints existants conservés pour le responsive ----- */
@media (min-width: 992px) and (max-width: 1199.98px){
  #brandGrid{ grid-template-columns: repeat(4, 1fr) !important; }
}
@media (min-width: 768px) and (max-width: 991.98px){
  #brandGrid{ grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 767.98px){
  #brandGrid{ grid-template-columns: repeat(2, 1fr) !important; } /* cohérent avec le base mobile */
}
/* [GTF] Sous-catégories → boutons “pill” bleus */
#subcategories .subcategories-list{
  display:flex; flex-wrap:wrap; gap:12px; justify-content:center;
  margin:0; padding:0; list-style:none;
}
#subcategories .subcategories-list > li{
  width:auto !important; min-width:0 !important;
  margin:0 !important; padding:0 !important; float:none !important;
  flex:0 0 auto !important; background:transparent !important;
}
#subcategories .subcategories-list > li > a{
  /* Palette GTF (bleu) */
  --btn-bg-top: #eaf5ff;
  --btn-bg-btm: #d9ecff;
  --btn-border:  #b7d6ff;
  --btn-text:    #0b2a4a;

  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid var(--btn-border);
  background:linear-gradient(180deg,var(--btn-bg-top),var(--btn-bg-btm));
  color:var(--btn-text);
  text-decoration:none;
  line-height:1.2;
  max-width:100%; white-space:normal;
  box-shadow:0 1px 0 #fff inset, 0 1px 2px rgba(0,0,0,.06);
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
#subcategories .subcategories-list > li > a:hover{
  transform:translateY(-1px);
  background:linear-gradient(180deg,#f6fbff,#e6f1ff);
  border-color:#9fc7ff;
  box-shadow:0 1px 0 #fff inset, 0 4px 10px rgba(0,0,0,.10);
}
#subcategories .subcategories-list > li > a:focus-visible{
  outline:none;
  box-shadow:0 0 0 3px rgba(0,120,215,.25), 0 1px 2px rgba(0,0,0,.06);
}
#subcategories .subcategories-list > li > a:active{ transform:translateY(0); }
#subcategories .subcategories-list > li > a:visited{ color:var(--btn-text); }

/* === Footer GTF global === */
.gtf-footer {
  background: #eeeeee;       /* fond clair */
  color: #333;               /* texte principal */
  padding: 40px 20px 20px;
  font-size: 15px;
  line-height: 1.6;

  /* Effet carte */
  margin: 0 20px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Conteneurs internes (largeur max à ajuster ici) */
.gtf-footer__top,
.gtf-footer__grid,
.gtf-footer__bottom {
  max-width: 95%; /* élargir ou mettre 100% si besoin */
  margin: 0 auto;
}

/* ================= TOP : logo + réseaux + newsletter ================= */
.gtf-footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr; /* gauche | droite */
  align-items: center;
  gap: 24px;
  margin-bottom: 22px;
}

/* Sous-grille gauche (logo + sociaux sur une ligne, tagline dessous) */
.gtf-top-left {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 10px;
  align-items: center;
}

/* Logo retaillé */
.gtf-footer__logo img {
  width: 80px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Réseaux sociaux (cercles) */
.gtf-social-circles {
  display: flex;
  gap: 10px;
  align-items: center;
}
.gtf-social-circles a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
  text-decoration: none;
  transition: all .25s ease;
}
.gtf-social-circles a:hover {
  background: #0073e6;
  border-color: #0073e6;
  color: #fff;
  transform: translateY(-1px);
}
.gtf-social-circles i { font-size: 18px; }

/* Tagline */
.gtf-footer__tagline {
  grid-column: 1 / -1;
  margin: 0;
  color: #555;
  font-size: 14px;
}

/* Newsletter (droite) */
.gtf-footer__newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-content: center;
}
.gtf-footer__newsletter input {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 12px 14px;
  color: #333;
}
.gtf-footer__newsletter button {
  background: #0073e6;
  color: #fff;
  font-weight: 600;
  border: 0;
  border-radius: 10px;
  padding: 12px 16px;
  cursor: pointer;
  transition: background .2s;
}
.gtf-footer__newsletter button:hover {
  background: #005bb5;
}
.gtf-footer__newsletter small {
  grid-column: 1 / -1;
  color: #777;
  font-size: 12px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ================= Colonnes ================= */
.gtf-footer__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* 5 colonnes égales */
  gap: 30px;
  margin-top: 10px;
}
.gtf-col h3 {
  font-size: 16px;
  margin: 0 0 10px;
  color: #004aad;
}
.gtf-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gtf-col li { margin: 6px 0; }
.gtf-col a {
  color: #333;
  text-decoration: none;
  transition: color .2s;
}
.gtf-col a:hover { color: #0073e6; }
.gtf-contact i { margin-right: 6px; color: #0073e6; }

/* ================= Bas ================= */
.gtf-footer__bottom {
  border-top: 1px solid #ccc;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #555;
}
.gtf-footer__bottom a {
  color: #555;
  text-decoration: none;
}
.gtf-footer__bottom a:hover { color: #0073e6; }
.gtf-footer__bottom .sep { margin: 0 8px; opacity: .6; }

/* Copyright */
.gtf-footer__copyright {
  text-align: center;
  font-size: 14px;
  color: #004aad; /* bleu foncé de ta charte */
  padding: 10px 0;
}

/* ================= Responsive Footer ================= */

/* Tablette */
@media (max-width: 980px) {
  .gtf-footer__top {
    display: grid;
    grid-template-columns: 1fr; /* empile logo + newsletter */
    gap: 16px;
    text-align: center;
  }

  .gtf-footer__logo img {
    width: 140px;
    margin: 0 auto;
  }

  .gtf-social-circles {
    justify-content: center;
  }

  .gtf-footer__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes */
    gap: 20px;
    margin-top: 20px;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .gtf-footer {
    padding: 30px 15px;
    text-align: center;
  }

  .gtf-footer__logo img {
    width: 120px;
    margin: 0 auto;
  }

  .gtf-footer__grid {
    grid-template-columns: 1fr; /* 1 colonne */
    gap: 15px;
  }

  .gtf-col h3 {
    margin-bottom: 8px;
  }

  .gtf-contact li {
    text-align: center;
  }
}
/* ====== Conteneurs de section (largeur commune) ====== */
body#manufacturer .manufacturer-wrapper,
body#manufacturer .manufacturer-extra,
body#manufacturer .manufacturer-faq {
  max-width:1600px !important;
  margin:40px auto !important;
  padding:0 20px !important;
}

/* ====== Cartes génériques ====== */
body#manufacturer .manufacturer-card,
body#manufacturer .manufacturer-media-card,
body#manufacturer .manufacturer-faq-card {
  background:#fff !important;
  border-radius:12px !important;
  box-shadow:0 4px 12px rgba(0,0,0,.08) !important;
  transition:transform .2s ease !important;
}
body#manufacturer .manufacturer-card:hover,
body#manufacturer .manufacturer-media-card:hover,
body#manufacturer .manufacturer-faq-card:hover {
  transform:translateY(-4px) !important;
}

/* ====== Bloc 1 : 3 cartes images (remplace le slider) ====== */
body#manufacturer .manufacturer-media {
  display:grid !important;
  grid-template-columns:1fr !important;   /* mobile */
  gap:20px !important;
}
@media (min-width:900px){
  body#manufacturer .manufacturer-media { grid-template-columns:repeat(3,1fr) !important; }
}
body#manufacturer .manufacturer-media-card { overflow:hidden !important; }
body#manufacturer .manufacturer-media-img {
  display:block !important;
  width:100% !important;
  height:220px !important;                /* ajuste si tu veux plus haut/bas */
  object-fit:cover !important;
}

/* ====== Bloc 2 : 4 cartes info (compactes) ====== */
body#manufacturer .manufacturer-cards {
  display:grid !important;
  grid-template-columns:1fr !important;   /* mobile */
  gap:25px !important;
  margin-top:30px !important;
}
@media (min-width:768px){
  body#manufacturer .manufacturer-cards { grid-template-columns:repeat(2,1fr) !important; }
}
@media (min-width:1100px){
  body#manufacturer .manufacturer-cards { grid-template-columns:repeat(4,1fr) !important; }
}
body#manufacturer .manufacturer-card { padding:20px !important; text-align:center !important; }
body#manufacturer .manufacturer-card h2 { font-size:1.15rem !important; margin:8px 0 10px !important; color:#222 !important; }
body#manufacturer .manufacturer-card p  { font-size:.95rem !important; line-height:1.6 !important; color:#444 !important; margin:0 !important; text-align:justify !important; }

/* Icônes emoji des cartes 2–4 */
body#manufacturer .manufacturer-icon { 
  display:block !important; 
  font-size:28px !important; 
  margin-bottom:6px !important; 
}

/* >>> Badge "FR" (carte 1) — AJOUT <<< */
body#manufacturer .manufacturer-badge{
  display:inline-block !important;
  font-weight:700 !important;
  font-size:.85rem !important;
  letter-spacing:.06em !important;
  padding:2px 8px !important;
  border-radius:999px !important;
  background:#f2f4f7 !important;
  color:#222 !important;
  margin-bottom:8px !important;
  line-height:1 !important;
}

/* ====== Bloc 3 : texte éditorial ====== */
body#manufacturer .manufacturer-extra h2 {
  font-size:1.35rem !important; margin:0 0 18px !important; color:#111 !important; text-align:center !important;
}
body#manufacturer .manufacturer-extra p  {
  font-size:1rem !important; color:#333 !important; margin:0 0 14px !important; text-align:justify !important;
}

/* ====== Bloc 4 : FAQ en 2 cartes/colonnes ====== */
body#manufacturer .manufacturer-faq h2 {
  font-size:1.45rem !important; margin:0 0 22px !important; text-align:center !important;
}
body#manufacturer .manufacturer-faq-grid {
  display:grid !important;
  grid-template-columns:1fr !important;   /* 1 colonne mobile */
  gap:24px !important;
}
@media (min-width:900px){
  body#manufacturer .manufacturer-faq-grid { grid-template-columns:1fr 1fr !important; } /* 2 colonnes desktop */
}
body#manufacturer .manufacturer-faq-card { padding:20px !important; }
body#manufacturer .manufacturer-faq-col  { display:flex !important; flex-direction:column !important; gap:18px !important; }
body#manufacturer .manufacturer-faq-item h3 { font-size:1.05rem !important; margin:0 0 6px !important; color:#333 !important; font-weight:700 !important; }
body#manufacturer .manufacturer-faq-item p  { margin:0 !important; font-size:.95rem !important; line-height:1.6 !important; color:#555 !important; }
.gtf-footer__legal {
  border-top: 1px solid #ececec;
  margin-top: 10px;
  padding-top: 12px;
  text-align: center;      /* fallback */
  width: 100%;
}
.gtf-footer__legal ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex !important;
  justify-content: center !important;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;         /* passe sur 2 lignes en mobile si besoin */
}
.gtf-footer__legal li { margin: 0; padding: 0; }
.gtf-footer__legal a {
  color: #004a75;
  font-size: 13px;
  text-decoration: none;
}
.gtf-footer__legal a:hover { text-decoration: underline; }

.shop-card__bullets li::before {
  content: "✓ ";
  color: var(--bullet-color, #333);
  font-weight: bold;
}
.intro-text {
    max-width: 1900px;
    margin: 20px auto 30px !important;
    line-height: 1.6;
    color: #000;
    text-align: center;
    padding: 0 40px;
}
@media (max-width: 1600px) {
  .intro-text {
    max-width: 90%;
  }
/* Adaptation responsive */
@media (max-width: 1400px) {
  .intro-text {
    max-width: 90%;
    padding: 0 20px;
  }
/* Nettoyage des ombres parasites */
.blockcart-dropdown li,
.block-user-dropdown li {
  box-shadow: none !important;
  border-bottom: 1px solid rgba(0,0,0,.07);
  background: #fff !important;
}

.blockcart-dropdown li:last-child,
.block-user-dropdown li:last-child {
  border-bottom: none !important;
}

/* === VIDÉO / overlay === */
.vb-hero-wrapper iframe {
  z-index: 0 !important; /* bien en dessous du reste */
}

.vb-overlay {
  z-index: 2 !important; /* reste visible au-dessus de la vidéo */
}
#desktop-mini-slide {
    margin-top: 20px;
}
.photo-note{
  border:1px solid rgba(0,0,0,.12);
  border-radius:8px;
  padding:12px 16px;
  background:#fff;
  margin-top:10px;
}
.photo-note .photo2{
  margin:0;
  line-height:1.45;
  font-size:.95rem;
}
