/** Shopify CDN: Minification failed

Line 50:11 Expected ")" to end URL token
Line 92:27 Expected ")" to end URL token
Line 197:27 Expected ")" to end URL token
Line 370:27 Expected ")" to end URL token
Line 601:27 Expected ")" to end URL token

**/
/* =========================================
   VARIABLES GLOBALES
========================================= */
:root {
  --bg: #1a1a1a;
  --fg: #f2f2f2;
  --muted: #dadada;
  --border: #2a2a2a;
  --accent: #c8ff00;

  --radius-card: 18px;
  --radius-btn: 12px;

  --font-weight-strong: 800;
  --font-weight-mid: 600;

  --header-bg-alpha: 0.55;
}

/* =========================================
   RESET / GLOBAL
========================================= */
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: var(--bg);
  color: var(--fg);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Ubuntu, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.5;

  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 60%),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,0.03) 0%, rgba(0,0,0,0) 70%),
    url({{ 'grain.png' | asset_url }});
  background-size: cover, cover, 600px;
  background-blend-mode: screen, normal, normal;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--fg);
  text-decoration: none;
}
a:hover {
  opacity: .9;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* =========================================
   HEADER / NAV
========================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 50;

  background: rgba(26,26,26,var(--header-bg-alpha));
  backdrop-filter: blur(10px) contrast(1.05);
  -webkit-backdrop-filter: blur(10px) contrast(1.05);

  border-bottom: 1px solid var(--border);
  box-shadow:
    0 20px 60px rgba(0,0,0,.8) inset,
    0 30px 60px rgba(0,0,0,.8);

  background-image: url({{ 'grain.png' | asset_url }});
  background-size: 400px;
  background-blend-mode: soft-light;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  min-height: 64px;
}

/* logo en haut */
.logo-img {
  height: 100px;
  width: auto;
  filter: contrast(1.05) brightness(.9);
  image-rendering: auto;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: var(--font-weight-mid);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1;
  padding: 4px 0;
  position: relative;
  display: inline-block;
  transform-origin: center left;
  transition:
    color .12s linear,
    transform .12s linear,
    filter .12s linear;
}
.nav a.active,
.nav a:hover {
  color: #d4d4d4;
  transform: scale(1.12);
  font-weight: 700;
  letter-spacing: .07em;
  filter: brightness(1.15);
}
.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(212,212,212,0.6) 0%,
    rgba(212,212,212,0) 100%
  );
  opacity: .7;
}

/* =========================================
   HERO (si utilisé)
========================================= */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,0.07) 0%, rgba(0,0,0,0) 60%);
}

.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.15) brightness(.92) saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 500px at 60% 20%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.55) 100%);
  mix-blend-mode: soft-light;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url({{ 'grain.png' | asset_url }});
  opacity: .22;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-logo {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-card {
  margin: 72px 0;
  max-width: 760px;
  background: rgba(20,20,20,.55);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
  backdrop-filter: blur(4px) contrast(1.05);
  -webkit-backdrop-filter: blur(4px) contrast(1.05);
  box-shadow: 0 25px 60px rgba(0,0,0,.8);
}
.hero-card h1 {
  font-size: clamp(32px, 2vw + 24px, 46px);
  margin: 0 0 10px 0;
  line-height: 1.15;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-weight: var(--font-weight-strong);
  color: var(--fg);
}
.hero-card .hero-sub {
  color: var(--muted);
  margin: 0 0 18px 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================
   BOUTONS GLOBAUX
========================================= */

.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 13px;
  font-weight: var(--font-weight-mid);
  line-height: 1;
  padding: 12px 16px;
  border-radius: var(--radius-btn);
  text-transform: uppercase;
  letter-spacing: .06em;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.4);
  color: var(--fg);
  box-shadow: 0 16px 32px rgba(0,0,0,.6);
  transform-origin: center center;
  transition:
    background .12s linear,
    border-color .12s linear,
    color .12s linear,
    box-shadow .12s linear,
    transform .12s linear,
    filter .12s linear;
}
.btn.cta {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.08) 0%, rgba(0,0,0,0) 60%),
    rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--fg);
  box-shadow: 0 24px 40px rgba(0,0,0,.9);
  text-shadow: 0 0 8px rgba(255,255,255,.4);
}
.btn.ghost {
  background: rgba(0,0,0,.15);
  border: 1px solid var(--border);
  color: var(--muted);
  box-shadow: 0 16px 32px rgba(0,0,0,.6);
  text-shadow: none;
}
.btn:hover,
.btn:focus {
  transform: scale(1.06);
  filter: brightness(1.15);
  box-shadow: 0 28px 50px rgba(0,0,0,1);
}
.btn.cta:hover,
.btn.cta:focus {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.14) 0%, rgba(0,0,0,0) 60%),
    rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.35);
  color: #f2f2f2;
  text-shadow: 0 0 10px rgba(255,255,255,.6);
}
.btn.ghost:hover,
.btn.ghost:focus {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.25);
  color: #d4d4d4;
}
.btn:active {
  transform: scale(0.98);
  filter: brightness(0.9);
  box-shadow: 0 12px 24px rgba(0,0,0,.8);
}

/* =========================================
   GRILLE PRODUITS GÉNÉRIQUE
========================================= */

.grid {
  display: grid;
  gap: 18px;
}
.grid.products {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width:900px) {
  .grid.products {
    grid-template-columns: repeat(4, 1fr);
  }
}
.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(20,20,20,.45),
    rgba(10,10,10,.65)
  );
  box-shadow: 0 20px 40px rgba(0,0,0,.7);
}
.card .body {
  padding: 12px 14px;
}
.card .title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .03em;
  font-weight: var(--font-weight-mid);
  color: var(--fg);
  line-height: 1.3;
  margin: 0 0 6px 0;
}
.card .price {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
}

/* =========================================
   FOOTER
========================================= */

.footer {
  border-top: 1px solid var(--border);
  margin-top: 64px;
  background: rgba(10,10,10,.6);
  background-image: url({{ 'grain.png' | asset_url }});
  background-size: 400px;
  background-blend-mode: soft-light;
}
.footer .cols {
  display: grid;
  gap: 16px;
  padding: 28px 0;
}
@media (min-width:900px) {
  .footer .cols {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
.footer p.small {
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
  margin: 0 0 6px 0;
}

/* =========================================
   LOOKBOOK
========================================= */

.lookbook-grid {
  columns: 1;
  column-gap: 16px;
}
@media (min-width:700px){
  .lookbook-grid { columns: 2; }
}
@media (min-width:1024px){
  .lookbook-grid { columns: 3; }
}
.lookbook-item {
  break-inside: avoid;
  margin: 0 0 16px 0;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(15,15,15,.5);
  box-shadow: 0 20px 40px rgba(0,0,0,.75);
}
.lookbook-item img {
  width: 100%;
  height: auto;
  display: block;
}
.lookbook-item .tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(0,0,0,.55);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: #fff;
  font-weight: var(--font-weight-mid);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* =========================================
   FORMULAIRE PRODUIT / VARIANTES / CTA
========================================= */

.product-form,
.product-actions,
.product-buy-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
}

.product-option-select,
.product-option-select select {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}
.product-option-select {
  position: relative;
  display: inline-block;
}
.product-option-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.08) 0%, rgba(0,0,0,0) 60%),
    rgba(40,40,40,.9);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  padding: 12px 40px 12px 16px;
  border-radius: var(--radius-btn);
  min-width: 220px;
  box-shadow:
    0 20px 40px rgba(0,0,0,.8),
    0 0 20px rgba(255,255,255,.07) inset;
  outline: none;
  cursor: pointer;
  position: relative;
  transition:
    box-shadow .12s linear,
    filter .12s linear,
    background .12s linear,
    border-color .12s linear,
    transform .12s linear;
}
.product-option-select::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  line-height: 1;
  color: #d4d4d4;
  pointer-events: none;
}
.product-option-select select:hover {
  filter: brightness(1.15);
  transform: scale(1.03);
  border-color: rgba(255,255,255,.3);
  box-shadow:
    0 28px 60px rgba(0,0,0,1),
    0 0 30px rgba(255,255,255,.12) inset;
}
.product-option-select select:focus {
  border-color: rgba(255,255,255,.5);
  box-shadow:
    0 0 10px rgba(255,255,255,.6),
    0 30px 60px rgba(0,0,0,1);
}
.product-option-select select option {
  background-color: #1f1f1f;
  color: #fff;
  font-weight: 500;
  padding: 8px 10px;
}

/* bouton "ajouter au panier" */
.add-to-cart-btn {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.14) 0%, rgba(0,0,0,0) 60%),
    rgba(80,80,80,.9);
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 12px 16px;
  border-radius: var(--radius-btn);
  min-width: 170px;
  text-align: center;
  cursor: pointer;
  box-shadow:
    0 24px 40px rgba(0,0,0,.9),
    0 0 20px rgba(255,255,255,.15) inset;
  text-shadow: 0 0 8px rgba(255,255,255,.4);
  outline: none;
  border-width: 1px;
  border-style: solid;
  display: inline-block;
  transform-origin: center center;
  transition:
    background .12s linear,
    border-color .12s linear,
    box-shadow .12s linear,
    color .12s linear,
    transform .12s linear,
    filter .12s linear;
}
.add-to-cart-btn:hover,
.add-to-cart-btn:focus {
  transform: scale(1.06);
  filter: brightness(1.15);
  box-shadow:
    0 30px 60px rgba(0,0,0,1),
    0 0 30px rgba(255,255,255,.25) inset;
  border-color: rgba(255,255,255,.6);
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.22) 0%, rgba(0,0,0,0) 60%),
    rgba(100,100,100,1);
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,.7);
}
.add-to-cart-btn:active {
  transform: scale(0.98);
  filter: brightness(0.9);
  box-shadow: 0 12px 24px rgba(0,0,0,.8) inset;
}

/* =========================================
   PANIER LATERAL (DRAWER)
========================================= */

.sh4de-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .2s linear;
  pointer-events: none;
  z-index: 2000;
}
.sh4de-cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.sh4de-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 90%);
  height: 100vh;
  background: rgba(15,15,15,.9);
  border-left: 1px solid var(--border);
  box-shadow:
    0 40px 120px rgba(0,0,0,.9),
    0 0 80px rgba(0,0,0,.8) inset;
  background-image: url({{ 'grain.png' | asset_url }});
  background-size: 400px;
  background-blend-mode: soft-light;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .2s ease-out;
  z-index: 2100;
  color: var(--fg);
  font-size: 14px;
}
.sh4de-cart-drawer.active {
  transform: translateX(0%);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,.4);
  border-bottom: 1px solid var(--border);
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,.8);
}
.cart-drawer-header h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  margin: 0;
  color: var(--fg);
}
.cart-drawer-close {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all .12s linear;
}
.cart-drawer-close:hover {
  color: #fff;
  background: rgba(255,255,255,.07);
  box-shadow: 0 10px 20px rgba(0,0,0,.8);
}

.cart-drawer-items {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 16px;
}
.cart-empty-msg {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
  margin: 48px 0;
  font-weight: 400;
  letter-spacing: .03em;
}

.cart-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.cart-line-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(30,30,30,.6);
  border: 1px solid var(--border);
  box-shadow:
    0 16px 32px rgba(0,0,0,.8),
    0 0 20px rgba(255,255,255,.07) inset;
}
.cart-line-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-line-info {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
  row-gap: 4px;
  column-gap: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--fg);
}
.cart-line-title {
  grid-column: 1 / span 2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 13px;
}
.cart-line-variant {
  grid-column: 1 / span 2;
  color: var(--muted);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .03em;
}
.cart-line-qty {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}
.cart-line-price {
  justify-self: end;
  font-weight: 600;
  font-size: 13px;
}

.cart-drawer-footer {
  border-top: 1px solid var(--border);
  padding: 16px;
  background: rgba(0,0,0,.4);
  box-shadow: 0 -20px 40px rgba(0,0,0,.8);
  display: grid;
  row-gap: 12px;
}
.cart-drawer-total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--fg);
}
.cart-drawer-total-row strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
}
.cart-drawer-viewcart,
.cart-drawer-checkout {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* =========================================
   PAGE PRODUIT (2 colonnes : gauche visuel / droite infos)
========================================= */

.product-page-wrap {
  padding: 32px 0 64px 0;
  color: var(--fg);
  background: transparent;
}

.product-page-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .product-page-grid {
    grid-template-columns: 55% 45%;
  }
}

/* COLONNE GAUCHE : galerie produit */
.product-media {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 900px) {
  .product-media {
    position: sticky;
    top: 80px; /* ajuste selon la hauteur du header */
    height: calc(100vh - 80px);
  }
}

.product-gallery {
  position: relative;
  width: 100%;
  min-height: min(80vh, 800px);
  background: rgba(10,10,10,.4);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow:
    0 40px 80px rgba(0,0,0,.9),
    0 0 40px rgba(255,255,255,.07) inset;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width:900px){
  .product-gallery {
    min-height: calc(100vh - 140px);
  }
}

.product-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s linear;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.product-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.product-slide-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,.8);
}

/* flèches gauche/droite dans la galerie */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.5);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .06em;
  box-shadow:
    0 20px 40px rgba(0,0,0,.9),
    0 0 20px rgba(255,255,255,.07) inset;
  transition: all .12s linear;
  z-index: 10;
}
.gallery-nav.prev { left: 12px; }
.gallery-nav.next { right: 12px; }
.gallery-nav:hover {
  filter: brightness(1.2);
  box-shadow:
    0 28px 60px rgba(0,0,0,1),
    0 0 30px rgba(255,255,255,.2) inset;
  border-color: rgba(255,255,255,.4);
}

/* on masque les miniatures sur la page produit finale */
.product-thumbs,
.thumb-btn,
.thumb-img {
  display: none !important;
}

/* COLONNE DROITE : bloc infos / achat */
.product-info-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(20,20,20,.55);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px 24px 28px;
  box-shadow:
    0 40px 80px rgba(0,0,0,.9),
    0 0 40px rgba(255,255,255,.05) inset;
  backdrop-filter: blur(4px) contrast(1.05);
  -webkit-backdrop-filter: blur(4px) contrast(1.05);
}

/* titre produit */
.product-title {
  margin: 0;
  font-size: clamp(24px, 1vw + 20px, 32px);
  line-height: 1.2;
  font-weight: var(--font-weight-strong);
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--fg);
  text-shadow: 0 0 8px rgba(255,255,255,.3);
}

/* bloc prix dans la fiche produit */
.product-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  background: rgba(0,0,0,.4);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  box-shadow:
    0 20px 40px rgba(0,0,0,.8),
    0 0 20px rgba(255,255,255,.07) inset;
  text-shadow: 0 0 8px rgba(255,255,255,.2);
  color: var(--fg);
}

.product-price-row .old-price {
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .03em;
}
.product-price-row .sale-price {
  color: #6Bff6B;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(107,255,107,.4);
  font-size: 14px;
  letter-spacing: .03em;
}
.product-price-row .badge-drop {
  background: rgba(107,255,107,.07);
  border: 1px solid rgba(107,255,107,.4);
  color: #6Bff6B;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  border-radius: 999px;
  padding: 3px 8px;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.product-price-row .regular-price {
  color: var(--fg);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .03em;
}

/* description produit */
.product-description {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: .03em;
  white-space: pre-line;
}

/* bloc form (select + bouton) */
.product-form.product-buy-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}

/* =========================================
   PAGE D'ACCUEIL / "DROP 1"
   - carte produit
   - suppression des plaques translucides
========================================= */

/* on neutralise toutes les barres/faux boutons placeholders qui traînaient */
.home-placeholder,
.home-placeholder *,
.home-strip,
.home-strip *,
.section-placeholder,
.section-placeholder *,
.section-pill,
.section-pill *,
.fake-slot,
.fake-slot *,
.fake-bar,
.fake-bar *,
.hero-filler,
.hero-filler *,
.header-filler,
.header-filler *,
.header-skeleton,
.header-skeleton *,
.mid-skeleton,
.mid-skeleton *,
.bottom-skeleton,
.bottom-skeleton *,
.skeleton-row,
.skeleton-card,
.skeleton-pill,
.skeleton-line,
.skeleton-bar,
.placeholder-strip,
.placeholder-bar,
.header-fake-link,
.header-pill,
.header-chip,
.fake-nav-pill,
.home-hero-block div:empty,
.home-hero-block .placeholder {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* wrapper de la zone produits d'accueil */
.home-products-wrapper {
  max-width: 1280px;
  margin: 32px auto 64px auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start; /* tout collé à gauche */
}

/* badge DROP 1 */
.drop-badge-home,
.drop-badge {
  display: inline-block;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.08) 0%, rgba(0,0,0,0) 60%),
    rgba(20,20,20,.6);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
  box-shadow:
    0 30px 60px rgba(0,0,0,.9),
    0 0 40px rgba(255,255,255,.07) inset;
  text-shadow: 0 0 8px rgba(255,255,255,.3);
  width: fit-content;
}

/* carte produit sur la home */
.home-product-card {
  display: flex;
  flex-direction: column;
  width: min(360px, 90vw);
  background: rgba(20,20,20,.65);
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--fg);
  text-decoration: none;
  box-shadow:
    0 40px 80px rgba(0,0,0,.9),
    0 0 40px rgba(255,255,255,.05) inset;
  overflow: hidden;
}

/* zone image dans la carte d'accueil :
   fond sombre, pas de carton blanc,
   très peu de marge pour que le hoodie remplisse visuellement */
.home-product-media {
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0) 60%),
    rgb(24,24,24);
  background-blend-mode: screen;
  border-bottom: 1px solid var(--border);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 8px;      /* rapprocher l'image du cadre */
  min-height: 320px; /* vitrine */
  max-height: 320px;
}

/* l'image du hoodie en home */
.home-product-img {
  display: block;
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
  transform: translateY(-6px); /* visuellement plus haut dans la carte */
}

/* texte + prix sous l'image */
.home-product-info {
  padding: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.4);
  box-shadow: 0 20px 40px rgba(0,0,0,.8) inset;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: .02em;
  color: var(--fg);
}

/* nom du produit */
.home-product-title {
  margin: 0 0 8px 0;
  color: var(--fg);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-shadow: 0 0 6px rgba(255,255,255,.25);
}

/* ligne prix promo sur la home */
.home-price-row,
.home-product-price-row,
.price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
}

/* ancien prix barré */
.home-old-price,
.old-price,
.price-old {
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .03em;
  opacity: .8;
}

/* nouveau prix vert acide */
.home-new-price,
.sale-price,
.price-new,
.home-product-sale-price {
  color: #6Bff6B;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(107,255,107,.4);
  font-size: 14px;
  letter-spacing: .03em;
}

/* prix normal si pas de promo */
.home-regular-price,
.regular-price,
.price-regular {
  color: var(--fg);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .03em;
  text-shadow: 0 0 8px rgba(255,255,255,.2);
}

/* petit badge "sale"/"drop 1 price" si tu veux l'afficher sur la home */
.badge-sale,
.badge-drop {
  background: rgba(107,255,107,.07);
  border: 1px solid rgba(107,255,107,.4);
  color: #6Bff6B;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* =========================================
   FIN
========================================= */
/* =========================================================
   FIX 1 — HOME : cacher toutes les barres/flammes translucides inutiles
   =========================================================

   Shopify met des sortes de "pills" / "plaques" floues pour faire genre skeleton loading
   ou déco. On les force en display:none uniquement sur la home.
   Le body Shopify a normalement une classe "template-index" sur la page d’accueil.
*/

.template-index .skeleton-row,
.template-index .skeleton-card,
.template-index .skeleton-pill,
.template-index .skeleton-line,
.template-index .skeleton-bar,
.template-index .placeholder-strip,
.template-index .placeholder-bar,
.template-index .placeholder-pill,
.template-index .placeholder,
.template-index .home-placeholder,
.template-index .home-strip,
.template-index .home-pill,
.template-index .hero-card-placeholder,
.template-index .header-filler,
.template-index .header-skeleton,
.template-index .header-pill,
.template-index .header-chip,
.template-index .fake-nav-pill,
.template-index .ghost-light.placeholder,
.template-index .ghost-light:empty,
.template-index .btn.placeholder {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Il reste parfois des <div> vides avec juste un fond gris + border-radius
   qu’on voit comme “barres arrondies” entre le header et le DROP 1.
   On les tue uniquement sur la home, s’ils sont vides (pas de texte). */
.template-index div:empty {
  /* si c'est vraiment une barre décorative vide => on la masque */
  background: none !important;
  box-shadow: none !important;
  border: 0 !important;
  min-height: 0 !important;
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}


/* =========================================================
   FIX 2 — HOME : carte produit => plus JAMAIS de fond blanc derrière la photo
   (on met du dark et on ressert un peu l'image pour qu'elle remplisse mieux)
   ========================================================= */

.home-product-card .home-product-media {
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0) 60%),
    rgb(24,24,24) !important;
  background-blend-mode: screen !important;

  border-bottom: 1px solid var(--border) !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 8px !important;
  min-height: 320px !important;
  max-height: 320px !important;
}

.home-product-card .home-product-img {
  max-width: 100% !important;
  max-height: 300px !important;
  object-fit: contain !important;

  /* on la pousse légèrement vers le haut pour éviter l'effet "trop d'air en bas" */
  transform: translateY(-6px) !important;

  /* pas d’ombre blanche autour, pas de fond blanc imposé */
  background: transparent !important;
}


/* =========================================================
   FIX 3 — PANIER LATERAL : restaure le style des boutons + / − / Retirer
   =========================================================

   On redonne un style brut, bien lisible, pour les contrôles de quantité
   dans le drawer du panier.
*/

.qty-btn,
.qty-remove {
  background: rgba(0,0,0,.4);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--fg);
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  padding: 4px 8px;
  cursor: pointer;
  margin-left: 6px;
  box-shadow: 0 12px 24px rgba(0,0,0,.8);
  text-transform: uppercase;
  letter-spacing: .05em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px; /* pour que + et - aient l’air de vrais boutons */
}

.qty-btn:hover,
.qty-btn:focus {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.3);
  color: #fff;
  box-shadow:
    0 20px 40px rgba(0,0,0,1),
    0 0 20px rgba(255,255,255,.15) inset;
}

.qty-remove {
  color: #ff8a8a;
  border-color: #5a2a2a;
  background: rgba(0,0,0,.4);
}
.qty-remove:hover,
.qty-remove:focus {
  background: rgba(255,0,0,.12);
  border-color: rgba(255,0,0,.4);
  color: #fff;
  box-shadow:
    0 20px 40px rgba(0,0,0,1),
    0 0 20px rgba(255,0,0,.3) inset;
}
.hero {
  position: relative;
  min-height: 110vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 0px solid var(--border);
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,0.07) 0%, rgba(0,0,0,0) 60%);
}
.page-title { font-size: clamp(26px, 2vw + 18px, 38px); }
.page-sub   { font-size: 14px; opacity: .85; }
.container  { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
/* Conteneur pleine largeur */
.lookbook-full .container { 
  max-width: none; 
  padding-left: 0; 
  padding-right: 0; 
}

/* Grille 2 colonnes avec grosses marges */
.lookbook-full .lb-grid { 
  grid-template-columns: repeat(2, 1fr); 
  gap: 28px; 
}

@media (max-width: 900px){
  .lookbook-full .lb-grid { grid-template-columns: 1fr; }
}
.lookbook--full .lb-media{ width:100%; }
.lookbook--full .lb-media img{ height:auto; object-fit:contain; }

/* --- FIX alignement bord-à-bord --- */
.lookbook--full {
  /* Centrage viewport sans décalage */
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  left: auto !important;
  right: auto !important;
  width: 100vw !important;
}

.lookbook--full .container{
  max-width: 100vw !important;
  width: 100vw !important;
  padding: 0 !important;
  margin: 0 !important;
}

.lookbook--full .lb-grid{
  gap: 0 !important;
  margin: 0 !important;
}
/* ====== MOBILE POLISH (<= 768px) ====== */
@media (max-width: 768px) {

  /* Layout & container */
  .container { 
    padding-left: 16px !important;
    padding-right: 16px !important;
    max-width: 100% !important;
  }
  body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

  /* Header */
  .header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(6px); }
  .header-inner { gap: 10px; padding: 10px 12px !important; }
  .logo-img { height: 26px; width: auto; }
  .nav { gap: 10px; flex-wrap: wrap; }
  .nav a { 
    font-size: 12.5px; 
    letter-spacing: .04em; 
    padding: 8px 10px; 
    line-height: 1; 
  }
  .nav a.active { text-decoration: underline; text-underline-offset: 3px; }

  /* Titres & texte */
  h1, .lb-title, .cg-title-main { font-size: 22px !important; line-height: 1.15; margin: 10px 0 14px; }
  h2 { font-size: 18px; line-height: 1.2; }
  p, li { font-size: 14.5px; line-height: 1.6; }

  /* Boutons (tap targets) */
  .btn, .button, button, [type="submit"] {
    min-height: 44px; 
    padding: 12px 14px; 
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: .04em;
  }

  /* Lookbook — full bleed 2 colonnes -> 1 colonne serrée */
  .lookbook--full .lb-grid,
  .lookbook .lb-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;         /* coller les images */
  }
  .lb-item { border-radius: 0 !important; }
  .lb-media { width: 100%; }
  .lb-media img { width: 100%; height: auto; display: block; border-radius: 0; }
  .lb-tag { left: 10px; bottom: 10px; font-size: 11px; padding: 5px 8px; }

  /* Catalogue — cartes grandes, info compacte */
  .catalog-grid .cg-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .catalog-grid .cg-card { border-radius: 12px; overflow: hidden; }
  .catalog-grid .cg-media { aspect-ratio: 4/5; }
  .catalog-grid .cg-media img { width: 100%; height: 100%; object-fit: cover; }
  .catalog-grid .cg-title-main { font-size: 15px !important; margin: 8px 0 4px; }
  .cg-price { gap: 6px; }
  .cg-price .current { font-size: 16px; font-weight: 800; }
  .cg-price .compare { font-size: 13px; opacity: .6; text-decoration: line-through; }
  .cg-badge, .cg-drop { top: 10px; left: 10px; font-size: 11px; padding: 4px 8px; border-radius: 999px; }

  /* Page Contact — formulaire lisible */
  .contact-page .contact-card { padding: 14px; border-radius: 12px; }
  .contact-page input,
  .contact-page textarea { font-size: 15px; padding: 12px 12px; border-radius: 10px; }
  .contact-page .info-card { padding: 14px; border-radius: 12px; }
  .contact-page .info-title { font-size: 16px; margin: 0 0 6px; }

  /* Footer */
  .site-footer .columns { display: grid; grid-template-columns: 1fr; gap: 8px; }
  .site-footer { padding: 22px 16px; }

  /* Tiroir Panier (Cart Drawer) */
  .cart-drawer { 
    width: 100vw !important; 
    max-width: 100vw !important; 
    height: 100dvh; 
  }
  .cart-drawer .body { padding: 16px; gap: 12px; }
  .cart-drawer .line { gap: 10px; }
  .cart-drawer .actions { 
    position: sticky; bottom: env(safe-area-inset-bottom); 
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    background: var(--bg, rgba(0,0,0,.6)); backdrop-filter: blur(6px);
  }
  /* (tu as déjà caché “Voir le panier complet”, on laisse juste le checkout gros) */
  .cart-drawer .btn-view-cart { display: none !important; }

  /* Divers anti-décalages */
  img { image-rendering: -webkit-optimize-contrast; }
  * { -webkit-tap-highlight-color: transparent; }
}

/* Petits écrans très étroits (<= 360px) */
@media (max-width: 360px) {
  .nav a { font-size: 11.5px; padding: 6px 8px; }
  .btn, .button, button, [type="submit"] { padding: 11px 12px; }
}
@media (max-width:768px){
  .cg-card, .lb-item { box-shadow: none !important; background: transparent !important; }
}
/* ===== HEADER MOBILE POLISH ===== */
@media (max-width: 768px) {

  /* hauteur standard du header sur mobile */
  .header { --header-h: 60px; position: sticky; top: 0; z-index: 50;
    background: rgba(0,0,0,.65); backdrop-filter: blur(6px); }

  .header-inner{
    display:flex; align-items:center; justify-content:space-between;
    min-height: var(--header-h);
    padding: 8px 12px !important; gap: 10px;
  }

  /* Logo plus gros, aligné à gauche */
  .logo { flex: 0 0 auto; display:flex; align-items:center; }
  .logo-img{ height: 32px; width:auto; display:block; } /* monte à 36px si tu veux encore + gros */

  /* Nav toujours sur une ligne, défilement horizontal fluide */
  .nav{
    flex: 1 1 auto;
    display:flex; align-items:center; gap: 18px;
    overflow-x:auto; white-space:nowrap;
    -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity;
    justify-content: flex-start;
  }
  .nav::-webkit-scrollbar{ display:none; }
  .nav a{
    flex: 0 0 auto; scroll-snap-align: center;
    padding: 10px 0; line-height:1;
    font-size: 13px; letter-spacing:.04em; text-transform:uppercase;
    opacity:.9;
  }
  .nav a.active{ text-decoration: underline; text-underline-offset: 4px; opacity:1; }
}
/* ===== HERO VIDEO FULL HEIGHT ON MOBILE ===== */
@media (max-width: 768px){
  /* adapte la/les classes si besoin : .hero-video est souvent le nom dans ton thème */
  .hero-video,
  section.hero-video,
  .HeroVideo,
  .video-hero {
    height: calc(100svh - var(--header-h, 60px)) !important;
    min-height: calc(100svh - var(--header-h, 60px)) !important;
  }
  .hero-video video,
  .hero-video .media,
  .HeroVideo video,
  .video-hero video{
    width:100%; height:100%; object-fit:cover; display:block;
  }
}
@media (max-width:768px){
  .hero-video video{ transform: scale(0.98); transform-origin:center; }
}
/* ===== Header mobile : logo en 1re ligne, nav en 2e ===== */
@media (max-width: 768px){

  /* hauteur "logique" du header (2 lignes) — ajuste si besoin */
  .header{ --header-h: 96px; position: sticky; top: 0; z-index: 50;
           background: rgba(0,0,0,.65); backdrop-filter: blur(6px); }

  .header-inner{
    /* deux lignes : logo puis nav */
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "nav";
    row-gap: 6px;
    align-items: center;
    padding: 8px 12px !important;
  }

  /* 1ʳᵉ ligne : logo plus gros, clique facile */
  .logo{ grid-area: logo; display:flex; align-items:center; }
  .logo-img{ height: 44px; width:auto; display:block; } /* mets 52px si tu veux encore + gros */

  /* 2ᵉ ligne : tous les boutons sur une ligne (wrap si trop petit) */
  .nav{
    grid-area: nav;
    display:flex; flex-wrap:wrap; align-items:center;
    justify-content: space-between;      /* ou 'center' si tu préfères centré */
    gap: 10px 16px;
    overflow: visible; white-space: normal; /* annule le scroll horizontal précédent */
  }
  .nav a{
    padding: 10px 0; line-height:1;
    font-size: 13px; letter-spacing:.04em; text-transform:uppercase;
  }
  .nav a.active{ text-decoration: underline; text-underline-offset: 4px; }
}

/* ===== Option : la vidéo/hero occupe l'écran moins le header (2 lignes) ===== */
@media (max-width: 768px){
  .hero-video,
  section.hero-video,
  .HeroVideo,
  .video-hero{
    min-height: calc(100svh - var(--header-h, 96px)) !important;
    height:      calc(100svh - var(--header-h, 96px)) !important;
  }
  .hero-video video,
  .HeroVideo video,
  .video-hero video{ width:100%; height:100%; object-fit:cover; display:block; }
}
/* ====== Header mobile : logo centré (plus gros) + menu sur 1 seule ligne ====== */
@media (max-width: 768px){

  /* hauteur virtuelle du header (2 lignes) */
  .header{ --header-h: 120px; position: sticky; top: 0; z-index: 50;
           background: rgba(0,0,0,.65); backdrop-filter: blur(6px); }

  .header-inner{
    display: flex;
    flex-direction: column;         /* ligne 1 = logo, ligne 2 = nav */
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px !important;
  }

  /* Logo centré et plus gros */
  .logo{ width: 100%; display:flex; justify-content:center; }
  .logo-img{ height: 72px; width:auto; display:block; } /* ↑ augmente si tu veux (ex: 80px) */

  /* Menu : 1 seule ligne, centré, pas de retour à la ligne */
  .nav{
    width: 100%;
    display: flex;
    justify-content: center;   /* ou space-evenly / space-between selon ton goût */
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;         /* >>> pas de retour à la ligne */
    white-space: nowrap;
    overflow: hidden;          /* pas de scroll visible */
  }
  .nav a{
    padding: 12px 0;
    line-height: 1;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
  }
  .nav a.active{ text-decoration: underline; text-underline-offset: 4px; }
}

/* Compresser un peu si l’écran est très étroit (iPhone SE, etc.) */
@media (max-width: 390px){
  .nav{ gap: 14px; }
  .nav a{ font-size: 12.5px; }
}
@media (max-width: 340px){
  .logo-img{ height: 64px; }
  .nav{ gap: 10px; }
  .nav a{ font-size: 11.5px; letter-spacing: .02em; }
}

/* ====== Option : la section vidéo/hero occupe l’écran - le header ====== */
@media (max-width: 768px){
  .hero-video,
  section.hero-video,
  .HeroVideo,
  .video-hero{
    min-height: calc(100svh - var(--header-h, 120px)) !important;
    height:      calc(100svh - var(--header-h, 120px)) !important;
  }
  .hero-video video,
  .HeroVideo video,
  .video-hero video{
    width:100%; height:100%; object-fit:cover; display:block;
  }
}
/* === Nav mobile : taille vraiment réduite + une seule ligne === */
@media (max-width: 768px){
  .nav{
    gap: 12px;
    flex-wrap: nowrap;      /* pas de retour à la ligne */
    white-space: nowrap;
  }
  .nav a{
    font-size: 12px;        /* plus petit qu’avant */
    letter-spacing: .02em;
    padding: 10px 0;
    line-height: 1;
  }
}

/* écrans plus étroits */
@media (max-width: 420px){
  .nav{ gap: 10px; }
  .nav a{ font-size: 11px; }
}
@media (max-width: 360px){
  .nav{ gap: 8px; }
  .nav a{ font-size: 10px; }
}
@media (max-width: 330px){
  .nav a{ font-size: 9.5px; }  /* mini, pour éviter toute coupure */
}
/* ==== Bandeau défilant top ==== */
.top-ticker{
  width: 100%;
  background: #fff;           /* fond blanc */
  color: #000;                /* texte noir */
  border-bottom: 1px solid rgba(0,0,0,.08);
  overflow: hidden;
  white-space: nowrap;
}
.top-ticker .ticker-track{
  display: inline-block;
  padding: 6px 0;
  animation: ticker-move 18s linear infinite;
}
.top-ticker .ticker-track span{
  margin: 0 20px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 13px;
}
@keyframes ticker-move{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Option : un peu plus compact sur mobile étroit */
@media (max-width: 390px){
  .top-ticker .ticker-track span{ margin: 0 16px; font-size: 12px; }
}
/* ====== 1) Tiroir panier : remonter le CTA ====== */
@media (max-width: 768px){
  /* pied du tiroir = zone du bouton */
  .cart-drawer__footer,
  .cd-footer,
  .drawer__footer{
    position: sticky;                 /* colle le footer à l'écran */
    bottom: calc(env(safe-area-inset-bottom, 0px) + 12px); /* remonte un peu + safe-area iOS */
    padding: 12px 16px !important;
    background: linear-gradient(180deg, rgba(15,15,15,0) 0%, rgba(15,15,15,.85) 40%, #0f0f0f 100%);
    z-index: 5;
  }

  /* le bouton lui-même */
  .cart-drawer__footer .btn,
  .cd-footer .btn,
  .drawer__footer .btn{
    width: 100%;
    margin: 0;
  }

  /* évite que le contenu passe sous le footer collant */
  .cart-drawer__body,
  .cd-body,
  .drawer__content{
    padding-bottom: 120px !important; /* marge sous la liste des articles */
  }
}

/* ====== 2) Banderole « First Drop » plus fine sur mobile ====== */
@media (max-width: 600px){
  .top-marquee{
    height: 34px;          /* plus fine */
    padding: 6px 0;        /* moins d'épaisseur */
    font-size: 15px;       /* texte un peu plus petit */
  }
  .top-marquee .dot{ margin: 0 10px; }
}
/* Layout du tiroir : colonne + scroll dans la liste d'articles */
.sh4de-cart-drawer{
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.cart-drawer-items{
  flex: 1 1 auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 140px; /* espace pour le footer collant */
}

/* Footer collant avec fond dégradé + bouton plein largeur */
.cart-drawer-footer{
  position: sticky;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(15,15,15,0) 0%,
                                       rgba(15,15,15,.85) 40%,
                                       #0f0f0f 100%);
  z-index: 5;
  border-top: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(2px);
}

.cart-drawer-checkout{
  width: 100%;
  margin: 0;
}

/* Sur mobile : un peu plus de marge visuelle */
@media (max-width: 768px){
  .cart-drawer-footer{
    bottom: calc(env(safe-area-inset-bottom, 0px) + 14px);
    padding: 12px 18px;
  }
  .cart-drawer-items{ padding-bottom: 150px; }
}
/* Version mobile : banderole plus fine */
@media (max-width: 600px){
  .top-marquee{
    height: 34px !important;
    padding: 6px 0 !important;
  }
  .top-marquee span,
  .top-marquee .marquee-text{
    font-size: 15px !important;
    letter-spacing: .04em;
  }
  .top-marquee .dot{ margin: 0 10px; }
}

/* Variante si ta banderole est l'Announcement Bar Shopify */
@media (max-width: 600px){
  .announcement-bar{
    min-height: 34px !important;
    padding: 6px 0 !important;
  }
  .announcement-bar__message{
    font-size: 15px !important;
    line-height: 1.2 !important;
    padding: 0 10px !important;
  }
}
/* Banderole ultra-fine sur mobile */
@media (max-width: 600px){
  /* Ta banderole perso */
  .top-marquee{
    height: 24px !important;
    min-height: 24px !important;
    padding: 3px 0 !important;
  }
  .top-marquee span,
  .top-marquee .marquee-text{
    font-size: 12.5px !important;
    line-height: 1 !important;
    letter-spacing: .05em;
  }
  .top-marquee .dot{ margin: 0 8px !important; }

  /* Banderole d’annonce Shopify (si c’est elle) */
  .announcement-bar{
    height: 24px !important;
    min-height: 24px !important;
    padding: 3px 0 !important;
  }
  .announcement-bar__message,
  .announcement-bar__link{
    font-size: 12.5px !important;
    line-height: 1 !important;
    padding: 0 10px !important;
    white-space: nowrap;
  }
}
/* ----- Cards produits arrondies sans fond ----- */

.product-card,
.product-card * {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Conteneur de la carte */
.product-card {
  border-radius: 22px !important; /* tu peux augmenter si tu veux plus rond */
  overflow: hidden; /* important pour couper les angles */
  padding: 0 !important;
}

/* Image du produit */
.product-card img {
  border-radius: 22px !important;
  overflow: hidden;
  display: block;
}

/* Zone texte : pas de fond */
.product-card .card__content,
.product-card .card-information {
  background: transparent !important;
  padding-top: 10px; 
}

/* Prix barré + prix actuel */
.product-card .price,
.product-card .price__sale,
.product-card .price__regular {
  background: transparent !important;
}
.pg-card{
  position: relative;
  border-radius: 24px;        /* même rayon que le blanc */
  overflow: hidden;           /* coupe les coins qui dépassent */
  background: #111111;        /* ou transparent si tu préfères */
  border: 0;                  /* enlève la bordure rectangulaire */
}
.pg-media{
  width: 100%;
  height: auto;
  background: #f7f9ff;  /* ton blanc */
}
.pg-media img{
  display:block;
  width:100%;
  height:auto;
}
/* ============================================================
   FIX GLOBAL : cartes produits avec coins arrondis PROPREMENT
   ============================================================ */

/* 1) Wrapper général : supprimer tout fond/bordure noir */
.product-card,
.product-card *,
.card,
.card * {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* 2) Carte produit elle-même */
.product-card,
.card {
  border-radius: 26px !important;   /* rayon propre et uniforme */
  overflow: hidden !important;      /* coupe les coins */
  padding: 0 !important;
  margin: 0 !important;
}

/* 3) Bloc visuel (fond blanc arrondi) */
.product-card .card__media,
.card .media,
.home-product-card .home-product-media,
.pg-card,
.pg-media {
  background: #f6f7fb !important;   /* ton blanc/gris clair */
  border-radius: 26px !important;
  overflow: hidden !important;
  border: none !important;
  padding: 0 !important;
}

/* 4) Image propre, sans arrondi interne (car c'est le parent qui arrondit) */
.product-card img,
.card img,
.pg-media img,
.home-product-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;            /* remplissage propre */
  border-radius: 0 !important;  /* pas d’arrondi ici */
  background: transparent !important;
}

/* 5) Zone d’information (titre + prix) sans fond */
.product-card .card__content,
.product-card .card-information,
.card .card__content,
.card .card-information,
.home-product-info {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding-left: 4px !important;
  padding-right: 4px !important;
}

/* 6) Prix et texte sans horizontale sombre */
.price,
.price *,
.product-card .price,
.card .price {
  background: transparent !important;
  border: none !important;
}

/* 7) Fix du “bas bizarre” (souvent causé par un pseudo-élément) */
.product-card::before,
.product-card::after,
.card::before,
.card::after {
  display: none !important;
  content: none !important;
}
/* =========================================================
   FIX CARTES PRODUIT : une seule carte blanche arrondie
   ========================================================= */

.pg-card{
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #f7f9ff !important;  /* même couleur que la “partie blanche” */
  border: 0 !important;
  box-shadow: none !important;      /* pas d’ombre rectangulaire autour */
}

/* La zone image n'ajoute plus un fond rectangulaire en plus */
.pg-media{
  width: 100%;
  height: auto;
  background: transparent !important;
  border-radius: 0 !important;
  border: 0 !important;
}

/* L'image remplit proprement l'espace */
.pg-media img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Option : zone texte sous la photo sur fond blanc aussi */
.pg-info,
.pg-card .card__content,
.pg-card .card-information{
  background: transparent !important;
  border: 0 !important;
}
/* ===== Badge rouge notification du panier ===== */
.header-cart-icon{
  position: relative;           /* permet de positionner la bulle */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-icon-emoji{
  font-size: 22px;
  line-height: 1;
}

/* La bulle rouge */
.cart-badge{
  position: absolute;
  top: -6px;
  right: -8px;

  min-width: 18px;
  height: 18px;
  padding: 0 5px;

  border-radius: 999px;
  background: #ff3b3b;          /* rouge notif */
  color: #ffffff;

  font-size: 10px;
  font-weight: 700;
  line-height: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 0 0 2px #000;   /* petit liseré noir pour bien ressortir */
}

/* Option : ajuster un peu sur mobile */
@media (max-width: 900px){
  .cart-badge{
    top: -2px;
    right: -2px;
  }
}
/* ==== 1) Désactiver la barre de défilement horizontale partout ==== */
html,
body {
  overflow-x: hidden !important;
}

/* ==== 2) Empêcher le lookbook de dépasser l'écran ==== */
/* Ta section full-bleed est déclarée en .lookbook--full dans ton thème */
.lookbook--full {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
}

/* Conteneur interne du lookbook : pas plus large que l'écran */
.lookbook--full .container,
.lookbook-full .container {
  max-width: 100vw !important;
  width: 100% !important;
}

/* Sécurité : aucune image ne dépasse en largeur */
.lookbook--full img,
.lookbook-full img {
  max-width: 100% !important;
  height: auto !important;
}
/* ===== CACHER LA BARRE DE SCROLL VERTICALE PARTOUT ===== */

/* Firefox */
html, body {
  scrollbar-width: none;      /* masque la barre mais garde le scroll */
}

/* Chrome, Edge, Safari */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  display: none;
}
/* Empêcher le zoom iOS quand on tape dans un champ  */
@media (max-width: 768px) {
  input,
  textarea,
  select,
  .cs-input,                 /* ton champ email coming soon */
  input[type="email"],
  input[type="password"],
  input[type="text"] {
    font-size: 16px !important;   /* seuil magique pour iOS */
  }
}
html, body {
  touch-action: manipulation;
}