/** Shopify CDN: Minification failed

Line 1651:15 Unexpected "{"
Line 1651:24 Expected ":"
Line 1651:30 Unexpected ","
Line 1658:15 Unexpected "{"
Line 1658:24 Expected ":"
Line 1658:30 Unexpected ","
Line 1897:17 Unexpected "{"
Line 1897:26 Expected ":"
Line 1897:32 Unexpected ","

**/
/* LCP – Correctifs & composants custom */

/* =========================
   Effets / utilitaires
   ========================= */
#snow-canvas{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index:9999;
}

/* Empêche le scroll quand le drawer est ouvert */
.lcp-no-scroll{ overflow:hidden; }

/* =========================
   Drawer Catégories
   ========================= */
.lcp-categories-drawer[aria-hidden="true"]{ display:none; }
.lcp-categories-drawer{
  position:fixed;
  inset:0;
  z-index:10000;
}
.lcp-categories-drawer__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
}
.lcp-categories-drawer__panel{
  position:absolute;
  left:0; right:0; bottom:0;
  height:82vh;
  background:#fff;
  border-top-left-radius:16px;
  border-top-right-radius:16px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.lcp-categories-drawer__header{
  padding:12px 14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.lcp-categories-drawer__title{ font-weight:700; font-size:16px; }
.lcp-categories-drawer__close{
  border:0;
  background:transparent;
  font-weight:700;
  padding:6px 10px;
}

.lcp-categories-drawer__body{ flex:1; overflow:auto; }
.lcp-categories__cols{ display:flex; min-height:100%; }
.lcp-categories__left{
  width:38%;
  max-width:170px;
  background:#f6f6f6;
  border-right:1px solid rgba(0,0,0,.06);
  padding:8px 0;
}
.lcp-catbtn{
  width:100%;
  text-align:left;
  padding:12px 12px;
  border:0;
  background:transparent;
  font-size:13px;
  line-height:1.2;
  color:#111;
}
.lcp-catbtn.is-active{
  background:#fff;
  font-weight:700;
  border-left:3px solid #ff7a00;
}

.lcp-categories__right{ flex:1; padding:12px; }
.lcp-catpanel{ display:none; }
.lcp-catpanel.is-active{ display:block; }
.lcp-catpanel__title{ font-weight:800; margin:4px 0 10px; font-size:16px; }

.lcp-catgrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
}
.lcp-catcard{
  text-decoration:none;
  color:inherit;
  text-align:center;
}
.lcp-catcard__img{
  width:86px;
  height:86px;
  object-fit:cover;
  border-radius:999px;
  background:#eee;
  margin:0 auto 8px;
  display:block;
}
.lcp-catcard__name{
  font-size:12px;
  line-height:1.2;
  opacity:.9;
}

/* Ajustements mobile petits écrans */
@media (max-width: 360px){
  .lcp-catgrid{ grid-template-columns:repeat(2, minmax(0,1fr)); }
  .lcp-categories__left{ width:42%; }
}

/* Tablette/PC */
@media (min-width: 768px){
  .lcp-catgrid{ grid-template-columns:repeat(4, minmax(0,1fr)); }
  .lcp-categories__left{ max-width:240px; width:28%; }
}
@media (min-width: 1100px){
  .lcp-catgrid{ grid-template-columns:repeat(5, minmax(0,1fr)); }
}

/* =========================
   Dark/Light toggle (toujours cliquable)
   ========================= */
.darkmode-bar{
  position: fixed;
  top: 6px;
  right: 12px;
  z-index: 20000;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  pointer-events: none;
}
.darkmode-bar #toggle-darkmode{
  pointer-events: auto;
  background: transparent;
  border: 0;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

/* =========================
   FIX: supprimer le scroll horizontal
   ========================= */
html, body {
  width: 100%;
  overflow-x: hidden !important;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
img, video, iframe, svg, canvas {
  max-width: 100%;
  height: auto;
}

/* =========================
   Mode sombre (dark mode)
   ========================= */
body.dark-mode{
  background:#0f172a;
  color:#e5e7eb;
}
body.dark-mode a{ color:#93c5fd; }
body.dark-mode header,
body.dark-mode .site-header,
body.dark-mode .mobile-bottom-bar,
body.dark-mode .header,
body.dark-mode .nav,
body.dark-mode .page-container{
  background:#020617;
}

/* =========================
   Barre d’annonce modulable
   ========================= */
.lcp-announce-bar{
  background: transparent;
  color: var(--lcp-atxt, #fff);
}
.lcp-announce-bar.is-sticky{
  position: sticky;
  top: 0;
  z-index: 20000;
}
.lcp-announce-bar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  max-width: 1200px;
  margin: 2px auto;
  background: var(--lcp-abg, #d97706);
  border: 1px solid var(--lcp-aborder, rgba(255,255,255,0.18));
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}

/* Texte : base */
.lcp-announce-bar__text{
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  /* important pour le slider */
  flex: 1 1 auto;
  min-width: 0;
}

.lcp-announce-bar__link,
.lcp-announce-bar__span{
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.lcp-dark-toggle{
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.10);
  cursor: pointer;
}

/* =========================
   LOGO STICKY : MÊME TAILLE QUE LOGO NORMAL
   ========================= */
#header-sticky .contentstickynew_logo img,
#header-sticky .contentstickynew_logo svg,
#header-sticky .contentstickynew_logo .site-header__logo-image img{
  width: inherit;
  max-width: 100%;
  height: auto;
}

/* Sécurité générale logo */
.site-header__logo-image img{
  height: auto !important;
  max-width: 100%;
}

/* =========================
   FIX zoom mobile sur input (iOS/Android)
   ========================= */
#mobile_search input[type="search"],
#mobile_search input[type="text"],
.site-header__search input[type="search"],
.site-header__search input[type="text"],
.contentsticky_search input[type="search"],
.contentsticky_search input[type="text"]{
  font-size: 16px !important; /* empêche le zoom iOS */
  line-height: 1.2;
}

/* =========================
   LCP Predictive search (autocomplete)
   ========================= */
.lcp-search-form{ position: relative; }

.lcp-predictive{
  position: absolute;
  left: 0; right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,.15);
  z-index: 50000;
  overflow: hidden;
}

body.dark-mode .lcp-predictive{
  background: #0b1220;
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 16px 38px rgba(0,0,0,.45);
}

.lcp-predictive__item{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  text-decoration:none;
  color: inherit;
}

.lcp-predictive__item:hover{
  background: rgba(0,0,0,.06);
}
body.dark-mode .lcp-predictive__item:hover{
  background: rgba(255,255,255,.08);
}

.lcp-predictive__img{
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  background: #eee;
  flex: 0 0 auto;
}
.lcp-predictive__name{
  font-weight: 700;
  line-height: 1.15;
  font-size: 14px;
}
.lcp-predictive__price{
  font-size: 12px;
  opacity: .8;
  margin-top: 2px;
}

/* =========================
   Masquer le bouton loupe (search submit)
   ========================= */
.lcp-search-btn,
.site-header__search button[type="submit"],
.site-header__search .search__submit,
#mobile_search button,
#mobile_search .search__submit {
  display: none !important;
}

/* Ajustement : input prend toute la largeur */
.lcp-search-input,
.site-header__search input[type="search"],
.site-header__search input[type="text"],
#mobile_search input[type="search"]{
  width: 100%;
}

/* ==========================
   LCP – Flash Deals (VERSION STABLE)
   - On évite les conflits Vinova (.title/.subtitle)
   - On force la priorité sur les styles clés
   ========================== */

/* Bloc principal */
.lcp-deals-wrap{
  background: var(--lcp-deals-bg, #d6452d) !important;
  color: var(--lcp-deals-text, #fff) !important;
  border-radius: 18px !important;
  padding: 18px 14px 14px !important;
  position: relative;
  overflow: hidden;
}

/* Titres : styles propres (pas dépendants du thème) */
.lcp-deals-title{
  color: var(--lcp-deals-text, #fff) !important;
  text-align:center !important;
  font-size:22px !important;
  letter-spacing:.5px !important;
  font-weight:800 !important;
  text-transform:uppercase !important;
  margin: 0 !important;
}

.lcp-deals-subtitle{
  color: var(--lcp-deals-text, #fff) !important;
  text-align:center !important;
  opacity: .85 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-transform:uppercase !important;
  margin-top: 4px !important;
}

/* Timer */
.lcp-deals-timer{ margin-top: 12px !important; }

.lcp-deals-timer__row{
  display:flex !important;
  justify-content:center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}

.lcp-deals-unit{
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  gap: 6px !important;
  min-width: 58px !important;
}

.lcp-deals-pill{
  width: 54px !important;
  height: 54px !important;
  border-radius: 999px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background: var(--lcp-deals-pill-bg, #fff) !important;
  color: var(--lcp-deals-pill-text, #d6452d) !important;
  font-weight: 800 !important;
  box-shadow: 0 10px 18px rgba(0,0,0,.12) !important;
}

.lcp-deals-label{
  font-size: 12px !important;
  font-weight: 700 !important;
  opacity: .95 !important;
}

.lcp-deals-expired{
  margin: 12px auto 0 !important;
  font-weight: 800 !important;
  opacity: .95 !important;
  text-align:center !important;
  color: var(--lcp-deals-text, #fff) !important;
}

/* Petit fix anti “layout bizarre” avec row/col du thème */
.slideshow__deals-slider.row{
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (max-width: 480px){
  .lcp-deals-pill{ width: 46px !important; height: 46px !important; }
  .lcp-deals-unit{ min-width: 52px !important; }
}

/* =========================
   LCP – Badge (utilisé par la barre d’annonce)
   ========================= */
.lcp-announce-badge{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--lcp-badge-bg, #111);
  color: var(--lcp-badge-txt, #00ff66);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .6px;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

/* =========================
   LCP – Announcement Steps (pause + slide)
   Remplace l'ancien ticker continu
   ========================= */
.lcp-announce-steps{
  width: 100%;
  min-width: 0;
}

.lcp-announce-steps__viewport{
  height: var(--lcp-step-h, 22px);
  overflow: hidden;
}

.lcp-announce-steps__track{
  transform: translate3d(0,0,0);
  transition-property: transform;
  transition-timing-function: ease;
  transition-duration: var(--lcp-step-speed, 450ms);
  will-change: transform;
}

.lcp-announce-steps__item{
  height: var(--lcp-step-h, 22px);
  display: flex;
  align-items: center;
}

.lcp-announce-steps .lcp-announce-bar__link,
.lcp-announce-steps .lcp-announce-bar__span{
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Accessibilité */
@media (prefers-reduced-motion: reduce){
  .lcp-announce-steps__track{
    transition: none !important;
  }
}

.lcp-mobile-top{
  padding: 10px 12px;
  background: #fff;
  border-bottom: 2px solid rgba(255, 252, 252, 0.18);
}
.lcp-mobile-icons{ gap:12px; }
.lcp-icon{
  font-size:20px;
  color:#111;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.lcp-mobile-search{
  padding: 8px 12px 12px;
}

.lcp-mobile-quicknav{
  padding: 0 0 10px;   /* PLUS de padding gauche/droite */
  margin: 10px 0 0;   /* uniquement vertical */
  display: flex;
  justify-content: flex-start;
  position: relative;
  z-index: 5;
}

.lcp-mobile-quicknav{
  width: 100%;
  max-width: 100%;
  padding: 0;                /* SUPPRIME les rebords */
  margin: 8px 0 0;
  overflow: hidden;          /* coupe tout dépassement */
  position: relative;
}

.lcp-mobile-quicknav__track{
  display: flex;
  gap: 10px;
  padding: 0 12px;           /* padding INTERNE seulement */
margin: 0 -12px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

.lcp-mobile-quicknav__track::-webkit-scrollbar{
  display: none;
}

.lcp-qnav{
  color: #111;                 /* texte */
  font-weight: 600;
  font-size: 14px;

  padding: 8px 14px;
  border-radius: 999px;

  background: transparent;
  border: 1px solid rgba(0,0,0,.08);

  transition: all .2s ease;
}

/* Hover / tap */
.lcp-qnav:hover{
  background: rgba(0,0,0,.04);
}

/* Bouton actif */
.lcp-qnav.is-active{
  background: #111;
  color: #fff;
  border-color: #111;
}
.lcp-mobile-quicknav__track{
  scroll-behavior: smooth;
}
.lcp-qnav.is-active{
  background: #d97706;
  border-color: #d97706;
  color: #fff;
}

/* FORCE taille icônes header mobile */
.header-mobile i.zmdi,
.header-mobile .site-header__cart-icon,
.header-mobile-icons i,
.lcp-mobile-icons i{
  font-size: 25px !important;   /* ← ajuste ici : 14 / 16 / 18 */
  line-height: 1 !important;
}
.site-header__cart-icon{
  transform: scale(0.50);
}
/* Form */
.lcp-search-form{
  margin: 0;
}

/* Wrapper (fond + arrondi) */
.lcp-search-wrapper{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f2f2f2;      /* 🎨 Couleur du fond */
  border-radius: 12px;
  padding: 8px 10px;
}

/* Loupe à gauche */
.lcp-search-icon{
  flex: 0 0 auto;
  font-size: 16px;
  color: #777;
}

/* Input */
.lcp-search-input{
  flex: 1 1 auto;
  width: 100%;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-size: 14px;
  color: #222;
  padding: 10px 0;
  -webkit-appearance: none;
}

/* Bouton submit (propre) */
.lcp-search-btn{
  flex: 0 0 auto;
  border: none;
  background: #111;        /* 🎨 Couleur bouton */
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
}

/* Predictive dropdown (si tu l’utilises) */
.lcp-predictive{
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  background: #f2f2f2;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
  overflow: hidden;
  z-index: 50;
}
/* Loupe à droite */
.lcp-search-icon--right{
  order: 3;               /* passe après l’input */
  margin-left: auto;      /* pousse à droite */
  font-size: 16px;
  color: #777;
}

/* =========================
   LCP – Drawer Menu Gauche (FIX)
   ========================= */
#lcp-drawer.lcp-drawer{
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: auto !important;
  height: 100dvh !important;
  width: min(86vw, 360px) !important;
  transform: translateX(-105%) !important;
  background: #fff !important;
  z-index: 60000 !important;
}
#lcp-drawer.lcp-drawer.is-open{
  transform: translateX(0) !important;
}

.lcp-drawer-overlay{
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0,0,0,.45) !important;
  z-index: 59999 !important;
}
html.lcp-noscroll, body.lcp-noscroll{ overflow: hidden !important; }

/* =========================
   FIX – empêcher le offcanvas Vinova (panneau blanc à droite)
   ========================= */
#mobile_menu,
#MobileNav,
.mobile-nav,
.offcanvas,
.offcanvas-menu,
.canvas-menu,
.sidebar-menu,
.nov-menu-mobile,
.nov-megamenu{
  display: none !important;
}
.lcp-drawer{ 
  position: fixed; top:0; left:0; right:auto;
  height: 100vh; width: 86vw; max-width: 360px;
  background:#fff; z-index: 100000;
  transform: translateX(-105%);
  transition: transform .25s ease;
  display:flex; flex-direction:column;
}
.lcp-drawer.is-open{ transform: translateX(0); }

.lcp-drawer-overlay{
  position: fixed; inset:0;
  background: rgba(0,0,0,.45);
  z-index: 99999;
}

.lcp-drawer__top{ padding:10px 12px; border-bottom:1px solid #eee; position:relative; }
.lcp-drawer__close{ position:absolute; right:10px; top:10px; border:0; background:transparent; font-size:18px; }

.lcp-tabs{ display:grid; grid-template-columns:1fr 1fr; border:1px solid #eee; border-radius:0; overflow:hidden; }
.lcp-tab{ padding:14px 10px; font-weight:800; border:0; background:#f7f7f7; color:#666; }
.lcp-tab.is-active{ background:#fff; color:#111; box-shadow: inset 0 -2px 0 #111; }

.lcp-drawer__body{ overflow:auto; }
.lcp-panel{ display:none; }
.lcp-panel.is-active{ display:block; }

.lcp-item{
  display:block; padding:16px 14px;
  border-bottom:1px solid #f0f0f0;
  color:#111; text-decoration:none;
}
html.lcp-noscroll, body.lcp-noscroll{ overflow:hidden !important; }

.lcp-bestcats{ padding: 18px 0 6px; background:#fff; }
.lcp-bestcats__inner{ padding: 0 14px; }
.lcp-bestcats__title{
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .5px;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.lcp-bestcats__track{
  display: flex;
  gap: 18px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.lcp-bestcats__track::-webkit-scrollbar{ display:none; }

.lcp-bestcats__item{
  flex: 0 0 auto;
  width: 118px;
  text-decoration: none;
  color: #111;
  text-align: center;
}

.lcp-bestcats__thumb{
  width: 68px;      /* ⬅ taille du rond */
  height: 68px;
  margin: 0 auto 8px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: #efefef;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.lcp-bestcats__thumb img{
  width: 10000%;
  height: 100%;
  object-fit: cover;
}

.lcp-bestcats__label{
  font-size: 13px;   /* ⬅ taille texte */
  font-weight: 700;
  line-height: 1.2;
  line-height: 1.2;
}
.lcp-bestcats__track{
  gap: 12px;
}
.lcp-bestcats__item{
  width: 96px;
}
.lcp-bestcats__title{
  font-size: 18px;
  margin-bottom: 8px;
}
/* Head */
.lcp-card-slider{ padding: 18px 0; background:#fff; }
.lcp-card-slider__head{
  display:flex; align-items:center; justify-content:space-between;
  padding: 0 14px; margin-bottom: 10px;
}
.lcp-card-slider__title{ margin:0; font-size:22px; font-weight:900; }
.lcp-card-slider__all{ font-weight:700; text-decoration:none; }

/* Track */
.lcp-card-slider__track{
  display:flex;
  gap: 14px;
  overflow-x:auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 14px 6px;
  scrollbar-width:none;
}
.lcp-card-slider__track::-webkit-scrollbar{ display:none; }

/* Card */
.lcp-card{
  flex: 0 0 auto;
  width: 230px;
  border: 1px solid #eaeaea;
  text-decoration:none;
  color:#111;
  background:#fff;
}
.lcp-card__img{
  width:100%;
  aspect-ratio: 1 / 1;
  background:#f3f3f3;
  overflow:hidden;
}
.lcp-card__img img{ width:100%; height:100%; object-fit:contain; }
.lcp-card__body{ padding: 10px 12px 12px; }
.lcp-card__title{ font-size:18px; font-weight:900; line-height:1.2; margin-bottom:10px; }
.lcp-card__price{ display:flex; gap:10px; align-items:baseline; }
.lcp-card__compare{ color:#777; text-decoration:line-through; }
.lcp-card__now{ color:#0b57d0; font-weight:900; }


/* ===== SLIDER TRACK (ligne horizontale) ===== */
.lcp-slider-track{
  display: flex;
  flex-wrap: nowrap;              /* empêche la 2e ligne */
  gap: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 2px 12px;
  scrollbar-width: none;          /* Firefox */
}
.lcp-slider-track::-webkit-scrollbar{
  display: none;                  /* Chrome / Safari */
}

/* ===== CARTE PRODUIT ===== */
.lcp-slider-card{
  text-decoration: none;
  color: inherit;
}

/* 2 produits visibles + un bout du 3e */
.lcp-slider-card--vertical{
  flex: 0 0 33vw;                 /* si tu veux + du 3e : 42vw */
  max-width: 170px;
  background: #fff;
  border-radius: 16px;
  padding: 10px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}
/* Haut (produits manuels) = plus petits */
.lcp-slider-track--top .lcp-slider-card--vertical{
  flex: 0 0 29vw;
  max-width: 150px;
}

/* Bas (collection) = plus grands */
.lcp-slider-track--bottom .lcp-slider-card--vertical{
  flex: 0 0 43vw;
  max-width: 190px;
}


/* Image */
.lcp-slider-card--vertical img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Texte */
.lcp-slider-meta{
  margin-top: 10px;
}
.lcp-slider-title2{
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}
.lcp-slider-price{
  margin-top: 6px;
  font-size: 15px;
  font-weight: 800;
}
/* Head section */
.lcp-section-head{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

/* Bouton Voir tout – discret */
.lcp-view-all-btn{
  font-size: 12px;
  font-weight: 600;
  color: rgba(0,0,0,.45);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 999px;
  background: transparent;
  transition: all .2s ease;
}

/* Effet hover / tap */
.lcp-view-all-btn:hover{
  color: rgba(0,0,0,.85);
  background: rgba(0,0,0,.06);
}
.lcp-section-head{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 8px;
}
.lcp-view-all-btn{
  font-size: 12px;
  font-weight: 600;
  color: rgba(0,0,0,.55);
  text-decoration:none;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
}
.lcp-view-all-btn:hover{
  background: rgba(0,0,0,.08);
}

/* Sticky header + announcement bar */
.lcp-sticky-wrap{
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* iOS Safari: évite certains glitch */
@supports (-webkit-touch-callout: none){
  .lcp-sticky-wrap{ top: 0; }
}
/* page produit*/
.lcp-ship-note{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:10px 12px;
  margin-bottom:12px;
  border:1px solid var(--lcp-bd);
  background:var(--lcp-bg);
  color:var(--lcp-tx);
  border-radius:12px;
}

.lcp-ship-note__icon{
  font-size:18px;
  line-height:1;
  margin-top:2px;
}

.lcp-ship-note__title{
  font-weight:700;
  font-size:14px;
  line-height:1.2;
}

.lcp-ship-note__sub{
  margin-top:2px;
  font-size:12px;
  opacity:.85;
  line-height:1.3;
}

.lcp-order-form { margin-top: 14px; }
.lcp-field { margin-bottom: 10px; }
.lcp-field label { display:block; font-weight:700; margin-bottom:4px; }
.lcp-field input,
.lcp-field select,
.lcp-field textarea {
  width:100%;
  padding:10px;
  border-radius:10px;
  border:1px solid #ddd;
}
.lcp-hidden-submit {
  display:none;
}
.lcp-order-form{ margin-top:12px; }
.lcp-field{ margin-bottom:10px; }
.lcp-field label{ display:block; font-weight:800; margin-bottom:4px; font-size:13px; }
.lcp-field input,.lcp-field select,.lcp-field textarea{
  width:100%; padding:11px 12px; border:1px solid #ddd; border-radius:12px;
}
.lcp-cta-checkout{
  width:100%;
  padding:14px 14px;
  border-radius:14px;
  border:0;
  font-weight:900;
  cursor:pointer;
}
.lcp-cta-checkout:disabled{ opacity:.7; cursor:not-allowed; }
.lcp-form-error{
  display:none;
  margin:10px 0;
  padding:10px 12px;
  border-radius:12px;
  background:#fff3f3;
  border:1px solid #f5b5b5;
  color:#b00020;
  font-size:13px;
  font-weight:700;
}
.lcp-form-error.show{
  display:block;
}
.lcp-pc__appblocks{ margin: 12px 0; }

/* Top trust — 1 ligne, premium, compact */
.lcp-toptrust{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:8px 10px;
  border:1px solid #f0f0f0;
  border-radius:14px;
  background:linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
  margin-bottom:10px;

  /* 1 ligne */
  white-space:nowrap;
  overflow:auto;
  -webkit-overflow-scrolling:touch;
}
.lcp-toptrust::-webkit-scrollbar{ height:0; }

.lcp-bestcats__thumb img{
  width: 5000%;
  max-width: none;
  transform: scale(1.05);
}
/* Couleur texte — Meilleures catégories */
.lcp-bestcats__title{
  color: #4a87d7 !important; /* <-- change ici */
}

.lcp-bestcats__label{
  color: #111 !important; /* <-- change ici */
}

/* Cache le bouton Ajouter au panier en overlay */
.product-card__add-to-cart,
.collection-product__overlay-add-to-cart {
    display: none !important;
}

/* =========================
   LCP – Collection Premium Design
   ========================= */

/* Conteneur principal de la collection */
.lcp-collection-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 8px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

.lcp-collection-item {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Carte produit */
.lcp-product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lcp-product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

/* Image produit */
.lcp-product-image {
  position: relative;
  width: 100%;
  padding-top: 100%; /* Carré 1:1 */
  overflow: hidden;
}

.lcp-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lcp-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.lcp-product-card:hover .lcp-product-img {
  transform: scale(1.05);
}

/* Badges */
.lcp-product-badges {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}

.lcp-badge {
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 4px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.5px;
}

.lcp-badge-new {
  background: #000;
}

.lcp-badge-sale {
  background: #ff3b30;
}

/* Info produit */
.lcp-product-info {
  padding: 12px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Titre produit */
.lcp-product-title {
  margin-bottom: 8px;
  flex-grow: 1;
}

.lcp-product-title a {
  color: #111;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
  height: 36px;
}

/* Prix */
.lcp-product-price {
  margin-bottom: 10px;
}

.lcp-price-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.lcp-price-sale {
  font-size: 16px;
  font-weight: 900;
  color: #111;
}

.lcp-price-regular {
  font-size: 16px;
  font-weight: 900;
  color: #111;
}

.lcp-price-compare {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
}

/* Bouton VOIR */
.lcp-product-action {
  margin-top: auto;
}

.lcp-view-btn {
  display: block;
  width: 100%;
  padding: 10px 12px;
  background: #111;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}

.lcp-view-btn:hover {
  background: #333;
  color: #fff;
  transform: translateY(-1px);
}

/* Cacher les éléments non désirés du thème original */
.lcp-product-card .thumbnail-container,
.lcp-product-card .group-buttons,
.lcp-product-card .badge_sale,
.lcp-product-card .product__info,
.lcp-product-card .product__review,
.lcp-product-card .available_product,
.lcp-product-card .desc {
  display: none !important;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .lcp-collection-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px !important;
  }
  
  .lcp-product-info {
    padding: 10px;
  }
  
  .lcp-product-title a {
    font-size: 12px;
    height: 34px;
  }
  
  .lcp-price-sale,
  .lcp-price-regular {
    font-size: 14px;
  }
  
  .lcp-price-compare {
    font-size: 11px;
  }
  
  .lcp-view-btn {
    padding: 8px 10px;
    font-size: 12px;
    border-radius: 6px;
  }
  
  .lcp-badge {
    font-size: 9px;
    padding: 3px 6px;
  }
}

/* Desktop adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
  .lcp-collection-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px !important;
  }
}

@media (min-width: 1024px) {
  .lcp-collection-grid {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 16px !important;
  }
  
  .lcp-product-title a {
    font-size: 14px;
  }
  
  .lcp-price-sale,
  .lcp-price-regular {
    font-size: 18px;
  }
}

/* Mode sombre */
body.dark-mode .lcp-product-card {
  background: #1e293b;
  border-color: rgba(255,255,255,.08);
}

body.dark-mode .lcp-product-title a {
  color: #e5e7eb;
}

body.dark-mode .lcp-price-sale,
body.dark-mode .lcp-price-regular {
  color: #fff;
}

body.dark-mode .lcp-price-compare {
  color: #94a3b8;
}

body.dark-mode .lcp-view-btn {
  background: #3b82f6;
}

body.dark-mode .lcp-view-btn:hover {
  background: #2563eb;
}
/* SUPPRIMER TOUS LES ESPACES ENTRE BANNIÈRE ET PRODUITS */
.collection__product-content {
  margin-top: -20px !important;
  padding-top: 0 !important;
}

.container .row {
  margin-bottom: 0 !important;
}

.collection_banner.mb-60 {
  margin-bottom: 10px !important;
}

/* Ajuster encore plus si nécessaire */
#CollectionProductGrid {
  margin-top: -10px !important;
}

.lcp-collection-grid {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* =========================
   CORRECTION BADGE NOIR "NOUVEAU"
   ========================= */

/* Forcer le badge "NOUVEAU" à être blanc sur fond noir */
.badge--sale-rt,
.badge.badge--sale-rt,
.badge_sale .badge--sale-rt {
  background: #000000 !important;
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
  letter-spacing: 0.5px !important;
  border: none !important;
  box-shadow: none !important;
}

/* Badges dans les snippets originaux */
.badge_sale {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.lcp-badge-new {
  background:rgb(71, 173, 62) !important;
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
  letter-spacing: 0.5px !important;
}

.lcp-badge-sale {
  background: #ff3b30 !important;
  color: #ffffff !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
  letter-spacing: 0.5px !important;
}



/* Changer le texte "Ajouter au panier" en "Voir le produit" DANS LA SECTION DEALS */
.slideshow__deals-slider .group_buttons button[type="submit"],
.slideshow__deals-slider .group_buttons .add-to-cart,
.slideshow__deals-slider .group_buttons .btn-cart,
.slideshow__deals-slider .group-buttons button {
  position: relative;
}

.slideshow__deals-slider .group_buttons button[type="submit"]:after,
.slideshow__deals-slider .group_buttons .add-to-cart:after,
.slideshow__deals-slider .group_buttons .btn-cart:after,
.slideshow__deals-slider .group-buttons button:after {
  content: "Voir le produit";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: inherit;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  border-radius: inherit;
}

.slideshow__deals-slider .group_buttons button[type="submit"] span,
.slideshow__deals-slider .group_buttons .add-to-cart span,
.slideshow__deals-slider .group_buttons .btn-cart span,
.slideshow__deals-slider .group-buttons button span {
  visibility: hidden;
  opacity: 0;
}

/* =========================
   REXAUTO – OVERRIDES PAGE PRODUIT
   ========================= */
:root{
  --rex-black:#0b0b0b;
  --rex-panel:#121212;
  --rex-panel-2:#1a1a1a;
  --rex-yellow:#ffb800;
  --rex-orange:#ff7a00;
  --rex-white:#ffffff;
  --rex-muted:#b8b8b8;
  --rex-border:rgba(255,184,0,.18);
  --rex-shadow:0 16px 40px rgba(0,0,0,.28);
}

body{
  background:#ffffff;
}

.product-thumb_left{
  background:
    radial-gradient(circle at top right, rgba(255,184,0,.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
  padding: 20px 0;
}

.product-single.row{
  align-items:flex-start;
}

.proFeaturedImage .item,
#productThumbs,
.rex-info-card,
.block_accordion,
.rex-shipping-box{
  border-radius:22px;
}

.rex-toptrust{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
  padding:12px 14px;
  background:#111;
  color:#fff;
  border:1px solid var(--rex-border);
  border-radius:16px;
  box-shadow:var(--rex-shadow);
  overflow:auto;
  white-space:nowrap;
  -webkit-overflow-scrolling:touch;
}
.rex-toptrust::-webkit-scrollbar{height:0;}
.rex-toptrust__item{
  font-size:13px;
  font-weight:800;
  letter-spacing:.1px;
}
.rex-toptrust__dot{
  opacity:.45;
  font-weight:700;
}

.product-single__photos.d-flex.pro_sticky{
  gap:14px;
}

#productThumbs .thumbItem{
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
}
#productThumbs .thumbItem.active{
  border-color:var(--rex-yellow);
  box-shadow:0 0 0 2px rgba(255,184,0,.18);
}
.proFeaturedImage .item{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  overflow:hidden;
}

.rex-info-card{
  background:linear-gradient(180deg, #111 0%, #191919 100%);
  border:1px solid rgba(255,255,255,.05);
  box-shadow:var(--rex-shadow);
  padding:20px;
  color:#fff;
}

.rex-badge-line{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:10px;
}
.rex-badge-line__item{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:6px 12px;
  border-radius:999px;
  background:var(--rex-yellow);
  color:#111;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.5px;
}
.rex-badge-line__item--dark{
  background:#242424;
  color:#fff;
  border:1px solid rgba(255,255,255,.1);
}

.rex-product-title,
.product-single__title{
  color:#fff !important;
  font-size:32px;
  line-height:1.15;
  font-weight:900;
  margin-bottom:8px;
  text-transform:none;
}

.rex-product-subtitle{
  color:rgba(255,255,255,.78);
  font-size:14px;
  line-height:1.5;
  margin:0 0 18px;
  max-width:560px;
}

.gr_pr_rw{
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:18px !important;
}

.product-single__price{
  display:flex !important;
  align-items:center;
  gap:10px;
  margin:0;
}
.product-single__price .money,
#ProductPrice-{{ section.id }},
#ProductPrice{
  color:var(--rex-yellow) !important;
  font-size:30px;
  font-weight:900;
}
.product-single__price s,
#ComparePrice-{{ section.id }},
#ComparePrice{
  color:rgba(255,255,255,.45) !important;
  font-size:15px;
  font-weight:700;
}
.rex-save-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:28px;
  padding:4px 10px;
  border-radius:999px;
  background:#2c2c2c;
  color:var(--rex-yellow);
  border:1px solid rgba(255,184,0,.28);
  font-size:12px;
  font-weight:900;
  letter-spacing:.3px;
}

.group-reviews.has-border{
  border:0 !important;
  padding:0 !important;
}

.product-single__shortdes{
  color:rgba(255,255,255,.82);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  padding:14px 16px;
  border-radius:16px;
  margin-bottom:16px;
}

.available_product{
  display:inline-flex;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,184,0,.10);
  border:1px solid rgba(255,184,0,.18);
  margin-bottom:16px;
}
.available_product .control-label,
.available_product span{
  color:#fff !important;
  font-weight:800;
}
.product__available.in-stock i{
  color:var(--rex-yellow);
}

.group-single__items.has-border{
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:14px 0;
  margin:10px 0 18px;
}
.group-single__items p,
.group-single__items a,
.group-single__items span{
  color:rgba(255,255,255,.80) !important;
}
.group-single__items .label,
.group-single__items .control-label{
  color:#fff !important;
  font-weight:800;
}

.product-form .form__label,
.product-form legend{
  color:#fff !important;
  font-weight:800;
}
.product-form__input label{
  color:#fff;
}
.product-form__input input[type="radio"] + label,
.product-form__input--dropdown .select__select,
.quick_view_qty,
.line-item-property__field textarea,
.quantity-selector{
  background:#1f1f1f !important;
  border:1px solid rgba(255,255,255,.09) !important;
  color:#fff !important;
  border-radius:14px !important;
}

.quick_view_qty{
  overflow:hidden;
}
.quick_view-qty{
  color:#fff !important;
}

.btnAddToCart,
.product-form__cart-submit{
  width:100%;
  min-height:58px;
  border:0 !important;
  border-radius:16px !important;
  background:linear-gradient(180deg, var(--rex-yellow) 0%, #f0a500 100%) !important;
  color:#111 !important;
  font-size:16px !important;
  font-weight:900 !important;
  text-transform:uppercase;
  letter-spacing:.6px;
  box-shadow:0 14px 28px rgba(255,184,0,.22);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btnAddToCart:hover,
.product-form__cart-submit:hover{
  transform:translateY(-2px);
  background:linear-gradient(180deg, #ffc533 0%, var(--rex-orange) 100%) !important;
  box-shadow:0 18px 34px rgba(255,122,0,.24);
}
.rex-cta-note{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px;
  color:rgba(255,255,255,.76);
  font-size:12px;
  font-weight:700;
  margin:-2px 0 14px;
}

.product-form__item--checkout .shopify-payment-button__button{
  border-radius:14px !important;
}

.block_accordion{
  margin-top:18px;
}
.accordion{
  background:#111;
  border:1px solid rgba(255,255,255,.06);
  border-radius:18px;
  overflow:hidden;
}
.accordion .product-single__tabs,
.accordion .block_custom,
.accordion .block_detail{
  border-bottom:1px solid rgba(255,255,255,.06);
}
.accordion .product-single__tabs:last-child,
.accordion .block_custom:last-child,
.accordion .block_detail:last-child{
  border-bottom:0;
}
.accordion .btn-link{
  display:flex;
  align-items:center;
  justify-content:space-between;
  width:100%;
  padding:16px 18px;
  color:#fff !important;
  background:transparent;
  font-size:15px;
  font-weight:800;
  text-decoration:none;
}
.accordion .block{
  padding:0 18px 18px;
}
.product-description,
.product-description *{
  color:rgba(255,255,255,.84) !important;
}

.rex-shipping-box{
  margin-top:18px;
  background:#111;
  border:1px solid rgba(255,255,255,.06);
  border-radius:18px;
  padding:14px 16px;
  box-shadow:0 12px 26px rgba(0,0,0,.16);
}
.rex-shipping-box .shiping_time,
.rex-shipping-box .shiping_truck{
  color:#fff !important;
  font-weight:800;
  gap:10px;
}
.rex-shipping-box i{
  color:var(--rex-yellow);
  font-size:20px;
}

.lcp-ship-note{
  background:linear-gradient(180deg, #161616 0%, #1f1f1f 100%) !important;
  border:1px solid rgba(255,184,0,.22) !important;
  color:#fff !important;
  border-radius:16px !important;
  box-shadow:0 12px 24px rgba(0,0,0,.16);
}
.lcp-ship-note__icon{
  font-size:22px;
}
.lcp-ship-note__title{
  color:#fff;
  font-size:14px;
  font-weight:900;
}
.lcp-ship-note__sub{
  color:rgba(255,255,255,.72);
}

@media (max-width: 991px){
  .rex-product-title,
  .product-single__title{
    font-size:26px;
  }
  .rex-info-card{
    padding:16px;
  }
  .product-thumb_left{
    padding:12px 0;
  }
}

@media (max-width: 767px){
  .rex-toptrust{
    margin-bottom:10px;
    padding:10px 12px;
  }
  .rex-toptrust__item{
    font-size:12px;
  }
  .product-single__photos.d-flex.pro_sticky{
    gap:10px;
  }
  .rex-product-title,
  .product-single__title{
    font-size:24px;
  }
  .product-single__price .money,
  #ProductPrice-{{ section.id }},
  #ProductPrice{
    font-size:26px;
  }
  .accordion .btn-link{
    padding:14px 15px;
    font-size:14px;
  }
}
