/* =========================================================
   GAMING PREMIUM — BUMA template
   White dominant · Black structural · Red glow accents
   Adapté de gamertech-website (RED CORE) pour le storefront BUMA.
   ========================================================= */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --bg-mute: #eef0f3;
  --line: #e6e8ec;
  --line-strong: #d4d7dd;

  --ink: #0a0b0d;
  --ink-2: #1c1f24;
  --ink-3: #3a3d44;
  --ink-mute: #6b6f78;

  --red: #ed1c24;
  --red-hot: #ff2a32;
  --red-deep: #b00911;
  --red-soft: #ffe1e3;
  --red-bg: #fff4f5;

  --green: #18a957;
  --amber: #f3a712;
  --danger: #ef4444;

  --f-display: "Space Grotesk", "Rajdhani", system-ui, sans-serif;
  --f-head: "Space Grotesk", "Inter", system-ui, sans-serif;
  --f-body: "Inter", "Manrope", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --container: 1400px;
  --gutter: clamp(18px, 4vw, 56px);
  --radius: 10px;
  --radius-lg: 20px;

  --shadow-s: 0 2px 8px rgba(10, 11, 13, 0.04);
  --shadow-m: 0 14px 36px -12px rgba(10, 11, 13, 0.14);
  --shadow-l: 0 40px 80px -24px rgba(10, 11, 13, 0.22);
  --shadow-red: 0 14px 36px -10px rgba(237, 28, 36, 0.45);
  --glow-red: 0 0 80px -8px rgba(237, 28, 36, 0.55);
  --glow-red-soft: 0 0 60px -8px rgba(237, 28, 36, 0.35);
}

* { box-sizing: border-box; }
html, body {
  background: var(--bg);
  color: var(--ink);
  margin: 0;
  padding: 0;
}
body {
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.gt-locked { overflow: hidden; touch-action: none; }
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: var(--red); color: white; }

main { flex: 1; }

/* ============= Announce bar ============= */
.gt-announce {
  background: #ffffff;
  color: var(--ink);
  padding: 10px var(--gutter);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  z-index: 50;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.gt-announce-track,
.gt-announce-track span { color: inherit; }
.gt-announce-track strong { color: var(--red); font-weight: 600; }
.gt-announce-track .sep::before { color: var(--red); }
.gt-announce-track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: gt-marquee 36s linear infinite;
}
.gt-announce-track span { display: inline-flex; gap: 60px; align-items: center; }
.gt-announce-track strong { color: var(--red); font-weight: 600; }
.gt-announce-track .sep::before { content: "◆"; color: var(--red); font-size: 8px; }
@keyframes gt-marquee { to { transform: translateX(-50%); } }

/* ============= Nav (transparent → glass on scroll) ============= */
.gt-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px var(--gutter);
  display: flex;
  justify-content: center;
  transition: padding 0.4s var(--ease-out);
}
.gt-nav {
  width: 100%;
  max-width: var(--container);
  padding: 8px 14px 8px 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  position: relative;
  transition:
    background 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    backdrop-filter 0.45s var(--ease-out),
    padding 0.45s var(--ease-out);
}
.gt-nav-start,
.gt-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.gt-nav-start { justify-content: flex-start; }
.gt-nav-actions { justify-content: flex-end; }
.gt-nav .gt-brand {
  justify-self: center;
  margin: 0;
}
.gt-nav-mobile-only { display: none; }
.gt-menu-btn {
  border: none;
  background: transparent;
  box-shadow: none;
  width: 40px;
  height: 40px;
}
.gt-menu-btn:hover {
  border: none;
  background: var(--bg-soft);
  transform: none;
}
/* Subtle line + red marker under nav at rest */
.gt-nav::before {
  content: "";
  position: absolute;
  left: 22px; right: 22px; bottom: -10px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
  transition: opacity 0.4s;
  opacity: 1;
}
.gt-nav::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -12px;
  width: 6px; height: 6px;
  background: var(--red);
  transform: translateX(-50%) rotate(45deg);
  box-shadow: 0 0 10px var(--red), 0 0 0 3px var(--bg);
  transition: opacity 0.4s, transform 0.4s;
  opacity: 1;
}
.gt-nav-wrap.scrolled { padding: 12px var(--gutter); }
.gt-nav-wrap.scrolled .gt-nav {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-color: rgba(255, 255, 255, 0.65);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 0 1px rgba(10, 11, 13, 0.04),
    0 16px 40px -16px rgba(10, 11, 13, 0.2),
    0 4px 14px -6px rgba(10, 11, 13, 0.08);
  padding: 10px 14px 10px 22px;
}
.gt-nav-wrap.scrolled .gt-nav::before,
.gt-nav-wrap.scrolled .gt-nav::after { opacity: 0; }
.gt-nav-wrap.scrolled::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -30%);
  width: 60%; height: 40px;
  background: radial-gradient(ellipse, rgba(237, 28, 36, 0.12), transparent 60%);
  pointer-events: none;
  z-index: -1;
  filter: blur(22px);
}
.gt-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: 0;
  font-size: 16px;
  color: var(--ink);
}
.gt-brand-mark {
  /* <img> avec hauteur fixe → tous les logos rendent à la même hauteur
     quel que soit le ratio d'aspect (carré, paysage, portrait).
     Le navigateur préserve le ratio naturel de l'image. */
  display: block;
  height: var(--header-logo-height, 54px);
  width: auto;
  max-width: 300px;
  object-fit: contain;
  object-position: center left;
  flex-shrink: 0;
}
/* Footer : même règle, version un peu plus généreuse. */
.gt-footer-brand .gt-brand-mark { height: 56px; max-width: 320px; }
/* Logo embeds the wordmark → hide brand text by default */
.gt-brand-text { display: none; }
.gt-brand-accent { color: var(--red); }

.gt-nav-search {
  flex: 1;
  max-width: 460px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.gt-nav-search:focus-within {
  border-color: var(--ink);
  background: white;
  box-shadow: 0 0 0 4px rgba(10, 11, 13, 0.06);
}
.gt-nav-search > svg { width: 18px; height: 18px; flex-shrink: 0; }
.gt-nav-search input {
  border: none; outline: none; background: transparent;
  width: 100%; font: inherit; font-size: 15px; color: var(--ink);
}
.gt-nav-search input::placeholder { color: var(--ink-mute); }
.gt-nav-search kbd {
  font-family: var(--f-mono); font-size: 11px;
  padding: 3px 7px; background: white;
  border: 1px solid var(--line); border-radius: 4px;
  color: var(--ink-mute);
}

.gt-nav-actions { display: flex; align-items: center; gap: 8px; }
.gt-icon-btn {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  background: white; border-radius: 50%;
  position: relative; color: var(--ink);
  transition: border-color 0.2s, transform 0.2s, color 0.2s, box-shadow 0.2s;
}
.gt-icon-btn:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-s);
}
.gt-icon-btn .gt-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  background: var(--red);
  color: white;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  display: grid; place-items: center;
  border-radius: 999px;
  box-shadow: 0 0 0 2px white, 0 4px 14px rgba(237, 28, 36, 0.45);
}

/* Navbar — légèrement agrandi sur desktop uniquement
   (scopé .gt-nav pour ne pas toucher les .gt-icon-btn ailleurs ;
    encapsulé dans un min-width pour ne pas écraser les tailles mobiles). */
@media (min-width: 901px) {
  .gt-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }
  .gt-nav-start { display: none; }
  .gt-nav .gt-brand { justify-self: auto; flex-shrink: 0; }
  .gt-nav-search { display: flex; flex: 1; max-width: 460px; }
  .gt-nav .gt-icon-btn {
    width: 48px; height: 48px;
    border: 1px solid var(--line);
    background: white;
  }
  .gt-nav .gt-icon-btn svg { width: 20px; height: 20px; }
  .gt-nav .gt-icon-btn .gt-badge {
    min-width: 22px; height: 22px;
    font-size: 12px;
    top: -6px; right: -6px;
  }
}

/* ============= Drawer (menu burger mobile) ============= */
.gt-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}
.gt-drawer[hidden] { display: none; }
.gt-drawer-panel {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: min(84vw, 340px);
  background: #ffffff;
  padding: 18px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transform: translateX(-100%);
  transition: transform 0.32s var(--ease-out);
  box-shadow: 0 20px 60px -10px rgba(10, 11, 13, 0.35);
  overflow-y: auto;
  pointer-events: auto;
  -webkit-overflow-scrolling: touch;
}
.gt-drawer.is-open .gt-drawer-panel { transform: translateX(0); }
.gt-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.gt-drawer-head .gt-brand-mark { height: 32px; }
.gt-drawer-head .gt-icon-btn {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  width: 36px;
  height: 36px;
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
}
.gt-drawer-head .gt-icon-btn:hover {
  border-color: var(--ink);
  background: white;
  transform: none;
  box-shadow: none;
}
.gt-drawer-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gt-drawer-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  border-radius: 10px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition: background 0.18s, color 0.18s;
}
.gt-drawer-links a:hover,
.gt-drawer-links a:focus-visible {
  background: var(--bg-soft);
  color: var(--red);
}
.gt-drawer-links a svg {
  width: 18px;
  height: 18px;
  color: var(--ink-mute);
  flex-shrink: 0;
}
.gt-drawer-links a:hover svg { color: var(--red); }

/* ============= Typography ============= */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin: 0;
}
p { margin: 0; }
.gt-eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.gt-eyebrow::before {
  content: ""; width: 22px; height: 1px;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
}
.gt-title-accent { color: var(--red); }
.gt-title-mute { color: var(--ink-mute); }
.gt-lead { max-width: 580px; color: var(--ink-mute); font-size: 18px; line-height: 1.6; }

/* ============= Section / layout ============= */
.gt-section {
  position: relative;
  padding: clamp(48px, 7vw, 90px) var(--gutter);
}
.gt-container { max-width: var(--container); margin: 0 auto; }
.gt-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gt-section-head .gt-head-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 720px;
}
.gt-section-link {
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.gt-section-link:hover {
  background: var(--ink); color: white;
  box-shadow: 0 8px 24px -8px rgba(10, 11, 13, 0.4);
}
.gt-section-link .arr { transition: transform 0.3s; }
.gt-section-link:hover .arr { transform: translateX(4px); }

/* ============= Buttons ============= */
.gt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.03em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.gt-btn-primary {
  background: var(--red);
  color: white;
  box-shadow: var(--shadow-red);
}
.gt-btn-primary:hover {
  background: var(--red-hot);
  transform: translateY(-2px);
  box-shadow: 0 22px 40px -10px rgba(237, 28, 36, 0.55), 0 0 60px rgba(237, 28, 36, 0.3);
  color: white;
}
.gt-btn-dark { background: var(--ink); color: white; }
.gt-btn-dark:hover { background: black; transform: translateY(-1px); color: white; }
.gt-btn-ghost {
  background: white;
  color: var(--ink);
  border-color: var(--line-strong);
}
.gt-btn-ghost:hover { border-color: var(--ink); box-shadow: var(--shadow-s); }
.gt-btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.gt-btn-outline:hover { border-color: var(--ink); color: var(--ink); }
.gt-btn .arr { display: inline-block; transition: transform 0.3s var(--ease-out); }
.gt-btn:hover .arr { transform: translateX(4px); }
.gt-btn-sm { padding: 10px 18px; font-size: 13px; }
.gt-btn-lg { padding: 17px 32px; font-size: 16px; }
.gt-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }

/* ============= Hero ============= */
.gt-hero {
  padding: clamp(20px, 2.5vw, 36px) var(--gutter) clamp(28px, 3vw, 48px);
  background: var(--bg);
}
.gt-hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
  min-height: 580px;
}
.gt-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 20px 0;
}
.gt-hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 6px 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px; font-weight: 500;
  color: var(--ink-3); width: fit-content;
  background: white;
}
.gt-hero-pill .tag {
  background: var(--ink); color: white;
  padding: 4px 10px; border-radius: 999px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.15em;
}
.gt-hero-pill .dot {
  width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.25), 0 0 8px var(--red);
  animation: gt-pulse 1.6s infinite;
}
@keyframes gt-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.25); }
}
.gt-hero h1 {
  font-size: clamp(40px, 5.2vw, 82px);
  letter-spacing: -0.04em;
  font-weight: 700;
  line-height: 0.98;
}
.gt-hero h1 .accent {
  color: var(--red);
  font-style: italic;
  text-shadow: 0 0 60px rgba(237, 28, 36, 0.35);
}
.gt-hero-desc {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 500px;
}
.gt-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.gt-hero-meta {
  display: flex;
  gap: 36px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.gt-hero-meta .m { display: flex; flex-direction: column; gap: 2px; }
.gt-hero-meta .v {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
}
.gt-hero-meta .v small { font-size: 15px; color: var(--red); font-weight: 600; }
.gt-hero-meta .k {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Hero showcase */
.gt-hero-showcase {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: visible;
  padding: 28px;
}
.gt-hero-showcase::before {
  content: "";
  position: absolute;
  inset: 8%;
  background:
    radial-gradient(circle at 50% 50%, rgba(237, 28, 36, 0.55), transparent 55%),
    radial-gradient(ellipse at 30% 65%, rgba(237, 28, 36, 0.3), transparent 65%);
  filter: blur(60px);
  z-index: 0;
  animation: gt-glow 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes gt-glow {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.gt-hero-pc {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 560px;
  animation: gt-floatY 6s ease-in-out infinite;
}
@keyframes gt-floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.gt-hero-pc model-viewer {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  background: transparent;
  outline: none;
  --poster-color: transparent;
}
.gt-hero-model-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(10, 11, 13, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 18px 50px rgba(10, 11, 13, 0.12);
  pointer-events: none;
  transition: opacity 0.25s var(--ease-out), visibility 0.25s var(--ease-out);
}
.gt-hero-model-loader::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(237, 28, 36, 0.18);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: gt-spin 1s linear infinite;
}
.gt-hero-model-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
@keyframes gt-spin { to { transform: rotate(360deg); } }
.gt-hero-pc-img {
  width: 100%;
  max-height: 580px;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(10, 11, 13, 0.35)) drop-shadow(0 0 60px rgba(237, 28, 36, 0.35));
}
.gt-hero-shadow {
  position: absolute;
  left: 14%; right: 14%;
  bottom: 8%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.35), transparent 65%);
  filter: blur(14px);
  z-index: 1;
}

/* ============= Open-box frame autour du rendu 3D =============
   Une "boîte ouverte" : 4 coins en équerre (style HUD), un plancher
   en perspective qui suggère qu'on regarde dans la boîte, et un petit
   label monospace. Pas de fond opaque ni d'overflow → le modèle 3D
   est entièrement visible. */
.gt-hero-showcase.gt-openbox { padding: clamp(20px, 3vw, 44px); }
.gt-openbox-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.gt-openbox-corner {
  position: absolute;
  width: clamp(34px, 4vw, 52px);
  height: clamp(34px, 4vw, 52px);
  border: 0 solid var(--ink);
  opacity: 0.78;
}
.gt-openbox-corner::after {
  content: "";
  position: absolute;
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.18), 0 0 10px var(--red);
}
.gt-openbox-corner.tl {
  top: 0; left: 0;
  border-top-width: 2px;
  border-left-width: 2px;
  border-top-left-radius: 4px;
}
.gt-openbox-corner.tl::after { top: -3px; left: -3px; }
.gt-openbox-corner.tr {
  top: 0; right: 0;
  border-top-width: 2px;
  border-right-width: 2px;
  border-top-right-radius: 4px;
}
.gt-openbox-corner.tr::after { top: -3px; right: -3px; }
.gt-openbox-corner.bl {
  bottom: 0; left: 0;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-bottom-left-radius: 4px;
}
.gt-openbox-corner.bl::after { bottom: -3px; left: -3px; }
.gt-openbox-corner.br {
  bottom: 0; right: 0;
  border-bottom-width: 2px;
  border-right-width: 2px;
  border-bottom-right-radius: 4px;
}
.gt-openbox-corner.br::after { bottom: -3px; right: -3px; }

/* Plancher en perspective : un trapèze subtil qui donne la sensation
   d'une boîte ouverte vers la caméra. */
.gt-openbox-floor {
  position: absolute;
  left: 50%;
  bottom: 6%;
  transform: translateX(-50%) perspective(800px) rotateX(64deg);
  transform-origin: center top;
  width: 72%;
  height: 140px;
  background:
    linear-gradient(180deg, rgba(10, 11, 13, 0.05) 0%, transparent 70%),
    repeating-linear-gradient(
      90deg,
      rgba(10, 11, 13, 0.06) 0 1px,
      transparent 1px 60px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(10, 11, 13, 0.04) 0 1px,
      transparent 1px 40px
    );
  border-top: 1px dashed rgba(10, 11, 13, 0.18);
  border-radius: 50% 50% 8px 8px / 18% 18% 8px 8px;
  pointer-events: none;
  z-index: 0;
  filter: blur(0.4px);
  opacity: 0.55;
}

.gt-openbox-tag {
  position: absolute;
  top: clamp(10px, 1.4vw, 18px);
  left: clamp(48px, 5vw, 70px);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  z-index: 3;
  pointer-events: none;
}

/* ============= Hero carousel (desktop split slides) ============= */
.gt-hero-carousel {
  position: relative;
  width: 100%;
  height: clamp(520px, 72vh, 760px);
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 48%, #f4f5f7 48%, #f8f9fb 100%);
  border-top: 1px solid rgba(10, 11, 13, 0.04);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}
.gt-hero-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0, rgba(10, 11, 13, 0.05) 48%, transparent 49%),
    repeating-linear-gradient(90deg, rgba(10, 11, 13, 0.035) 0 1px, transparent 1px 112px);
  opacity: 0.45;
}
.gt-hero-carousel-track {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}
.gt-hero-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  display: grid;
  align-items: stretch;
  padding: clamp(28px, 4vw, 56px) var(--gutter) clamp(46px, 5vw, 72px);
  overflow: hidden;
}
.gt-hero-carousel-shell {
  width: 100%;
  max-width: var(--container);
  height: 100%;
  margin: 0 auto;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(32px, 5vw, 88px);
  align-items: center;
  position: relative;
}
.gt-hero-carousel-slide.no-image .gt-hero-carousel-shell {
  grid-template-columns: minmax(300px, 0.88fr) minmax(360px, 0.9fr);
}
.gt-hero-carousel-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 560px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.gt-hero-carousel-content .gt-hero-pill {
  background: white;
  border-color: var(--line);
  color: var(--ink-3);
  box-shadow: var(--shadow-s);
}
.gt-hero-carousel-content .gt-hero-pill .tag {
  font-size: var(--gt-carousel-badge-size, 10px);
}
.gt-hero-carousel-title {
  font-size: var(--gt-carousel-title-size, clamp(36px, 5.5vw, 80px));
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: var(--ink);
  margin: 0;
  max-width: 760px;
}
.gt-hero-carousel-title .accent {
  color: var(--red);
  font-style: italic;
}
.gt-hero-carousel-subtitle {
  font-size: var(--gt-carousel-subtitle-size, clamp(15px, 1.3vw, 18px));
  color: var(--ink-3);
  max-width: 540px;
  line-height: 1.55;
  margin: 0;
}
.gt-hero-carousel-content .gt-hero-actions {
  margin-top: 8px;
}
.gt-hero-carousel-content .gt-btn {
  font-size: var(--gt-carousel-cta-size, 16px);
}
.gt-hero-carousel-media {
  position: relative;
  z-index: 2;
  min-height: clamp(380px, 52vh, 620px);
  height: 100%;
  display: grid;
  place-items: center end;
  isolation: isolate;
}
.gt-hero-carousel-media::before {
  content: "";
  position: absolute;
  inset: 9% 0 5% 10%;
  z-index: -1;
  border: 1px solid rgba(10, 11, 13, 0.06);
  background:
    linear-gradient(135deg, rgba(237, 28, 36, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(10, 11, 13, 0.04), rgba(10, 11, 13, 0.015));
  transform: skewX(-7deg);
}
.gt-hero-carousel-media::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 5%;
  z-index: -1;
  width: 64%;
  height: 12%;
  background: radial-gradient(ellipse, rgba(10, 11, 13, 0.28), transparent 68%);
  filter: blur(14px);
}
.gt-hero-carousel-image {
  width: min(100%, 760px);
  max-height: clamp(360px, 56vh, 650px);
  object-fit: contain;
  object-position: center right;
  margin-left: auto;
  transform: translateX(clamp(0px, 2vw, 24px));
  filter: drop-shadow(0 34px 60px rgba(10, 11, 13, 0.26));
}
.gt-hero-carousel-media-fallback {
  width: min(100%, 340px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  color: var(--red);
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.gt-hero-carousel-slide.is-full-media {
  background: #07080a;
}
.gt-hero-carousel-slide.is-full-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.78) 0%, rgba(5, 6, 8, 0.44) 46%, rgba(5, 6, 8, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 6, 8, 0.34), rgba(5, 6, 8, 0.08));
}
.gt-hero-carousel-slide.is-full-media.tone-dark::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86) 0%, rgba(255, 255, 255, 0.58) 42%, rgba(255, 255, 255, 0.14) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
}
.gt-hero-carousel-bg,
.gt-hero-carousel-bg-image,
.gt-hero-carousel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.gt-hero-carousel-bg {
  z-index: 0;
  overflow: hidden;
}
.gt-hero-carousel-bg-image,
.gt-hero-carousel-video {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.03);
}
.gt-hero-carousel-slide.is-full-media .gt-hero-carousel-shell {
  grid-template-columns: 1fr;
  max-width: var(--container);
  align-items: center;
  justify-items: start;
}
.gt-hero-carousel-slide.is-full-media .gt-hero-carousel-content {
  max-width: min(680px, 55vw);
  padding: clamp(18px, 2vw, 28px) 0;
}
.gt-hero-carousel-slide.is-full-media.tone-light .gt-hero-carousel-content,
.gt-hero-carousel-slide.is-full-media.tone-light .gt-hero-carousel-title,
.gt-hero-carousel-slide.is-full-media.tone-light .gt-hero-carousel-subtitle {
  color: #fff;
}
.gt-hero-carousel-slide.is-full-media.tone-light .gt-hero-pill {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: none;
}
.gt-hero-carousel-slide.is-full-media.text-center .gt-hero-carousel-shell {
  justify-items: center;
}
.gt-hero-carousel-slide.is-full-media.text-center .gt-hero-carousel-content {
  align-items: center;
  text-align: center;
  max-width: min(760px, 72vw);
}
.gt-hero-carousel-slide.is-full-media.text-right .gt-hero-carousel-shell {
  justify-items: end;
}
.gt-hero-carousel-slide.is-full-media.text-right .gt-hero-carousel-content {
  align-items: flex-end;
  text-align: right;
}
.gt-hero-carousel-arrow {
  position: absolute;
  right: var(--gutter);
  bottom: 28px;
  transform: none;
  z-index: 10;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.gt-hero-carousel-arrow:hover {
  background: white;
  transform: translateY(-2px);
  border-color: var(--ink);
}
.gt-hero-carousel-arrow.prev { left: auto; right: calc(var(--gutter) + 60px); }
.gt-hero-carousel-arrow.next { right: var(--gutter); }
.gt-hero-carousel-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.gt-hero-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: rgba(10, 11, 13, 0.22);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}
.gt-hero-carousel-dot:hover { background: rgba(10, 11, 13, 0.45); }
.gt-hero-carousel-dot.active {
  background: var(--red);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(237, 28, 36, 0.6);
}

@media (max-width: 1100px) and (min-width: 901px) {
  .gt-hero-carousel {
    height: clamp(500px, 66vh, 680px);
  }
  .gt-hero-carousel-shell {
    grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1fr);
    gap: 28px;
  }
  .gt-hero-carousel-title {
    font-size: clamp(34px, 5vw, 58px);
  }
  .gt-hero-carousel-media {
    min-height: 360px;
  }
  .gt-hero-carousel-image {
    max-height: 520px;
    transform: none;
  }
}
@media (max-width: 900px) {
  .gt-hero-carousel {
    display: none;
  }
}

/* ============= Trust bar ============= */
.gt-trust {
  border-top: 1px solid var(--line);
  background: white;
}
/* Si suivi par cat-strip, pas de double séparateur */
.gt-trust + .gt-cat-strip { border-top: none; }
.gt-trust:not(:has(+ .gt-cat-strip)) { border-bottom: 1px solid var(--line); }
.gt-trust-row {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gt-trust-track { display: contents; }
.gt-trust-group { display: contents; }
.gt-trust-group[aria-hidden="true"] { display: none; }
.gt-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}
.gt-trust-item:last-child { border-right: none; }
.gt-trust-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--red-bg);
  color: var(--red);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--bg);
}
.gt-trust-icon svg { width: 21px; height: 21px; }
.gt-trust-text strong { font-size: 14.5px; display: block; color: var(--ink); font-weight: 600; }
.gt-trust-text span { font-size: 13.5px; color: var(--ink-mute); }

/* ============= Cat strip pills ============= */
.gt-cat-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px var(--gutter);
}
.gt-cat-strip-row {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.gt-cat-strip-row::-webkit-scrollbar { display: none; }
.gt-cat-strip-track { display: contents; }
.gt-cat-strip-group { display: contents; }
.gt-cat-strip-group[aria-hidden="true"] { display: none; }
.gt-cat-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14.5px; font-weight: 500;
  color: var(--ink-3);
  white-space: nowrap;
  transition: all 0.25s var(--ease-out);
}
.gt-cat-pill:hover {
  border-color: var(--ink); color: var(--ink);
  transform: translateY(-1px);
  box-shadow: var(--shadow-s);
}
.gt-cat-pill.active {
  background: var(--ink); color: white; border-color: var(--ink);
  box-shadow: 0 6px 20px -6px rgba(10, 11, 13, 0.4);
}
.gt-cat-pill svg { color: var(--red); width: 16px; height: 16px; }
.gt-cat-pill.active svg { color: var(--red); filter: drop-shadow(0 0 4px var(--red)); }

/* ============= Categories grid ============= */
.gt-cats {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 16px;
}

/* Grille catégories — page dédiée (toutes les catégories du site).
   Auto-fit : s'adapte au nombre réel d'éléments sans dépendre d'une classe `--nX`. */
.gt-cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 260px;
  gap: 16px;
}
/* Adaptatif au nombre de cards visibles (sélecteur composé pour battre les media queries) */
.gt-cats.gt-cats--n1 {
  grid-template-columns: 1fr;
  grid-template-rows: 320px;
}
.gt-cats.gt-cats--n1 .gt-cat-card.feature { grid-row: auto; grid-column: auto; }

.gt-cats.gt-cats--n2 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px;
}
.gt-cats.gt-cats--n2 .gt-cat-card.feature { grid-row: auto; grid-column: auto; }

.gt-cats.gt-cats--n3 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px;
}
.gt-cats.gt-cats--n3 .gt-cat-card.feature { grid-row: auto; grid-column: auto; }

.gt-cats.gt-cats--n4 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 240px;
}
.gt-cats.gt-cats--n4 .gt-cat-card.feature { grid-row: auto; grid-column: auto; }

.gt-cat-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: white;
  isolation: isolate;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
}
.gt-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-l), var(--glow-red-soft);
  color: white;
}
.gt-cat-card.feature { grid-row: span 2; }
.gt-cat-card-img {
  position: absolute; inset: 0; z-index: -2;
  transition: transform 1s var(--ease-out);
}
.gt-cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gt-cat-card:hover .gt-cat-card-img { transform: scale(1.08); }
.gt-cat-card::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 80% 20%, rgba(237, 28, 36, 0.45), transparent 50%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
}
.gt-cat-num {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--red);
  font-weight: 600;
  text-shadow: 0 0 12px rgba(237, 28, 36, 0.6);
}
.gt-cat-card-foot {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px;
}
.gt-cat-title {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
}
.gt-cat-card.feature .gt-cat-title { font-size: clamp(28px, 3vw, 42px); }
.gt-cat-meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}
.gt-cat-meta strong { color: white; font-weight: 600; }
.gt-cat-arrow {
  width: 42px; height: 42px;
  background: white;
  color: var(--ink);
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s, box-shadow 0.3s;
}
.gt-cat-card:hover .gt-cat-arrow {
  transform: translate(4px, -4px);
  background: var(--red);
  color: white;
  box-shadow: 0 0 30px rgba(237, 28, 36, 0.6);
}

.gt-category-hero-img {
  width: 100%;
  aspect-ratio: 16 / 5;
  margin: -10px 0 32px;
  overflow: visible;
  border: 1px solid rgba(10, 11, 13, 0.08);
  border-radius: 0;
  background: var(--soft);
}
.gt-category-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ============= Products grid + cards ============= */
.gt-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.gt-filter {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-3);
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}
.gt-filter:hover, .gt-filter.active {
  background: var(--ink); color: white; border-color: var(--ink);
  box-shadow: 0 6px 16px -6px rgba(10, 11, 13, 0.3);
}
.gt-filter.active::before { content: "•"; color: var(--red); margin-right: 4px; }

.gt-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gt-product {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.3s, box-shadow 0.4s, transform 0.4s var(--ease-out);
  isolation: isolate;
  overflow: hidden;
  height: 100%;
}
.gt-product:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-l), 0 0 60px -20px rgba(237, 28, 36, 0.4);
  transform: translateY(-4px);
}
.gt-product-badges {
  position: absolute;
  top: 22px; left: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
}
.gt-badge-promo, .gt-badge-new, .gt-badge-hot, .gt-badge-out {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.gt-badge-promo {
  background: var(--red); color: white;
  box-shadow: 0 4px 14px -2px rgba(237, 28, 36, 0.5);
}
.gt-badge-new { background: var(--ink); color: white; }
.gt-badge-hot { background: var(--amber); color: var(--ink); }
.gt-badge-out { background: var(--ink-mute); color: white; }
.gt-badge-condition {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(237, 28, 36, 0.28);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--red);
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  padding: 5px 8px;
  text-transform: uppercase;
  box-shadow: 0 8px 22px -18px rgba(0, 0, 0, 0.45);
}
.gt-badge-condition-detail {
  margin-bottom: 12px;
  font-size: 11px;
  padding: 7px 10px;
}
.gt-product-fav {
  position: absolute;
  top: 22px; right: 22px;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  z-index: 3;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.gt-product-fav svg {
  display: block;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  pointer-events: none;
}
.gt-product-fav:hover {
  color: var(--red);
  border-color: var(--red);
  transform: scale(1.06);
}
.gt-product-img {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: transparent;
  isolation: isolate;
  display: block;
  padding: 0;
  line-height: 0;
}
.gt-product-img::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 70% 30%, rgba(237, 28, 36, 0.5), transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(237, 28, 36, 0.2), transparent 60%);
  z-index: 1;
  opacity: 0.7;
  transition: opacity 0.5s;
}
.gt-product:hover .gt-product-img::before { opacity: 1; }
.gt-product-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
  z-index: 0;
  position: relative;
  filter: contrast(1.05) saturate(1.05);
}
.gt-product-img.has-gallery {
  touch-action: pan-y;
  cursor: grab;
}
.gt-product-img.has-gallery.is-dragging {
  cursor: grabbing;
}
.gt-product-card-track {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 100%;
  transition: transform 0.22s var(--ease-out);
  will-change: transform;
}
.gt-product-card-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
  line-height: 0;
}
.gt-product-card-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
}
.gt-product-card-dots {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 7px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 4px;
  pointer-events: none;
}
.gt-product-card-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(10, 11, 13, 0.28);
  transition: width 0.18s var(--ease-out), background 0.18s var(--ease-out);
}
.gt-product-card-dot.is-active {
  width: 12px;
  background: var(--red);
}
.gt-product-img-empty {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 36px;
}
.gt-product:hover .gt-product-img img { transform: none; }
.gt-product-info { padding: 0 4px; display: flex; flex-direction: column; gap: 6px; }
.gt-product-cat {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  font-family: var(--f-mono);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.gt-product-cat-img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}
.gt-product-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gt-product-name {
  --gt-product-name-font-size: 19px;
  --gt-product-name-line-height: 1.22;
  --gt-product-name-height: 46.4px;
  font-family: var(--f-display);
  font-size: var(--gt-product-name-font-size);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: var(--gt-product-name-line-height);
  height: var(--gt-product-name-height);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gt-product-name a { color: inherit; }
.gt-product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: var(--ink-mute);
}
.gt-stars { color: var(--amber); letter-spacing: 1px; font-size: 14.5px; }
.gt-product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 12px 4px 0;
  border-top: 1px solid var(--line);
  gap: 10px;
}
.gt-product-price { display: flex; flex-direction: column; gap: 2px; }
.gt-product-price .now {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.gt-product-price .was {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--ink-mute);
  text-decoration: line-through;
}
.gt-product-stock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: var(--green);
  font-weight: 500;
  padding: 0 4px;
}
.gt-product-stock::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(24, 169, 87, 0.18);
}
.gt-product-stock.low { color: var(--amber); }
.gt-product-stock.low::before {
  background: var(--amber);
  box-shadow: 0 0 0 3px rgba(243, 167, 18, 0.18);
}
.gt-product-stock.out { color: var(--danger); }
.gt-product-stock.out::before {
  background: var(--danger);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18);
}
.gt-add-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: var(--red);
  color: white;
  border: 1px solid var(--red);
  border-radius: 999px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.03em;
  transition: all 0.25s;
}
.gt-add-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -6px rgba(237, 28, 36, 0.45);
  color: white;
}
.gt-add-btn:disabled {
  background: #eef0f3;
  border-color: #d7dbe2;
  color: #5f6670;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.gt-add-btn svg { width: 16px; height: 16px; }

/* ===== Animation "ajouté au panier" sur le bouton lui-même ===== */
.gt-add-btn.is-pressed { transform: scale(0.94); transition: transform 0.12s var(--ease-out); }

@keyframes gt-add-bounce {
  0%   { transform: scale(1); }
  25%  { transform: scale(0.92); }
  55%  { transform: scale(1.08); }
  80%  { transform: scale(0.98); }
  100% { transform: scale(1); }
}
.gt-add-btn.is-added {
  animation: gt-add-bounce 0.7s var(--ease-out);
  background: var(--green) !important;
  border-color: var(--green) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 26px -6px rgba(24, 169, 87, 0.5) !important;
  pointer-events: none;
}
.gt-add-btn .gt-add-label { display: inline-flex; align-items: center; gap: 8px; transition: opacity 0.18s ease; }
.gt-add-btn .gt-add-success {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: inherit;
  letter-spacing: inherit;
}
.gt-add-btn .gt-add-success svg { width: 16px; height: 16px; }
.gt-add-btn.is-added .gt-add-label { opacity: 0; }
.gt-add-btn.is-added .gt-add-success {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.22s ease 0.08s, transform 0.22s var(--ease-out) 0.08s;
}

/* Effet "added" pour les CTA primaires/ghost de la page détail produit */
@keyframes gt-cta-pop {
  0%   { transform: scale(1); }
  35%  { transform: scale(0.96); }
  60%  { transform: scale(1.04); box-shadow: 0 18px 40px -10px rgba(24, 169, 87, 0.55); }
  100% { transform: scale(1); }
}
.gt-btn.is-added {
  animation: gt-cta-pop 0.55s var(--ease-out);
  background: var(--green) !important;
  border-color: var(--green) !important;
  color: white !important;
  box-shadow: 0 18px 40px -10px rgba(24, 169, 87, 0.45);
}
.gt-icon-btn.is-added {
  animation: gt-cta-pop 0.55s var(--ease-out);
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 0 0 4px rgba(24, 169, 87, 0.15);
}

/* ============= Brands strip ============= */
.gt-brands {
  padding: 40px var(--gutter);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}
.gt-brands-row {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.gt-brands-label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.gt-brand-logo {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  opacity: 0.5;
  transition: opacity 0.25s, color 0.25s, text-shadow 0.25s;
  letter-spacing: 0.1em;
}
.gt-brand-logo:hover {
  opacity: 1; color: var(--red);
  text-shadow: 0 0 20px rgba(237, 28, 36, 0.4);
}

/* ============= Footer ============= */
.gt-footer {
  padding: 56px var(--gutter) 24px;
  background: white;
  border-top: 1px solid var(--line);
  position: relative;
}
.gt-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 80px; height: 3px;
  background: var(--red);
  transform: translateX(-50%);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 0 16px var(--red);
}
.gt-footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px 56px;
  align-items: flex-start;
}
/* Avec contact : 3 colonnes côte à côte (brand | boutique | contact) */
.gt-footer-grid.has-contact {
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-areas: "brand shop contact";
  gap: 36px 48px;
}
.gt-footer-grid.has-contact .gt-footer-brand { grid-area: brand; }
.gt-footer-grid.has-contact .gt-footer-col:nth-child(2) { grid-area: shop; }
.gt-footer-grid.has-contact .gt-footer-col:nth-child(3) { grid-area: contact; }
.gt-footer-brand { max-width: 380px; }
.gt-footer-brand p { color: var(--ink-mute); font-size: 13px; margin-top: 12px; line-height: 1.6; }
.gt-footer-socials { display: flex; gap: 8px; margin-top: 18px; }
.gt-footer-col h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
  font-weight: 600;
}
.gt-footer-col ul { list-style: none; margin: 0; padding: 0; }
.gt-footer-col li { margin-bottom: 10px; }
.gt-footer-col a {
  font-size: 13px;
  color: var(--ink-3);
  transition: color 0.2s, padding 0.25s;
}
.gt-footer-col a:hover { color: var(--red); padding-left: 4px; }
.gt-footer-bottom {
  max-width: var(--container);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--ink-mute);
}
.gt-footer-pay { display: flex; gap: 8px; flex-wrap: wrap; }
.gt-pay {
  padding: 4px 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.1em;
}

/* ============= Common UI: alerts, empty state, breadcrumb, forms, panels ============= */
.gt-flash-stack {
  max-width: var(--container);
  margin: 16px auto 0;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gt-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: white;
  color: var(--ink-2);
  font-size: 14px;
}
.gt-alert.is-success {
  border-color: rgba(24, 169, 87, 0.35);
  background: rgba(24, 169, 87, 0.08);
  color: #0f5c30;
}
.gt-alert.is-warning {
  border-color: rgba(243, 167, 18, 0.4);
  background: rgba(243, 167, 18, 0.1);
  color: #7a4d05;
}
.gt-alert.is-danger {
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.1);
  color: #7a1d1d;
}
.gt-alert-close {
  border: none; background: transparent; color: inherit;
  font-size: 18px; cursor: pointer; padding: 0 6px;
}

.gt-empty {
  background: var(--bg-soft);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  text-align: center;
  padding: 64px 24px;
  color: var(--ink-mute);
}
.gt-empty h3 { margin: 12px 0 8px; color: var(--ink); }
.gt-empty p { color: var(--ink-mute); max-width: 480px; margin: 0 auto 18px; }

.gt-breadcrumb {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.gt-breadcrumb a { color: var(--ink-mute); }
.gt-breadcrumb a:hover { color: var(--ink); }
.gt-breadcrumb .sep { color: var(--line-strong); }
.gt-breadcrumb .current { color: var(--ink); }

.gt-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-s);
}

.gt-form-grid { display: grid; gap: 16px; }
.gt-form-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.gt-form-row { display: flex; flex-direction: column; gap: 6px; }
.gt-form-row label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.gt-form-row input,
.gt-form-row textarea,
.gt-form-row select {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.gt-form-row input:focus,
.gt-form-row textarea:focus,
.gt-form-row select:focus {
  border-color: var(--ink);
  background: white;
  box-shadow: 0 0 0 4px rgba(10, 11, 13, 0.06);
}
.gt-form-row textarea { resize: vertical; min-height: 90px; }

/* ============= Filter pills (catalog) ============= */
.gt-filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  align-items: center;
}
.gt-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 12px;
  color: var(--ink-3);
  background: var(--bg-soft);
  border-radius: 999px;
  font-weight: 500;
}
.gt-filter-pill span { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); }
.gt-filter-pill select,
.gt-filter-pill input:not([type="checkbox"]) {
  background: transparent;
  border: none;
  outline: none;
  font: inherit;
  font-size: 13px;
  color: var(--ink);
  padding: 0;
  width: auto;
  min-width: 90px;
}
.gt-filter-submit {
  background: var(--ink);
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 999px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.gt-filter-submit:hover { background: black; }

/* ============= Product detail ============= */
.gt-product-page {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}
.gt-product-page > *,
.gt-product-info-side {
  min-width: 0;
}
.gt-product-gallery {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.gt-product-gallery-main {
  --gt-media-shift: 24px;
  position: relative;
  z-index: 1;
  aspect-ratio: 1 / 1;
  display: block;
  padding: 0;
  overflow: hidden;
  background: var(--bg-soft);
  touch-action: pan-y;
}
.gt-product-gallery-main img,
.gt-product-gallery-main video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.gt-product-gallery-main img {
  filter: contrast(1.03) saturate(1.03);
  cursor: zoom-in;
}
.gt-product-gallery-main video {
  background: #000;
  cursor: pointer;
}
.gt-product-gallery-main img[hidden],
.gt-product-gallery-main video[hidden] {
  display: none !important;
}
.gt-gallery-drag-preview {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(100%, 0, 0);
  will-change: transform, opacity;
}
.gt-gallery-drag-preview img,
.gt-gallery-drag-preview-placeholder {
  width: 100%;
  height: 100%;
}
.gt-gallery-drag-preview img {
  display: block;
  object-fit: cover;
}
.gt-gallery-drag-preview-placeholder {
  display: grid;
  place-items: center;
  background: #000;
  color: #fff;
  font-family: var(--f-head);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.gt-product-gallery-main.is-dragging img:not([hidden]),
.gt-product-gallery-main.is-dragging video:not([hidden]) {
  will-change: transform, opacity;
}
.gt-product-gallery-main.is-swipe-prev {
  --gt-media-shift: -24px;
}
.gt-product-gallery-main.is-media-switching img:not([hidden]),
.gt-product-gallery-main.is-media-switching video:not([hidden]) {
  animation: gt-product-media-swipe-in 280ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes gt-product-media-swipe-in {
  from {
    transform: translateX(var(--gt-media-shift)) scale(0.985);
  }
  to {
    transform: translateX(0) scale(1);
  }
}
.gt-video-pause-toggle {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(10, 11, 13, 0.68);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out);
}
.gt-video-pause-toggle:hover {
  transform: translate(-50%, -50%) scale(1.04);
  background: rgba(10, 11, 13, 0.82);
}
.gt-video-pause-toggle[hidden] {
  display: none !important;
}
.gt-product-gallery-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(10, 11, 13, 0.18);
  font-size: 80px;
}
.gt-gallery-expand {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 5;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  background: rgba(10, 11, 13, 0.62);
  color: #fff;
  box-shadow: 0 18px 42px rgba(10, 11, 13, 0.24);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out);
}
.gt-gallery-expand:hover,
.gt-gallery-expand:focus-visible {
  transform: translateY(-1px) scale(1.04);
  background: rgba(10, 11, 13, 0.78);
}
.gt-gallery-expand[hidden] {
  display: none !important;
}

.gt-product-lightbox {
  --gt-lightbox-header-space: clamp(86px, 10svh, 118px);
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
  padding: clamp(18px, 3vw, 34px);
  background: #fff;
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s var(--ease-out), visibility 0.18s var(--ease-out);
}
.gt-product-lightbox[hidden] { display: none; }
.gt-product-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.gt-lightbox-brand {
  position: absolute;
  top: clamp(14px, 2.2vw, 24px);
  left: 50%;
  z-index: 3;
  width: min(320px, calc(100% - 148px));
  display: flex;
  justify-content: center;
  transform: translateX(-50%);
}
.gt-lightbox-brand .gt-brand-mark {
  height: var(--header-logo-height, 54px);
  max-width: 100%;
  object-fit: contain;
  object-position: center;
}
.gt-lightbox-stage {
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: var(--gt-lightbox-header-space) 72px 0;
  touch-action: pan-y;
}
.gt-lightbox-stage img {
  width: auto;
  height: auto;
  max-width: min(100%, 1280px);
  max-height: calc(100svh - var(--gt-lightbox-header-space) - 138px);
  object-fit: contain;
  filter: none;
  box-shadow: none;
  background: transparent;
  user-select: none;
}
.gt-lightbox-stage.is-switching img {
  --gt-lightbox-shift: 18px;
  animation: gt-lightbox-swap 200ms var(--ease-out);
}
.gt-lightbox-stage.is-switching-prev img {
  --gt-lightbox-shift: -18px;
}
@keyframes gt-lightbox-swap {
  from { transform: translateX(var(--gt-lightbox-shift)) scale(0.992); }
  to { transform: translateX(0) scale(1); }
}
.gt-lightbox-close,
.gt-lightbox-nav {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 1px solid rgba(10, 11, 13, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 18px 42px -28px rgba(10, 11, 13, 0.44);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out), border-color 0.2s, color 0.2s;
}
.gt-lightbox-close:hover,
.gt-lightbox-close:focus-visible,
.gt-lightbox-nav:hover,
.gt-lightbox-nav:focus-visible {
  transform: scale(1.05);
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.gt-lightbox-close {
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
}
.gt-lightbox-nav {
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translateY(-50%);
}
.gt-lightbox-nav:hover,
.gt-lightbox-nav:focus-visible {
  transform: translateY(-50%) scale(1.05);
}
.gt-lightbox-nav--prev { left: 22px; }
.gt-lightbox-nav--next { right: 22px; }
.gt-lightbox-thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: min(100%, 940px);
  margin: 0 auto;
  padding: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 18px 48px -32px rgba(10, 11, 13, 0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.gt-lightbox-thumbs::-webkit-scrollbar { display: none; }
.gt-lightbox-thumbs button {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(10, 11, 13, 0.1);
  border-radius: 999px;
  background: var(--bg-soft);
  opacity: 0.72;
  transition: opacity 0.2s var(--ease-out), border-color 0.2s, transform 0.2s var(--ease-out);
}
.gt-lightbox-thumbs button:hover,
.gt-lightbox-thumbs button:focus-visible {
  opacity: 0.9;
  transform: translateY(-2px);
}
.gt-lightbox-thumbs button.active {
  opacity: 1;
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(237, 28, 36, 0.55);
}
.gt-lightbox-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 720px) {
  .gt-gallery-expand {
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
  }
  .gt-product-lightbox {
    --gt-lightbox-header-space: 78px;
    gap: 12px;
    padding: 12px;
  }
  .gt-lightbox-brand {
    top: 10px;
    width: min(210px, calc(100% - 118px));
  }
  .gt-lightbox-brand .gt-brand-mark {
    height: clamp(30px, var(--header-logo-height, 54px), 58px);
  }
  .gt-lightbox-stage {
    padding: var(--gt-lightbox-header-space) 0 0;
  }
  .gt-lightbox-stage img {
    max-height: calc(100svh - var(--gt-lightbox-header-space) - 118px);
  }
  .gt-lightbox-close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
  }
  .gt-lightbox-nav {
    top: auto;
    bottom: 92px;
    width: 46px;
    height: 46px;
    transform: none;
  }
  .gt-lightbox-nav:hover,
  .gt-lightbox-nav:focus-visible {
    transform: scale(1.05);
  }
  .gt-lightbox-nav--prev { left: 14px; }
  .gt-lightbox-nav--next { right: 14px; }
  .gt-lightbox-thumbs {
    justify-content: flex-start;
    max-width: 100%;
    padding: 8px;
    border-radius: 18px;
  }
  .gt-lightbox-thumbs button {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }
}

/* Thumbs row — fond blanc, look gaming HUD avec coins en équerre */
.gt-product-gallery-thumbs {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: white;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
  overflow-x: auto;
  scrollbar-width: none;
}
.gt-product-gallery-thumbs::-webkit-scrollbar { display: none; }
.gt-product-gallery-thumbs button {
  flex: 0 0 88px;
  height: 88px;
  border-radius: 6px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  position: relative;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), border-color 0.2s, box-shadow 0.2s;
  color: var(--ink);
}
.gt-product-gallery-thumbs button:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  box-shadow: var(--shadow-s);
}
/* Coins en équerre HUD : 4 L-shapes dessinés via gradients sur 2 pseudo-éléments.
   Visibles dès le hover, et accentués (rouge) sur l'état actif. */
.gt-product-gallery-thumbs button::before,
.gt-product-gallery-thumbs button::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s var(--ease-out);
}
.gt-product-gallery-thumbs button::before {
  /* Coins haut-gauche + haut-droit */
  background:
    linear-gradient(currentColor, currentColor) top    left  / 14px 2px no-repeat,
    linear-gradient(currentColor, currentColor) top    left  / 2px 14px no-repeat,
    linear-gradient(currentColor, currentColor) top    right / 14px 2px no-repeat,
    linear-gradient(currentColor, currentColor) top    right / 2px 14px no-repeat;
}
.gt-product-gallery-thumbs button::after {
  /* Coins bas-gauche + bas-droit */
  background:
    linear-gradient(currentColor, currentColor) bottom left  / 14px 2px no-repeat,
    linear-gradient(currentColor, currentColor) bottom left  / 2px 14px no-repeat,
    linear-gradient(currentColor, currentColor) bottom right / 14px 2px no-repeat,
    linear-gradient(currentColor, currentColor) bottom right / 2px 14px no-repeat;
}
.gt-product-gallery-thumbs button:hover::before,
.gt-product-gallery-thumbs button:hover::after {
  opacity: 0.55;
}
.gt-product-gallery-thumbs button.active {
  border-color: var(--red);
  color: var(--red);
  box-shadow: 0 0 0 1px var(--red), 0 8px 24px -8px rgba(237, 28, 36, 0.45);
}
.gt-product-gallery-thumbs button.active::before,
.gt-product-gallery-thumbs button.active::after {
  opacity: 1;
}
.gt-product-gallery-thumbs img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.gt-product-gallery-thumbs button.is-video {
  background: linear-gradient(135deg, rgba(237, 28, 36, 0.18), rgba(10, 11, 13, 0.85));
}
.gt-product-gallery-thumbs button.is-video img {
  opacity: 0.55;
}
.gt-product-gallery-thumbs .gt-thumb-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  z-index: 3;
}
.gt-product-gallery-thumbs .gt-thumb-play svg {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
}

.gt-product-info-side h1 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.4vw, 46px);
  letter-spacing: -0.025em;
  margin: 12px 0 16px;
}
.gt-product-info-side .gt-product-cat { margin-bottom: 12px; }
.gt-product-info-side .gt-product-cat-img {
  width: 24px;
  height: 24px;
  flex-basis: 24px;
  border-radius: 0;
}
.gt-product-info-side .gt-product-rating { margin-bottom: 18px; }
.gt-product-info-side .gt-price-row {
  display: flex; align-items: baseline; gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.gt-product-info-side .gt-price-row .now {
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.gt-product-info-side .gt-price-row .was {
  font-family: var(--f-mono);
  font-size: 14px;
  text-decoration: line-through;
  color: var(--ink-mute);
}
.gt-product-desc { color: var(--ink-3); font-size: 15px; margin-bottom: 24px; }
.gt-detail-section {
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.gt-detail-section-title {
  margin: 0 0 14px;
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.gt-detail-description {
  margin: 0;
  line-height: 1.75;
  overflow-wrap: anywhere;
}
.gt-detail-description p,
.gt-detail-description ul,
.gt-detail-description ol,
.gt-detail-description blockquote {
  margin: 0 0 0.85rem;
}
.gt-detail-description p:last-child,
.gt-detail-description ul:last-child,
.gt-detail-description ol:last-child,
.gt-detail-description blockquote:last-child {
  margin-bottom: 0;
}
.gt-detail-description ul,
.gt-detail-description ol {
  padding-left: 1.25rem;
}
.gt-detail-description blockquote {
  padding-left: 1rem;
  border-left: 3px solid rgba(0, 0, 0, 0.14);
}
.gt-info-blocks.gt-info-blocks--product-features {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.gt-qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 48px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
}
.gt-qty-stepper button {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}
.gt-qty-stepper button:hover { border-color: var(--ink); }
.gt-qty-stepper input {
  width: 50px;
  text-align: center;
  border: none;
  background: transparent;
  font: inherit;
  font-weight: 600;
  outline: none;
}

.gt-product-actions {
  display: grid;
  grid-template-columns: max-content minmax(190px, 1fr) minmax(52px, auto);
  align-items: center;
  gap: 10px;
  max-width: 100%;
  min-width: 0;
  margin: 18px 0 22px;
}
.gt-product-info-side .gt-price-row + .gt-product-actions {
  margin-top: 0;
}
.gt-product-actions .gt-btn-lg {
  min-height: 48px;
  min-width: 0;
  width: 100%;
  padding: 13px 18px;
  font-size: 14px;
  line-height: 1.15;
  justify-content: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gt-buy-action {
  min-width: 190px;
}
.gt-cart-action {
  min-width: 52px;
}
.gt-cart-icon {
  display: none;
  width: 22px;
  height: 22px;
  stroke-width: 2.35;
  flex: 0 0 auto;
}
.gt-cart-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 901px) and (max-width: 1240px) {
  .gt-cart-action {
    width: 52px;
    height: 48px;
    padding-inline: 0;
    border-radius: 999px;
  }
  .gt-cart-action .gt-cart-icon {
    display: block;
  }
  .gt-cart-action .gt-cart-label {
    display: none;
  }
}

.gt-info-blocks {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.gt-info-block {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.gt-info-block-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--red-bg);
  color: var(--red);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.gt-info-block strong { display: block; font-size: 13px; color: var(--ink); }
.gt-info-block span { font-size: 12px; color: var(--ink-mute); }

/* ============= Cart ============= */
.gt-cart-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: flex-start;
}
.gt-cart-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gt-cart-table th, .gt-cart-table td {
  padding: 16px 18px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.gt-cart-table th {
  background: var(--bg-soft);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.gt-cart-table tr:last-child td { border-bottom: none; }
.gt-cart-thumb {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  background: #0a0b0d;
  overflow: hidden;
  display: grid; place-items: center;
}
.gt-cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gt-cart-product {
  display: flex; align-items: center; gap: 12px;
}
.gt-cart-product-name {
  font-weight: 600;
  color: var(--ink);
}
.gt-cart-remove {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--red-bg);
  color: var(--red);
  border-radius: 50%;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.gt-cart-remove:hover {
  background: var(--red);
  color: white;
  transform: scale(1.05);
  border-color: var(--red);
}
.gt-cart-summary {
  position: sticky;
  top: 100px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-l);
  isolation: isolate;
  overflow: hidden;
}
.gt-cart-summary::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 0% 100%, rgba(237, 28, 36, 0.3), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(237, 28, 36, 0.1), transparent 60%);
  z-index: -1;
}
.gt-cart-summary h4 { color: white; font-family: var(--f-display); font-size: 22px; margin-bottom: 18px; }
.gt-cart-summary .row {
  display: flex; justify-content: space-between;
  padding: 10px 0; font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}
.gt-cart-summary .row.total {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 12px;
  padding-top: 18px;
}
.gt-cart-summary .row.total .red {
  color: var(--red);
  text-shadow: 0 0 30px rgba(237, 28, 36, 0.5);
}

/* ============= Checkout / confirmation / account ============= */
.gt-checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: flex-start;
}
.gt-account-card {
  max-width: 520px;
  margin: 0 auto;
}
.gt-account-card .gt-panel { padding: 32px; }
.gt-confirmation {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.gt-confirmation-icon {
  width: 96px; height: 96px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--red-bg);
  color: var(--red);
  display: grid; place-items: center;
  font-size: 44px;
  box-shadow: 0 0 0 8px white, var(--glow-red);
}
.gt-confirmation h1 {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.gt-order-summary {
  text-align: left;
  margin-top: 32px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.gt-order-summary table { width: 100%; border-collapse: collapse; }
.gt-order-summary td { padding: 8px 0; font-size: 14px; }
.gt-order-summary td:first-child { color: var(--ink-mute); }
.gt-order-summary .gt-item-row {
  display: flex; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.gt-order-summary .gt-total-row {
  display: flex; justify-content: space-between;
  padding-top: 16px; margin-top: 16px;
  border-top: 2px solid var(--ink);
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
}

/* ============= Reveal animation ============= */
.gt-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.gt-reveal.in { opacity: 1; transform: none; }
.gt-reveal.d-1 { transition-delay: 0.06s; }
.gt-reveal.d-2 { transition-delay: 0.12s; }
.gt-reveal.d-3 { transition-delay: 0.18s; }
.gt-reveal.d-4 { transition-delay: 0.24s; }

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

/* --- ≤ 1280px : large laptop / petit desktop --- */
@media (max-width: 1280px) {
  .gt-products { grid-template-columns: repeat(3, 1fr); }
  .gt-nav-search { max-width: 360px; }
  .gt-hero-grid { gap: 32px; }
}

/* --- ≤ 1100px : tablette paysage --- */
@media (max-width: 1100px) {
  :root { --gutter: clamp(16px, 3.5vw, 40px); }

  .gt-hero { padding-top: clamp(16px, 2vw, 28px); }
  .gt-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
  }
  .gt-hero-left { padding: 0; align-items: flex-start; }
  .gt-hero-showcase { min-height: 440px; }
  .gt-hero-pc { min-height: 380px; }
  .gt-hero-pc model-viewer { min-height: 380px; }
  .gt-hero-pc-img { max-height: 420px; }

  /* Catégories — défaut tablette (5 cards : feature large + 4) */
  .gt-cats {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }
  .gt-cat-card.feature { grid-row: span 1; grid-column: span 2; }
  /* Overrides par count (battent la règle ci-dessus grâce à la spécificité) */
  .gt-cats.gt-cats--n1 { grid-template-columns: 1fr; grid-template-rows: 240px; }
  .gt-cats.gt-cats--n1 .gt-cat-card.feature { grid-column: auto; grid-row: auto; }
  .gt-cats.gt-cats--n2 { grid-template-columns: 1fr 1fr; grid-template-rows: 240px; }
  .gt-cats.gt-cats--n2 .gt-cat-card.feature { grid-column: auto; grid-row: auto; }
  .gt-cats.gt-cats--n3 { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; }
  .gt-cats.gt-cats--n3 .gt-cat-card.feature { grid-column: span 2; grid-row: auto; }
  .gt-cats.gt-cats--n4 { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; }
  .gt-cats.gt-cats--n4 .gt-cat-card.feature { grid-column: auto; grid-row: auto; }

  .gt-products { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .gt-trust-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .gt-trust-item:nth-child(2) { border-right: none; }
  .gt-trust-item:nth-child(odd) { padding-right: 16px; }

  /* Footer reste 2 colonnes ; brand côte à côte, contact stack sous boutique */
  .gt-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 36px; }
  .gt-footer-grid.has-contact {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "shop  contact";
    row-gap: 28px;
  }
  .gt-footer-brand { max-width: none; }

  .gt-product-page { grid-template-columns: 1fr; gap: 32px; }
  .gt-cart-grid { grid-template-columns: 1fr; gap: 24px; }
  .gt-cart-summary { position: relative; top: auto; }
  .gt-checkout-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* --- ≤ 900px : tablette portrait --- */
@media (max-width: 900px) {
  .gt-nav-wrap { padding: 6px 4px; }
  .gt-nav {
    padding: 6px 12px;
    gap: 0;
    justify-content: center;
  }
  .gt-nav-search { display: none; }
  .gt-brand {
    margin: 0 auto;
    justify-content: center;
  }
  .gt-brand-mark { height: clamp(32px, calc(var(--header-logo-height, 54px) + 8px), 96px); max-width: 240px; }

  .gt-section { padding: clamp(36px, 6vw, 64px) var(--gutter); }
  .gt-section-head { margin-bottom: 28px; gap: 18px; }
  .gt-section-link { padding: 10px 14px; font-size: 11px; }

  .gt-products { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .gt-hero-meta { gap: 22px; padding-top: 18px; margin-top: 18px; }
  .gt-hero-meta .v { font-size: 20px; }

  .gt-filter-bar {
    border-radius: var(--radius-lg);
    padding: 10px;
  }
  .gt-filter-bar > * { width: 100%; }
  .gt-filter-pill { flex-wrap: wrap; }
  .gt-filter-submit { width: 100%; }
}

/* --- ≤ 720px : phablette --- */
@media (max-width: 720px) {
  .gt-announce { font-size: 10px; padding: 8px var(--gutter); }
  .gt-announce-track { gap: 36px; animation-duration: 28s; }
  .gt-announce-track span { gap: 36px; }

  .gt-nav-wrap { padding: 4px 2px; }
  .gt-nav { padding: 5px 10px; gap: 0; }
  .gt-nav-actions { gap: 6px; }
  .gt-icon-btn { width: 46px; height: 46px; }
  .gt-icon-btn svg { width: 20px; height: 20px; }
  .gt-brand-mark { height: clamp(32px, calc(var(--header-logo-height, 54px) + 4px), 90px); max-width: 220px; }

  .gt-hero h1 { font-size: clamp(34px, 8vw, 54px); }
  .gt-hero-desc { font-size: 15px; }
  .gt-hero-actions { width: 100%; }
  .gt-hero-actions .gt-btn { flex: 1 1 auto; justify-content: center; }
  /* Hero showcase compact + full-bleed (voir bloc 900px) */
  .gt-hero-showcase { min-height: 360px; padding: 18px; }
  .gt-hero-pc { min-height: 320px; }
  .gt-hero-pc model-viewer { min-height: 320px; }
  .gt-openbox-corner { width: 28px; height: 28px; }
  .gt-openbox-tag { display: none; }
  .gt-openbox-floor { height: 90px; bottom: 4%; }

  /* Trust bar — marquee auto-scroll mobile */
  .gt-trust-row {
    display: block;
    padding: 14px 0;
    overflow: hidden;
    max-width: 100%;
    grid-template-columns: none;
  }
  .gt-trust-track {
    display: flex;
    width: max-content;
    animation: gt-marquee 55s linear infinite;
  }
  .gt-trust-group {
    display: flex;
    gap: 28px;
    padding-right: 28px;
    align-items: center;
  }
  .gt-trust-group[aria-hidden="true"] { display: flex; }
  .gt-trust-item {
    flex-shrink: 0;
    padding: 0;
    border-right: none;
    border-bottom: none;
  }
  .gt-trust:hover .gt-trust-track,
  .gt-trust:focus-within .gt-trust-track { animation-play-state: paused; }

  /* Cat-strip pills — scroll horizontal manuel (pas d'autoscroll).
     On garde la mise en page flex desktop avec overflow-x:auto ; le groupe dupliqué
     (utile pour le marquee de la trust bar) reste caché ici. */
  .gt-cat-pill { flex-shrink: 0; }

  /* Catégories avec images — scroll horizontal manuel mobile */
  .gt-cats,
  .gt-cats.gt-cats--n1,
  .gt-cats.gt-cats--n2,
  .gt-cats.gt-cats--n3,
  .gt-cats.gt-cats--n4 {
    display: flex;
    grid-template-columns: none;
    grid-template-rows: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    margin: 0 calc(-1 * var(--gutter));
    padding: 4px var(--gutter) 12px;
    scrollbar-width: none;
  }
  .gt-cats::-webkit-scrollbar { display: none; }
  .gt-cat-card,
  .gt-cats.gt-cats--n1 .gt-cat-card,
  .gt-cats.gt-cats--n2 .gt-cat-card,
  .gt-cats.gt-cats--n3 .gt-cat-card,
  .gt-cats.gt-cats--n4 .gt-cat-card {
    flex: 0 0 45%;
    min-width: 45%;
    height: 175px;
    padding: 16px;
    scroll-snap-align: start;
    grid-column: auto;
    grid-row: auto;
  }

  .gt-footer { padding: 48px var(--gutter) 24px; }
  /* Sur petit écran : 2 colonnes maintenues (compact) */
  .gt-footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .gt-footer-grid.has-contact {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "shop  contact";
    row-gap: 24px;
  }
  .gt-footer-brand { max-width: none; }
  /* Texte descriptif sous le logo centré sur l'axe X (mobile) */
  .gt-footer-brand p { text-align: center; }
  .gt-footer-bottom { margin-top: 28px; }

  .gt-form-grid.cols-2 { grid-template-columns: 1fr; }

  /* Cart table → empilage en cards */
  .gt-cart-table,
  .gt-cart-table thead,
  .gt-cart-table tbody,
  .gt-cart-table tr,
  .gt-cart-table td {
    display: block;
    width: 100%;
  }
  .gt-cart-table { border-radius: var(--radius-lg); }
  .gt-cart-table thead { display: none; }
  .gt-cart-table tr {
    border-bottom: 1px solid var(--line);
    padding: 14px 12px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    align-items: center;
  }
  .gt-cart-table tr:last-child { border-bottom: none; }
  .gt-cart-table td {
    border-bottom: none;
    padding: 4px 0;
    font-size: 13px;
  }
  .gt-cart-table td:first-child { grid-column: 1 / -1; }
  .gt-cart-product { flex-wrap: wrap; }
  .gt-cart-thumb { width: 48px; height: 48px; }
  .gt-qty-stepper { padding: 4px; }
  .gt-qty-stepper input { width: 36px; }
  .gt-qty-stepper button { width: 28px; height: 28px; }

  .gt-cart-summary { padding: 22px; }
  .gt-cart-summary h4 { font-size: 18px; }
  .gt-cart-summary .row.total { font-size: 18px; }

  .gt-product-info-side h1 { font-size: clamp(24px, 6vw, 36px); }
  .gt-product-info-side .gt-price-row .now { font-size: 30px; }
  .gt-product-gallery-main { padding: 0; }
  .gt-product-gallery-thumbs { gap: 10px; padding: 14px; }
  .gt-product-gallery-thumbs button { flex: 0 0 72px; height: 72px; }
  .gt-brands { padding: 28px var(--gutter); }
  .gt-brands-row { justify-content: flex-start; gap: 18px; }
  .gt-brand-logo { font-size: 15px; }

  .gt-flash-stack { padding: 0 var(--gutter); }
  .gt-alert { padding: 12px 14px; font-size: 13px; }

  .gt-account-card .gt-panel { padding: 22px; }
  .gt-confirmation-icon { width: 80px; height: 80px; font-size: 36px; }
  .gt-order-summary { padding: 18px; }

  .gt-breadcrumb { font-size: 10px; letter-spacing: 0.14em; }
}

/* --- ≤ 480px : smartphone standard --- */
@media (max-width: 480px) {
  body { font-size: 14px; }

  .gt-product-actions {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr) 48px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 7px;
  }
  .gt-product-actions .gt-qty-stepper {
    width: 100%;
    height: 48px;
    min-width: 0;
    gap: 4px;
    padding: 4px;
  }
  .gt-product-actions .gt-qty-stepper button { width: 32px; height: 32px; }
  .gt-product-actions .gt-qty-stepper input { width: 30px; }
  .gt-product-actions .gt-buy-action {
    width: 100%;
    min-width: 0;
    padding-inline: 8px;
    font-size: 12.5px;
  }
  .gt-product-actions .gt-buy-action .arr {
    display: none;
  }
  .gt-product-actions .gt-cart-action {
    width: 48px;
    height: 48px;
    min-height: 48px;
    min-width: 0;
    padding-inline: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    color: var(--ink);
    box-shadow: none;
  }
  .gt-product-actions .gt-cart-action:hover,
  .gt-product-actions .gt-cart-action:focus-visible {
    border-color: var(--ink);
    background: white;
    color: var(--ink);
    box-shadow: none;
  }
  .gt-cart-icon {
    display: block;
    width: 22px;
    height: 22px;
    color: inherit;
    stroke-width: 2.6;
  }
  .gt-cart-label { display: none; }

  .gt-nav-wrap { padding: 4px 2px; }
  .gt-nav { padding: 4px 8px; gap: 0; }
  .gt-nav-actions { gap: 5px; }
  .gt-brand-mark { height: var(--header-logo-height, 54px); max-width: 200px; }
  .gt-icon-btn { width: 44px; height: 44px; }
  .gt-icon-btn svg { width: 19px; height: 19px; }
  .gt-icon-btn .gt-badge { min-width: 18px; height: 18px; font-size: 10px; }

  .gt-hero { padding: 12px var(--gutter) 24px; }
  .gt-hero h1 { font-size: clamp(30px, 9vw, 44px); line-height: 1; }
  .gt-hero-pill { font-size: 11px; padding: 4px 4px 4px 10px; }
  .gt-hero-pill .tag { font-size: 9px; padding: 3px 8px; }
  .gt-hero-actions { gap: 8px; }
  .gt-hero-actions .gt-btn { width: 100%; }
  .gt-hero-meta { gap: 14px; }
  .gt-hero-meta .m { min-width: 90px; }
  .gt-hero-meta .v { font-size: 18px; }
  .gt-hero-showcase { min-height: 320px; padding: 14px; }
  .gt-hero-pc { min-height: 300px; }
  .gt-hero-pc model-viewer { min-height: 300px; }

  .gt-products { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gt-product:not(.gt-product--compact) { padding: 10px; gap: 10px; }
  .gt-product:not(.gt-product--compact) .gt-product-badges { top: 16px; left: 16px; }
  .gt-product:not(.gt-product--compact) .gt-product-fav { top: 16px; right: 16px; width: 30px; height: 30px; }
  .gt-product-name {
    --gt-product-name-font-size: 15px;
    --gt-product-name-height: 36.6px;
  }
  .gt-product-price .now { font-size: 18px; }
  .gt-product-foot { flex-wrap: wrap; gap: 8px; }
  .gt-add-btn { padding: 8px 12px; font-size: 11px; width: 100%; justify-content: center; }

  .gt-cats,
  .gt-cats.gt-cats--n1,
  .gt-cats.gt-cats--n2,
  .gt-cats.gt-cats--n3,
  .gt-cats.gt-cats--n4 { grid-template-rows: none; }

  /* Page Catégories : grille 2 colonnes empilées sur mobile (≤480px),
     cartes carrées pour plus de respiration. */
  .gt-cats-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
    gap: 10px;
  }
  .gt-cat-card,
  .gt-cats.gt-cats--n1 .gt-cat-card,
  .gt-cats.gt-cats--n2 .gt-cat-card,
  .gt-cats.gt-cats--n3 .gt-cat-card,
  .gt-cats.gt-cats--n4 .gt-cat-card {
    flex: 0 0 46%;
    min-width: 46%;
    height: 165px;
  }
  .gt-cat-title { font-size: 18px !important; }
  .gt-cat-card.feature .gt-cat-title { font-size: 19px !important; }
  .gt-cat-arrow { width: 30px; height: 30px; }
  .gt-cat-num { font-size: 10px; }
  .gt-cat-meta { font-size: 12px; }

  .gt-section-head { flex-direction: column; align-items: flex-start; }
  .gt-section-link { align-self: flex-start; }

  .gt-filters { gap: 6px; }
  .gt-filter { padding: 6px 10px; font-size: 11px; }

  .gt-footer { padding: 36px var(--gutter) 20px; }
  .gt-footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  .gt-cat-strip { padding: 16px var(--gutter); }
  .gt-cat-pill { padding: 8px 14px; font-size: 12px; }

  .gt-empty { padding: 40px 18px; }
  .gt-empty h3 { font-size: 18px; }
}

/* --- ≤ 380px : très petit écran --- */
@media (max-width: 380px) {
  .gt-products { grid-template-columns: 1fr; }
  .gt-product-foot { flex-direction: column; align-items: stretch; }
  .gt-hero-meta { flex-direction: column; gap: 10px; }
  .gt-hero-meta .m { min-width: auto; }
  .gt-brand-mark { height: clamp(32px, calc(var(--header-logo-height, 54px) - 4px), 82px); max-width: 180px; width: auto; }
  .gt-nav-actions { gap: 4px; }
  .gt-icon-btn { width: 42px; height: 42px; }
  .gt-icon-btn svg { width: 18px; height: 18px; }
}

/* --- Garde-fou anti-overflow horizontal --- */
@media (max-width: 1100px) {
  html, body { overflow-x: hidden; }
  .gt-container, .gt-hero-grid, .gt-trust-row, .gt-footer-grid { max-width: 100%; }
}

/* =========================================================
   MOBILE COMPONENTS — natif (drawer, bottom-nav, sheets)
   Cachés par défaut, activés via media queries plus bas.
   ========================================================= */

/* --- Bouton search mobile (icone seule) --- */
.gt-nav-search-mobile { display: none; }

/* --- Backdrop / overlay --- */
.gt-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 11, 13, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: 998;
  transition: opacity 0.3s var(--ease-out), visibility 0.3s;
}
.gt-overlay.is-open { opacity: 1; visibility: visible; }

/* --- Search overlay plein écran (mobile) --- */
.gt-search-sheet {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: white;
  z-index: 999;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  transform: translateY(-110%);
  transition: transform 0.35s var(--ease-out);
  box-shadow: 0 20px 40px -20px rgba(10, 11, 13, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.gt-search-sheet.is-open { transform: translateY(0); }
.gt-search-sheet form {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.gt-search-sheet input {
  flex: 1; border: none; outline: none; background: transparent;
  font: inherit; font-size: 15px; color: var(--ink);
}
.gt-search-sheet svg { color: var(--ink-mute); flex-shrink: 0; }
.gt-search-sheet .gt-search-close {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 22px; line-height: 1;
  cursor: pointer; color: var(--ink);
}

/* --- Bottom navigation (mobile) --- */
.gt-bottom-nav {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-top: 1px solid var(--line);
  padding: 4px 2px calc(4px + env(safe-area-inset-bottom));
}
.gt-bottom-nav-row {
  display: flex;
  gap: 0;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}
.gt-bottom-nav a,
.gt-bottom-nav .gt-bottom-account {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 2px;
  font-family: var(--f-head);
  font-size: 10.5px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-mute);
  font-weight: 600;
  border-radius: 10px;
  position: relative;
  transition: color 0.2s, background 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}
.gt-bottom-nav a svg,
.gt-bottom-nav .gt-bottom-account svg {
  width: 20px; height: 20px;
  stroke-width: 1.8;
}
.gt-bottom-nav a.active,
.gt-bottom-nav .gt-bottom-account.active { color: var(--red); }
.gt-bottom-nav a.active svg,
.gt-bottom-nav .gt-bottom-account.active svg { stroke: var(--red); }
.gt-bottom-nav a.active::before,
.gt-bottom-nav .gt-bottom-account.active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 3px;
  background: var(--red);
  border-radius: 0 0 3px 3px;
}
.gt-bottom-nav a .gt-bottom-badge {
  position: absolute;
  top: 2px;
  right: calc(50% - 18px);
  min-width: 16px; height: 16px;
  padding: 0 4px;
  background: var(--red);
  color: white;
  font-size: 9px;
  font-weight: 600;
  border-radius: 999px;
  display: grid; place-items: center;
  box-shadow: 0 0 0 2px white;
}

/* --- Sticky CTA bar (fiche produit mobile) --- */
.gt-product-stickybar {
  display: none;
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--line);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -10px 30px -10px rgba(10, 11, 13, 0.18);
}
.gt-product-stickybar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: var(--container);
  margin: 0 auto;
}
.gt-product-stickybar .gt-qty-stepper { flex-shrink: 0; }
.gt-product-stickybar .gt-btn { flex: 1; padding: 12px 16px; font-size: 13px; }

/* --- Zone de recherche en haut du catalogue (cible de la bottom-nav) --- */
.gt-page-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0 0 16px;
  padding: 10px 12px 10px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  scroll-margin-top: 88px;
}
.gt-page-search:focus-within {
  border-color: var(--ink);
  background: white;
  box-shadow: 0 0 0 4px rgba(10, 11, 13, 0.06);
}
.gt-page-search-icon {
  display: inline-grid;
  place-items: center;
  color: var(--ink-mute);
  flex-shrink: 0;
}
.gt-page-search-icon svg { width: 18px; height: 18px; }
.gt-page-search input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 6px 0;
}
.gt-page-search input::placeholder { color: var(--ink-mute); }
.gt-page-search-clear {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line);
  color: var(--ink-mute);
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s, transform 0.2s;
}
.gt-page-search-clear:hover {
  color: var(--ink);
  border-color: var(--ink);
  transform: scale(1.05);
}
.gt-page-search-submit {
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: var(--ink);
  color: white;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.gt-page-search-submit:hover {
  background: var(--red);
  transform: translateY(-1px);
}

/* --- Filter drawer (catalogue mobile) --- */
.gt-filter-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow-s);
}
.gt-filter-toggle svg { width: 16px; height: 16px; }
.gt-filter-toggle .count {
  display: inline-grid; place-items: center;
  min-width: 20px; height: 20px;
  padding: 0 6px;
  background: var(--red);
  color: white;
  font-family: var(--f-mono);
  font-size: 10px;
  border-radius: 999px;
}

/* =========================================================
   ACTIVATION MOBILE — bascule des composants natifs
   ========================================================= */
@media (max-width: 900px) {
  /* Marges latérales réduites pour le header et tous les blocs full-width */
  :root { --gutter: 12px; }

  /* Affichage des composants mobile */
  .gt-bottom-nav { display: block; }

  /* Espace pour la bottom nav */
  body { padding-bottom: 60px; }
  body.has-stickybar { padding-bottom: 138px; }

  /* Desktop-only buttons hidden on mobile (full search form, account, etc.) */
  .gt-nav-desktop-only { display: none !important; }
  .gt-nav-search { display: none; }
  .gt-nav-mobile-only { display: grid !important; place-items: center; }

  /* Lock scroll quand search ouvert */
  body.gt-locked { overflow: hidden; touch-action: none; }

  /* Header : burger left / logo center / icons right */
  .gt-nav-wrap { padding: 6px 4px; }
  .gt-nav {
    padding: 4px 8px;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
  }
  .gt-nav-start { gap: 4px; }
  .gt-nav-actions { gap: 2px; }
  .gt-nav .gt-icon-btn {
    width: 36px; height: 36px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--ink);
  }
  .gt-nav .gt-icon-btn:hover {
    background: var(--bg-soft);
    transform: none;
    border-color: transparent;
    box-shadow: none;
  }
  .gt-nav .gt-icon-btn svg { width: 18px; height: 18px; }
  .gt-nav .gt-icon-btn .gt-badge {
    min-width: 16px; height: 16px;
    font-size: 9.5px;
    top: -2px; right: -2px;
    padding: 0 4px;
  }
  .gt-brand {
    justify-self: center;
  }
  .gt-brand-mark { height: clamp(32px, calc(var(--header-logo-height, 54px) - 10px), 72px); max-width: 200px; }
  .gt-nav::before,
  .gt-nav::after { display: none; }
  .gt-nav-wrap.scrolled .gt-nav {
    padding: 4px 8px;
  }

  /* Hero showcase : full-bleed (touche les bords du viewport) pour effet "infini",
     mais SANS overflow:hidden → le rendu 3D peut déborder librement de sa boîte */
  .gt-hero { padding-left: 0; padding-right: 0; }
  .gt-hero-grid { padding: 0; }
  .gt-hero-left { padding: 0 var(--gutter); }
  .gt-hero-showcase {
    margin: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: 360px;
    overflow: visible;
    padding: 18px;
  }
  .gt-hero-showcase::before {
    inset: -15% -8%;
    filter: blur(70px);
  }

  /* Pas de transform:scale qui couperait le modèle ; on laisse model-viewer auto-cadrer */
  .gt-hero-pc { transform: none; width: 100%; min-height: 340px; }
  .gt-hero-pc model-viewer { min-height: 340px; height: 100%; width: 100%; }

  /* Sticky bars actives */
  .gt-product-stickybar.is-active { display: block; }
  .gt-filter-toggle.is-active { display: inline-flex; }

  /* Filter bar transformée en drawer mobile */
  .gt-filter-bar.is-drawer {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    top: auto;
    z-index: 999;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    border-radius: 22px 22px 0 0;
    padding: 18px 18px calc(22px + env(safe-area-inset-bottom));
    background: white;
    transform: translateY(110%);
    transition: transform 0.4s var(--ease-out);
    max-height: 86vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: 0 -20px 60px -10px rgba(10, 11, 13, 0.35);
    margin: 0;
  }
  .gt-filter-bar.is-drawer.is-open { transform: translateY(0); }
  .gt-filter-bar.is-drawer::before {
    content: "";
    align-self: center;
    width: 40px; height: 4px;
    background: var(--line-strong);
    border-radius: 999px;
    margin-bottom: 14px;
  }
  .gt-filter-bar.is-drawer .gt-filter-pill {
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .gt-filter-bar.is-drawer .gt-filter-pill > span {
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-mute);
    padding-left: 2px;
  }

  /* === Champs : look éditorial sec, hairline blanc, pas de "soft pill" === */
  .gt-filter-bar.is-drawer .gt-filter-pill input[type="number"],
  .gt-filter-bar.is-drawer .gt-filter-pill input[type="search"],
  .gt-filter-bar.is-drawer .gt-filter-pill input[type="text"],
  .gt-filter-bar.is-drawer .gt-filter-pill select {
    width: 100%;
    font-family: var(--f-head);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
    padding: 14px 16px;
    background: white;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    color: var(--ink);
    box-shadow: 0 1px 0 rgba(10, 11, 13, 0.02);
    transition: border-color 0.18s var(--ease-out), box-shadow 0.18s var(--ease-out);
    -webkit-tap-highlight-color: transparent;
  }
  .gt-filter-bar.is-drawer .gt-filter-pill input::placeholder {
    color: var(--ink-mute);
    font-weight: 400;
  }
  .gt-filter-bar.is-drawer .gt-filter-pill input:hover,
  .gt-filter-bar.is-drawer .gt-filter-pill select:hover {
    border-color: var(--ink-3);
  }
  .gt-filter-bar.is-drawer .gt-filter-pill input:focus,
  .gt-filter-bar.is-drawer .gt-filter-pill select:focus {
    outline: none;
    border-color: var(--ink);
    box-shadow: 0 0 0 1px var(--ink);
  }

  /* === Select : chevron fin avec séparateur vertical (look "menu pro") === */
  .gt-filter-bar.is-drawer .gt-filter-pill select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 56px;
    cursor: pointer;
    /* Double background : 1) trait vertical séparateur, 2) chevron */
    background-image:
      linear-gradient(var(--line-strong), var(--line-strong)),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a0b0d' stroke-width='2' stroke-linecap='square' stroke-linejoin='miter'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 42px center, right 16px center;
    background-size: 1px 56%, 12px 12px;
  }
  .gt-filter-bar.is-drawer .gt-filter-pill select:hover {
    background-image:
      linear-gradient(var(--ink-3), var(--ink-3)),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a0b0d' stroke-width='2' stroke-linecap='square' stroke-linejoin='miter'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  }
  .gt-filter-bar.is-drawer .gt-filter-pill select:focus {
    background-image:
      linear-gradient(var(--red), var(--red)),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ed1c24' stroke-width='2' stroke-linecap='square' stroke-linejoin='miter'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  }
  .gt-filter-bar.is-drawer .gt-filter-pill select::-ms-expand { display: none; }

  /* === Checkbox → toggle switch (affordance évidente) === */
  .gt-filter-bar.is-drawer .gt-filter-pill--check {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: white;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    user-select: none;
    transition: border-color 0.18s var(--ease-out), background 0.18s var(--ease-out);
    -webkit-tap-highlight-color: transparent;
  }
  .gt-filter-bar.is-drawer .gt-filter-pill--check:hover {
    border-color: var(--ink-3);
  }
  .gt-filter-bar.is-drawer .gt-filter-pill--check:active {
    background: var(--bg-soft);
  }
  .gt-filter-bar.is-drawer .gt-filter-pill--check > span {
    flex: 1;
    font-family: var(--f-head);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ink);
    padding-left: 0;
  }
  /* Track */
  .gt-filter-bar.is-drawer .gt-filter-pill--check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-sizing: border-box;
    position: relative;
    flex-shrink: 0;
    width: 30px;
    min-width: 0;
    height: 18px;
    margin: 0;
    padding: 0;
    background: var(--line-strong);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.22s var(--ease-out);
  }
  /* Knob */
  .gt-filter-bar.is-drawer .gt-filter-pill--check input[type="checkbox"]::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(10, 11, 13, 0.25), 0 0 0 0.5px rgba(10, 11, 13, 0.04);
    transition: transform 0.22s var(--ease-out);
  }
  .gt-filter-bar.is-drawer .gt-filter-pill--check input[type="checkbox"]:checked {
    background: var(--red);
  }
  .gt-filter-bar.is-drawer .gt-filter-pill--check input[type="checkbox"]:checked::after {
    transform: translateX(12px);
  }
  .gt-filter-bar.is-drawer .gt-filter-pill--check:has(input[type="checkbox"]:checked) {
    border-color: var(--red);
  }
  .gt-filter-bar.is-drawer .gt-filter-pill--check input[type="checkbox"]:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.22);
  }

  .gt-filter-bar.is-drawer .gt-filter-submit {
    width: 100%;
    padding: 16px;
    font-size: 13px;
    letter-spacing: 0.08em;
    border-radius: 8px;
    margin-top: 4px;
  }

  /* Cart : vraies cards mobile avec data-label */
  .gt-cart-table { background: transparent; border: none; }
  .gt-cart-table thead { display: none; }
  .gt-cart-table tbody { display: flex; flex-direction: column; gap: 12px; }
  .gt-cart-table tr {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "thumb  name  remove"
      "thumb  meta  meta"
      "qty    qty   total";
    gap: 6px 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 14px;
    align-items: center;
  }
  .gt-cart-table td {
    display: block;
    border: none;
    padding: 0;
    font-size: 13px;
  }
  /* Produit (thumb + nom) sur 1ere colonne, occupe 2 lignes */
  .gt-cart-table td[data-label="Produit"] {
    grid-area: thumb;
    align-self: start;
  }
  .gt-cart-table td[data-label="Produit"] .gt-cart-product {
    display: contents;
  }
  .gt-cart-table td[data-label="Produit"] .gt-cart-thumb {
    grid-area: thumb;
    width: 72px; height: 72px;
  }
  .gt-cart-table td[data-label="Produit"] .gt-cart-product-name {
    grid-area: name;
    align-self: end;
    font-size: 14px;
  }
  .gt-cart-table td[data-label="Prix"] {
    grid-area: meta;
    align-self: start;
    color: var(--ink-mute);
    font-size: 12px;
  }
  .gt-cart-table td[data-label="Prix"]::before {
    content: "Prix unitaire : ";
  }
  .gt-cart-table td[data-label="Quantité"] {
    grid-area: qty;
    justify-self: start;
  }
  .gt-cart-table td[data-label="Total"] {
    grid-area: total;
    justify-self: end;
    font-family: var(--f-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
  }
  .gt-cart-table td[data-label="Total"] strong { font: inherit; }
  .gt-cart-table td[data-label="Action"] {
    grid-area: remove;
    justify-self: end;
    align-self: start;
  }
  /* Pour le tableau "Commandes récentes" sans data-label : fallback en grid simple */
  .gt-cart-table tr:not(:has(td[data-label])) {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: none;
    gap: 8px 14px;
  }
  .gt-cart-table tr:not(:has(td[data-label])) td { grid-area: auto; }

  /* Cart summary devient plein-largeur, plus de sticky */
  .gt-cart-summary { padding: 22px; }

  /* Hero : visuel en premier sur mobile */
  .gt-hero-grid > .gt-hero-showcase { order: -1; }
  .gt-hero-showcase::before { inset: 12%; filter: blur(40px); }
}

/* Petits écrans : bottom-nav plus compacte */
@media (max-width: 380px) {
  .gt-bottom-nav a,
  .gt-bottom-nav .gt-bottom-account { font-size: 9px; padding: 6px 2px; }
  .gt-bottom-nav a svg,
  .gt-bottom-nav .gt-bottom-account svg { width: 18px; height: 18px; }
  body { padding-bottom: 58px; }
  body.has-stickybar { padding-bottom: 132px; }
}

/* Zone de recherche du catalogue : version mobile (CTA texte caché, icône plus présente) */
@media (max-width: 600px) {
  .gt-page-search {
    padding: 8px 8px 8px 14px;
    gap: 8px;
    scroll-margin-top: 76px;
  }
  .gt-page-search input { font-size: 16px; padding: 8px 0; }
  .gt-page-search-submit {
    padding: 10px 12px;
    font-size: 0;
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
  }
  .gt-page-search-submit::before {
    content: "→";
    font: 700 18px/1 var(--f-head);
  }
}

/* Desktop : on s'assure que tout est bien caché */
@media (min-width: 901px) {
  .gt-overlay, .gt-search-sheet, .gt-bottom-nav,
  .gt-product-stickybar, .gt-filter-toggle { display: none !important; }
}

/* Réduction des animations si l'utilisateur le demande */
@media (prefers-reduced-motion: reduce) {
  .gt-product-gallery-main.is-media-switching img:not([hidden]),
  .gt-product-gallery-main.is-media-switching video:not([hidden]) {
    animation: none !important;
  }
  .gt-product-lightbox,
  .gt-lightbox-stage img,
  .gt-lightbox-stage.is-switching img {
    transition: none !important;
    animation: none !important;
  }
  .gt-overlay, .gt-search-sheet,
  .gt-filter-bar.is-drawer, .gt-hero-pc, .gt-hero-showcase::before {
    transition: none !important;
    animation: none !important;
  }
}

/* ================ Modal de confirmation ================ */
.gt-modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s var(--ease-out), visibility 0.18s;
}
.gt-modal[hidden] { display: none; }
.gt-modal.is-open { opacity: 1; visibility: visible; }

.gt-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 11, 13, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.gt-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: 18px;
  padding: 26px 26px 22px;
  box-shadow: 0 30px 80px -20px rgba(10, 11, 13, 0.45),
              0 0 0 1px rgba(10, 11, 13, 0.04);
  text-align: center;
  transform: translateY(6px) scale(0.98);
  opacity: 0;
  transition: transform 0.22s var(--ease-out), opacity 0.22s var(--ease-out);
}
.gt-modal.is-open .gt-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.gt-modal-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(237, 28, 36, 0.1);
  color: var(--red);
}

.gt-modal-title {
  margin: 0 0 6px;
  font-family: var(--font-display, 'Space Grotesk'), system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.gt-modal-message {
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-mute, #5b5f66);
}

.gt-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: stretch;
}
.gt-modal-actions .gt-btn {
  flex: 1;
}

.gt-btn-danger {
  background: var(--red);
  color: white;
  box-shadow: 0 14px 30px -10px rgba(237, 28, 36, 0.5);
}
.gt-btn-danger:hover {
  background: var(--red-hot);
  box-shadow: 0 22px 40px -10px rgba(237, 28, 36, 0.6), 0 0 60px rgba(237, 28, 36, 0.3);
}

@media (max-width: 500px) {
  .gt-modal-dialog { padding: 22px 20px 18px; border-radius: 16px; }
  .gt-modal-title { font-size: 18px; }
  .gt-modal-actions { flex-direction: column-reverse; }
}

@media (prefers-reduced-motion: reduce) {
  .gt-modal, .gt-modal-dialog {
    transition: none !important;
  }
}

/* ================ Pulse du badge panier ================ */
@keyframes gt-badge-bump {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.35); }
  60%  { transform: scale(0.92); }
  100% { transform: scale(1); }
}
.gt-badge.is-bumped,
.gt-bottom-badge.is-bumped {
  animation: gt-badge-bump 0.42s var(--ease-out);
}

/* ================ Bouton WhatsApp flottant ================ */
.gt-whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: white;
  text-decoration: none;
  box-shadow:
    0 12px 28px -6px rgba(37, 211, 102, 0.55),
    0 4px 12px -2px rgba(10, 11, 13, 0.18);
  z-index: 90;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s;
}
.gt-whatsapp-fab:hover {
  background: #1ebe5b;
  transform: translateY(-3px) scale(1.04);
  color: white;
  box-shadow:
    0 18px 36px -8px rgba(37, 211, 102, 0.7),
    0 6px 16px -4px rgba(10, 11, 13, 0.22);
}
.gt-whatsapp-fab:active { transform: translateY(0) scale(0.96); }
.gt-whatsapp-fab svg { display: block; }

.gt-whatsapp-fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.55);
  z-index: -1;
  animation: gt-wa-pulse 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes gt-wa-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Sur mobile, laisser de la place pour la bottom-nav (60px) */
@media (max-width: 900px) {
  .gt-whatsapp-fab {
    width: 52px; height: 52px;
    right: 16px; bottom: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gt-whatsapp-fab-pulse { animation: none; opacity: 0; }
}

/* =========================================================
   HOME — Mobile-first retail layout (hero card, trust strip,
   category chips, compact products, info bar). Inspired by
   the "GAMER tech" mobile reference design.
   ========================================================= */

/* Accueil mobile : marges latérales réduites de moitié (12px → 6px) */
@media (max-width: 900px) {
  body.gt-page-home {
    --gutter: 6px;
  }
}

/* ----------- Hero card carousel ----------- */
.gt-hero-card-wrap {
  padding: 10px var(--gutter) 4px;
}
.gt-hero-card-carousel {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 18px;
}
.gt-hero-card-track {
  display: flex;
  transition: transform 0.55s var(--ease-out);
  will-change: transform;
}
.gt-hero-card-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
}
.gt-hero-card-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 6px;
  align-items: center;
  padding: 22px 0 36px 18px;
  border-radius: 18px;
  background:
    radial-gradient(140% 100% at 110% 50%, rgba(237, 28, 36, 0.12), transparent 50%),
    radial-gradient(120% 100% at -20% 100%, rgba(237, 28, 36, 0.05), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f4f5f7 100%);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px -22px rgba(10, 11, 13, 0.18);
  overflow: hidden;
  isolation: isolate;
}
.gt-hero-card-inner::after {
  content: "";
  position: absolute;
  top: 14px; right: 12px;
  width: 90px; height: 60px;
  background:
    linear-gradient(120deg, transparent 45%, rgba(237, 28, 36, 0.55) 47%, transparent 49%),
    linear-gradient(120deg, transparent 60%, rgba(237, 28, 36, 0.35) 62%, transparent 64%);
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}
.gt-hero-card-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  z-index: 2;
  position: relative;
  padding-right: 4px;
}
.gt-hero-card-eyebrow {
  margin: 0;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: var(--gt-carousel-badge-size, 11px);
  letter-spacing: 0.02em;
  color: var(--ink-3);
  text-transform: none;
}
.gt-hero-card-eyebrow .accent { color: var(--red); }
.gt-hero-card-title {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: var(--gt-carousel-title-size, clamp(22px, 6.2vw, 30px));
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
  word-spacing: -0.02em;
}
.gt-hero-card-title .accent {
  color: var(--red);
}
.gt-hero-card-sub {
  margin: 0;
  font-size: var(--gt-carousel-subtitle-size, 12.5px);
  line-height: 1.4;
  color: var(--ink-3);
  max-width: 26ch;
}
.gt-hero-card-cta {
  margin-top: 8px;
  align-self: flex-start;
  padding: 10px 14px 10px 15px;
  font-size: var(--gt-carousel-cta-size, 12px);
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 14px 28px -10px rgba(237, 28, 36, 0.55);
}
.gt-hero-card-cta .arr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-left: 3px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}
.gt-hero-card-visual {
  position: relative;
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
}
.gt-hero-card-visual img {
  width: 110%;
  max-width: none;
  max-height: 200px;
  object-fit: contain;
  object-position: right center;
  filter: drop-shadow(0 16px 22px rgba(10, 11, 13, 0.22));
  margin-right: -4%;
}
.gt-hero-card-visual-fallback {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background: rgba(237, 28, 36, 0.06);
  border-radius: 14px;
  color: var(--red);
}
.gt-hero-card-inner.is-full-media {
  min-height: clamp(300px, 62vw, 420px);
  grid-template-columns: 1fr;
  align-items: end;
  padding: 26px 18px 42px;
  background: #07080a;
}
.gt-hero-card-inner.is-full-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(0deg, rgba(5, 6, 8, 0.72) 0%, rgba(5, 6, 8, 0.36) 56%, rgba(5, 6, 8, 0.12) 100%),
    linear-gradient(90deg, rgba(5, 6, 8, 0.58), rgba(5, 6, 8, 0.08));
}
.gt-hero-card-inner.is-full-media.tone-dark::before {
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.34) 64%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.08));
}
.gt-hero-card-inner.is-full-media::after {
  display: none;
}
.gt-hero-card-bg,
.gt-hero-card-bg-image,
.gt-hero-card-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.gt-hero-card-bg {
  z-index: 0;
  overflow: hidden;
}
.gt-hero-card-bg-image,
.gt-hero-card-bg-video {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.03);
}
.gt-hero-card-inner.is-full-media .gt-hero-card-copy {
  max-width: min(100%, 34ch);
  padding-right: 0;
}
.gt-hero-card-inner.is-full-media.tone-light .gt-hero-card-eyebrow,
.gt-hero-card-inner.is-full-media.tone-light .gt-hero-card-title,
.gt-hero-card-inner.is-full-media.tone-light .gt-hero-card-sub {
  color: #fff;
}
.gt-hero-card-inner.is-full-media.text-center {
  place-items: end center;
}
.gt-hero-card-inner.is-full-media.text-center .gt-hero-card-copy {
  align-items: center;
  text-align: center;
  margin: 0 auto;
}
.gt-hero-card-inner.is-full-media.text-right {
  place-items: end end;
}
.gt-hero-card-inner.is-full-media.text-right .gt-hero-card-copy {
  align-items: flex-end;
  text-align: right;
  margin-left: auto;
}
.gt-hero-card-dots {
  position: absolute;
  left: 0; right: 0;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 3;
}
.gt-hero-card-dot {
  width: 6px; height: 6px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(10, 11, 13, 0.18);
  cursor: pointer;
  transition: width 0.25s var(--ease-out), background 0.25s var(--ease-out);
}
.gt-hero-card-dot:hover { background: rgba(10, 11, 13, 0.35); }
.gt-hero-card-dot.active {
  width: 16px;
  background: var(--red);
}

/* Desktop tweak — keep the same card composition but with breathing room */
@media (min-width: 901px) {
  .gt-hero-card-wrap { padding: 24px var(--gutter) 8px; }
  .gt-hero-card-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 56px 56px 64px;
    border-radius: 28px;
  }
  .gt-hero-card-inner::after { display: none; }
  .gt-hero-card-title { font-size: clamp(42px, 4.2vw, 68px); }
  .gt-hero-card-sub { font-size: 17px; max-width: 44ch; }
  .gt-hero-card-cta { padding: 16px 28px; font-size: 15px; }
  .gt-hero-card-cta .arr { width: 26px; height: 26px; margin-left: 6px; }
  .gt-hero-card-visual img { width: 100%; max-height: 380px; margin-right: 0; }
  .gt-hero-card-dots { bottom: 22px; }
}

/* ----------- Trust strip (compact, white card with dividers) ----------- */
.gt-trust.gt-trust--compact {
  border: none;
  background: transparent;
  padding: 3px var(--gutter) 2px;
}
.gt-trust--compact + .gt-cat-strip { border-top: 0; }
.gt-trust--compact .gt-trust-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
  padding: 2px 4px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 8px 20px -16px rgba(10, 11, 13, 0.16);
}
.gt-trust--compact .gt-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-height: 50px;
  padding: 2px 3px;
  border-right: 1px solid var(--line);
  min-width: 0;
  text-align: center;
}
.gt-trust--compact .gt-trust-item:last-child { border-right: none; }
.gt-trust--compact .gt-trust-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: transparent;
  color: var(--red);
}
.gt-trust--compact .gt-trust-icon svg { width: 22px; height: 22px; }
.gt-trust--compact .gt-trust-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
  gap: 1px;
}
.gt-trust--compact .gt-trust-text strong {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
.gt-trust--compact .gt-trust-text span {
  font-size: 8.8px;
  color: var(--ink-mute);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

@media (min-width: 901px) {
  .gt-trust--compact .gt-trust-row {
    padding: 7px 14px;
    gap: 8px;
    border-radius: 18px;
  }
  .gt-trust--compact .gt-trust-item { min-height: 74px; padding: 5px 7px; }
  .gt-trust--compact .gt-trust-icon { width: 48px; height: 48px; border-radius: 0; }
  .gt-trust--compact .gt-trust-icon svg { width: 28px; height: 28px; }
  .gt-trust--compact .gt-trust-text strong { font-size: 12.5px; }
  .gt-trust--compact .gt-trust-text span { font-size: 11px; }
}

/* ----------- Compact section + simple head + red link ----------- */
.gt-section--tight {
  padding: 18px var(--gutter) 8px;
}
.gt-section--tight + .gt-section--tight { padding-top: 6px; }
.gt-section-head-simple {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.gt-section-head-simple h2 {
  margin: 0;
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.gt-link-red {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  white-space: nowrap;
}
.gt-link-red:hover { color: var(--red-deep); }
.gt-link-red .arr {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.2s var(--ease-out);
}
.gt-link-red:hover .arr { transform: translateX(2px); }

@media (min-width: 901px) {
  .gt-section--tight { padding: 36px var(--gutter) 18px; }
  .gt-section-head-simple { margin-bottom: 20px; }
  .gt-section-head-simple h2 { font-size: 28px; }
  .gt-link-red { font-size: 14px; }
}

/* ----------- Category icon chips (horizontal scroll) ----------- */
.gt-cat-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 8px;
  margin: 0 calc(-1 * var(--gutter));
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  scrollbar-width: none;
}
.gt-cat-scroll::-webkit-scrollbar { display: none; }
.gt-cat-chip {
  flex: 0 0 auto;
  width: 117px;
  min-height: 95px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 6px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  scroll-snap-align: start;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.gt-cat-chip:hover {
  border-color: rgba(237, 28, 36, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px -16px rgba(237, 28, 36, 0.4);
}
.gt-cat-chip-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--ink-2);
  overflow: hidden;
}
.gt-cat-chip-icon.has-image {
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
.gt-cat-chip-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gt-cat-chip-icon svg { width: 22px; height: 22px; stroke-width: 1.7; }
.gt-cat-chip-label {
  font-family: var(--f-head);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.2;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.gt-cat-chip-badge {
  position: absolute;
  top: 8px; right: 8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #ffffff;
  font-family: var(--f-head);
  font-size: 9.5px;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 4px 10px -2px rgba(237, 28, 36, 0.5);
}
.gt-cat-chip.active,
.gt-cat-chip.is-featured {
  border-color: rgba(237, 28, 36, 0.5);
}
.gt-cat-chip.active .gt-cat-chip-icon,
.gt-cat-chip.is-featured .gt-cat-chip-icon { color: var(--red); }

body.gt-page-home .gt-cat-chip {
  display: grid;
  grid-template-rows: minmax(0, 3.8fr) minmax(0, 0.2fr) minmax(0, 1fr);
  align-items: stretch;
  justify-items: center;
  gap: 0;
  padding-left: 0;
  padding-right: 0;
}
body.gt-page-home .gt-cat-chip-icon {
  grid-row: 1;
  width: 100%;
  height: 100%;
  align-self: stretch;
  justify-self: stretch;
}
body.gt-page-home .gt-cat-chip-label {
  grid-row: 3;
  align-self: center;
  padding: 0 6px;
}

@media (min-width: 901px) {
  .gt-cat-scroll { gap: 14px; padding-bottom: 10px; }
  .gt-cat-chip { width: 198px; min-height: 150px; padding: 22px 10px; border-radius: 18px; }
  .gt-cat-chip-icon { width: 48px; height: 48px; }
  .gt-cat-chip-icon svg { width: 28px; height: 28px; }
  .gt-cat-chip-label { font-size: 12px; }
}

/* ----------- Home products grid (2 cols compact) ----------- */
.gt-products--home {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: var(--container);
  margin: 0 auto;
}
.gt-section-more {
  max-width: var(--container);
  margin: 18px auto 0;
  display: flex;
  justify-content: center;
}
.gt-section-more--home-end {
  width: 100%;
  padding: 0 var(--gutter);
  margin-top: 4px;
  margin-bottom: 24px;
}
.gt-section-more-btn {
  background: white;
  border-color: var(--line-strong);
  box-shadow: 0 8px 22px -18px rgba(10, 11, 13, 0.24);
}
.gt-section-more-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
  box-shadow: 0 14px 28px -22px rgba(10, 11, 13, 0.4);
}
@media (min-width: 720px) {
  .gt-products--home { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
}
@media (min-width: 1100px) {
  .gt-products--home { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
}

/* ----------- Compact product card variant ----------- */
.gt-product.gt-product--compact {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px -18px rgba(10, 11, 13, 0.2);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.gt-product.gt-product--compact:hover {
  border-color: rgba(237, 28, 36, 0.35);
  box-shadow: 0 16px 30px -20px rgba(237, 28, 36, 0.35);
  transform: translateY(-2px);
}
.gt-product.gt-product--compact .gt-product-badges {
  top: 4px;
  left: 4px;
  gap: 4px;
  z-index: 5;
}
.gt-product.gt-product--compact .gt-product-fav {
  top: 4px;
  right: 4px;
  width: 30px;
  height: 30px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background: #ffffff;
  border: none;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(10, 11, 13, 0.1);
  z-index: 6;
}
.gt-product.gt-product--compact .gt-product-fav svg {
  width: 14px;
  height: 14px;
}
.gt-product.gt-product--compact .gt-product-fav:hover:not(.is-active) {
  color: var(--ink);
  background: #ffffff;
  transform: scale(1.04);
}
.gt-product.gt-product--compact .gt-product-fav.is-active {
  background: var(--red);
  border: none;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(237, 28, 36, 0.35);
}
.gt-product.gt-product--compact .gt-product-fav.is-active .gt-fav-icon--filled {
  color: #ffffff;
}
.gt-product.gt-product--compact .gt-product-img {
  aspect-ratio: 1 / 1;
  width: 100%;
  border-radius: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  display: block;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  line-height: 0;
}
.gt-product--compact .gt-product-img::before { display: none; }
.gt-product--compact .gt-product-img img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: cover;
  padding: 0;
  filter: none;
  transform: none;
}
.gt-product--compact:hover .gt-product-img img { transform: none; }
.gt-product--compact .gt-product-img-empty {
  color: var(--ink-mute);
  font-size: 28px;
}
.gt-product.gt-product--compact .gt-product-info {
  padding: 6px 8px 0;
  gap: 2px;
}
.gt-product--compact .gt-product-name {
  --gt-product-name-font-size: 13.5px;
  --gt-product-name-line-height: 1.2;
  --gt-product-name-height: 32.4px;
  font-family: var(--f-head);
  font-size: var(--gt-product-name-font-size);
  font-weight: 600;
  line-height: var(--gt-product-name-line-height);
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: var(--gt-product-name-height);
  margin: 0;
}
.gt-product--compact .gt-product-rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11.5px;
  color: var(--ink-mute);
  margin: 0;
  line-height: 1.2;
}
.gt-product--compact .gt-stars {
  color: var(--red);
  font-size: 12.5px;
  letter-spacing: 0;
}
.gt-product--compact .gt-rating-value {
  color: var(--ink);
  font-weight: 600;
}
.gt-product--compact .gt-rating-count {
  color: var(--ink-mute);
}
.gt-product.gt-product--compact .gt-product-foot {
  padding: 4px 8px 8px;
  border-top: none;
  margin-top: 0;
  align-items: flex-end;
  gap: 6px;
}
.gt-product--compact .gt-product-price-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.gt-product--compact .gt-product-price { flex-direction: column; gap: 0; }
.gt-product--compact .gt-product-price .now {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.gt-product--compact .gt-product-price .was {
  font-size: 10.5px;
}
.gt-product--compact .gt-product-stock {
  font-size: 10.5px;
  padding: 0;
  font-weight: 500;
}
.gt-product--compact .gt-product-stock::before {
  width: 5px; height: 5px;
  box-shadow: 0 0 0 2px rgba(24, 169, 87, 0.18);
}

/* Small square cart button, aligned with stock state */
.gt-add-btn-square {
  flex-shrink: 0;
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--red);
  border-radius: 8px;
  background: var(--red);
  color: #ffffff;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s, box-shadow 0.2s;
}
.gt-add-btn-square:hover {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
  transform: translateY(-1px);
}
.gt-add-btn-square:active { transform: scale(0.95); }
.gt-add-btn-square:disabled {
  opacity: 1;
  cursor: not-allowed;
  background: #eef0f3;
  color: #5f6670;
  border-color: #d7dbe2;
  box-shadow: none;
  transform: none;
}
.gt-add-btn-square:disabled:hover {
  background: #eef0f3;
  color: #5f6670;
  border-color: #d7dbe2;
  transform: none;
}
.gt-add-btn-square svg {
  width: 16px;
  height: 16px;
  transition: opacity 0.16s ease, transform 0.18s var(--ease-out);
}
.gt-add-btn-square::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 6px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0;
  transform: translate(-50%, -60%) rotate(-45deg) scale(0.65);
  transition: opacity 0.18s ease, transform 0.2s var(--ease-out);
}
.gt-add-btn-square.is-pressed { transform: scale(0.94); }
.gt-add-btn-square.is-added {
  animation: gt-add-bounce 0.7s var(--ease-out);
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(24, 169, 87, 0.14);
  pointer-events: none;
}
.gt-add-btn-square.is-added svg {
  opacity: 0;
  transform: translateY(-5px) scale(0.7);
}
.gt-add-btn-square.is-added::after {
  opacity: 1;
  transform: translate(-50%, -60%) rotate(-45deg) scale(1);
}

@keyframes gt-product-added {
  0% { box-shadow: 0 0 0 0 rgba(24, 169, 87, 0.24); }
  45% { box-shadow: 0 0 0 5px rgba(24, 169, 87, 0.16); }
  100% { box-shadow: 0 0 0 0 rgba(24, 169, 87, 0); }
}
.gt-product.is-cart-added,
.gt-product.is-cart-added:hover,
.gt-product.gt-product--compact.is-cart-added {
  border-color: rgba(24, 169, 87, 0.45);
  animation: gt-product-added 0.85s var(--ease-out);
}

@media (min-width: 901px) {
  .gt-product--compact { border-radius: 16px; }
  .gt-product--compact .gt-product-img {
    border-radius: 0;
    padding: 0;
  }
  .gt-product--compact .gt-product-info { padding: 10px 12px 0; gap: 4px; }
  .gt-product--compact .gt-product-foot { padding: 6px 12px 12px; }
  .gt-product--compact .gt-product-name {
    --gt-product-name-font-size: 15px;
    --gt-product-name-height: 36px;
  }
  .gt-product--compact .gt-product-price .now { font-size: 17px; }
  .gt-add-btn-square { width: 38px; height: 38px; }
}

/* ----------- Bottom info bar (4 columns) ----------- */
.gt-info-bar {
  padding: 14px var(--gutter) 18px;
  background: transparent;
}
.gt-info-bar-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 8px;
  box-shadow: 0 8px 20px -16px rgba(10, 11, 13, 0.16);
}
.gt-info-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 6px;
  padding: 6px 4px;
  min-width: 0;
}
.gt-info-bar-icon {
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(237, 28, 36, 0.08);
  color: var(--red);
}
.gt-info-bar-icon svg { width: 18px; height: 18px; }
.gt-info-bar-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.gt-info-bar-text strong {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}
.gt-info-bar-text span {
  font-size: 9.5px;
  color: var(--ink-mute);
  line-height: 1.25;
}
@media (min-width: 901px) {
  .gt-info-bar { padding: 28px var(--gutter) 36px; }
  .gt-info-bar-grid { padding: 22px 16px; gap: 12px; border-radius: 18px; }
  .gt-info-bar-icon { width: 42px; height: 42px; border-radius: 10px; }
  .gt-info-bar-icon svg { width: 22px; height: 22px; }
  .gt-info-bar-text strong { font-size: 13px; }
  .gt-info-bar-text span { font-size: 11.5px; }
}

/* ----------- Bottom-nav active state — match reference (red text + dot) ----------- */
.gt-bottom-nav a.active,
.gt-bottom-nav .gt-bottom-account.active {
  color: var(--red);
}
.gt-bottom-nav a.active svg,
.gt-bottom-nav .gt-bottom-account.active svg {
  stroke: var(--red);
}

/* ----------- Mobile bottom-nav: ensure it's visible on the reference width ----------- */
@media (max-width: 900px) {
  /* keep room above the bottom-nav for the info bar */
  .gt-info-bar { padding-bottom: 22px; }
}

/* ----------- Breadcrumb simple ----------- */
.gt-breadcrumb-simple {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.gt-breadcrumb-simple a {
  color: var(--ink-mute);
  transition: color 0.15s;
}
.gt-breadcrumb-simple a:hover { color: var(--red); }
.gt-breadcrumb-simple .sep { color: var(--line-strong); }
.gt-breadcrumb-simple .current { color: var(--ink); font-weight: 600; }

/* ----------- Catégories — page tiles (list-style + arrow) ----------- */
.gt-cat-count {
  margin-left: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mute);
}
.gt-cats-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: var(--container);
  margin: 0 auto;
}
.gt-cat-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.gt-cat-tile:hover {
  border-color: rgba(237, 28, 36, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -18px rgba(237, 28, 36, 0.4);
}
.gt-cat-tile-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(237, 28, 36, 0.08);
  color: var(--red);
  overflow: hidden;
}
.gt-cat-tile-icon.has-image {
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
.gt-cat-tile-icon img {
  width: 100%; height: 100%;
  object-fit: contain;
}
.gt-cat-tile-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gt-cat-tile-name {
  font-family: var(--f-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gt-cat-tile-meta {
  font-size: 12px;
  color: var(--ink-mute);
}
.gt-cat-tile-arrow {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--ink-mute);
  transition: color 0.2s, transform 0.2s, background 0.2s;
}
.gt-cat-tile:hover .gt-cat-tile-arrow {
  color: var(--red);
  transform: translateX(2px);
}

@media (min-width: 720px) {
  .gt-cats-tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
}
@media (min-width: 1100px) {
  .gt-cats-tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gt-cat-tile { padding: 18px 20px; gap: 18px; }
  .gt-cat-tile-icon { width: 64px; height: 64px; }
  .gt-cat-tile-name { font-size: 17px; }
}

/* ----------- Wishlist heart : outline / filled states ----------- */
.gt-product-fav .gt-fav-icon {
  display: none;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  pointer-events: none;
}
.gt-product-fav:not(.is-active) .gt-fav-icon--outline {
  display: block;
  color: var(--ink);
  stroke: var(--ink);
}
.gt-product-fav.is-active {
  background: var(--red);
  border: none;
  color: #ffffff;
}
.gt-product-fav.is-active .gt-fav-icon--filled {
  display: block;
  color: #ffffff;
  fill: #ffffff;
}

/* ----------- Favoris page empty state ----------- */
.gt-fav-empty {
  text-align: center;
  padding: 40px 20px 60px;
  max-width: 460px;
  margin: 16px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.gt-fav-empty[hidden] { display: none; }
.gt-fav-empty-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(237, 28, 36, 0.08);
  color: var(--red);
}
.gt-fav-empty h3 {
  margin: 4px 0 0;
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}
.gt-fav-empty p {
  margin: 0;
  max-width: 32ch;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-3);
}
.gt-fav-empty .gt-btn { margin-top: 8px; }

.gt-fav-count {
  margin-left: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
}
.gt-fav-count[hidden] { display: none; }

/* =========================================================
   DESIGN PASS - compact spacing, no red blur/glow
   ========================================================= */
:root {
  --gutter: clamp(12px, 2.4vw, 36px);
  --radius-lg: 16px;
  --shadow-s: 0 1px 4px rgba(10, 11, 13, 0.04);
  --shadow-m: 0 10px 24px -16px rgba(10, 11, 13, 0.22);
  --shadow-l: 0 18px 44px -28px rgba(10, 11, 13, 0.28);
  --shadow-red: none;
  --glow-red: none;
  --glow-red-soft: none;
}

body {
  font-size: 15.5px;
  line-height: 1.5;
}

.gt-nav-wrap.scrolled::after,
.gt-hero-showcase::before,
.gt-product-img::before,
.gt-hero-card-inner::after {
  display: none;
}

.gt-hero h1 .accent,
.gt-hero-carousel-title .accent,
.gt-cat-num,
.gt-cart-summary .row.total .red {
  text-shadow: none;
}

.gt-nav::after,
.gt-icon-btn .gt-badge,
.gt-eyebrow::before,
.gt-btn-primary,
.gt-btn-primary:hover,
.gt-btn-danger,
.gt-btn-danger:hover,
.gt-hero-pill .dot,
.gt-openbox-corner::after,
.gt-hero-carousel-dot.active,
.gt-cat-card:hover,
.gt-cat-card:hover .gt-cat-arrow,
.gt-cat-pill.active,
.gt-product:hover,
.gt-product-fav:hover,
.gt-badge-promo,
.gt-add-btn:hover,
.gt-brand-logo:hover,
.gt-footer::before,
.gt-cart-summary,
.gt-confirmation-icon,
.gt-product-gallery-thumbs button.active,
.gt-hero-card-cta,
.gt-cat-chip:hover,
.gt-cat-chip-badge,
.gt-product--compact:hover,
.gt-add-btn-square:hover,
.gt-info-bar-grid,
.gt-cat-tile:hover {
  box-shadow: none;
}

.gt-hero-pc-img {
  filter: drop-shadow(0 24px 38px rgba(10, 11, 13, 0.18));
}

.gt-cat-pill.active svg {
  filter: none;
}

.gt-cat-card::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, transparent 42%, rgba(0, 0, 0, 0.84) 100%);
}

.gt-cart-summary::before {
  background: none;
}

.gt-hero-card-inner {
  background: linear-gradient(180deg, #ffffff 0%, #f4f5f7 100%);
}

.gt-hero-card-visual-fallback,
.gt-info-bar-icon,
.gt-cat-tile-icon,
.gt-fav-empty-icon,
.gt-modal-icon {
  background: var(--bg-soft);
}

.gt-hero-card-visual-fallback {
  width: min(100%, 150px);
  max-height: 150px;
  margin-left: auto;
}

.gt-product-gallery-thumbs button.is-video {
  background: linear-gradient(135deg, rgba(10, 11, 13, 0.14), rgba(10, 11, 13, 0.86));
}

.gt-announce {
  padding: 7px var(--gutter);
}

.gt-nav-wrap,
.gt-nav-wrap.scrolled {
  padding: 8px var(--gutter);
}

.gt-nav,
.gt-nav-wrap.scrolled .gt-nav {
  padding: 6px 12px;
}

.gt-nav-search {
  padding: 8px 14px;
}

.gt-icon-btn {
  width: 38px;
  height: 38px;
}

.gt-section {
  padding: clamp(26px, 4vw, 54px) var(--gutter);
}

.gt-section-head {
  gap: 20px;
  margin-bottom: 24px;
}

.gt-section-head .gt-head-left {
  gap: 8px;
}

.gt-section-link,
.gt-btn {
  padding: 11px 20px;
}

.gt-btn-sm {
  padding: 8px 14px;
}

.gt-btn-lg {
  padding: 13px 24px;
}

.gt-drawer-panel {
  padding: 14px 16px 18px;
  gap: 16px;
}

.gt-drawer-links a {
  padding: 11px 10px;
}

.gt-hero {
  padding: clamp(14px, 2vw, 24px) var(--gutter) clamp(18px, 2.4vw, 32px);
}

.gt-hero-grid {
  gap: 28px;
  min-height: 500px;
}

.gt-hero-left {
  gap: 16px;
  padding: 12px 0;
}

.gt-hero-showcase,
.gt-hero-showcase.gt-openbox {
  padding: clamp(14px, 2vw, 28px);
}

.gt-hero-meta {
  gap: 22px;
  margin-top: 16px;
  padding-top: 16px;
}

.gt-trust {
  padding: 12px var(--gutter);
}

.gt-trust-row {
  gap: 14px;
}

.gt-trust-item {
  gap: 10px;
}

.gt-cats-grid {
  gap: 12px;
}

.gt-cat-card {
  padding: 18px;
}

.gt-products {
  gap: 14px;
}

.gt-product:not(.gt-product--compact) {
  padding: 10px;
  gap: 10px;
}

.gt-product:hover,
.gt-product--compact:hover,
.gt-cat-card:hover,
.gt-cat-chip:hover,
.gt-cat-tile:hover {
  transform: translateY(-1px);
}

.gt-product:not(.gt-product--compact) .gt-product-badges {
  top: 16px;
  left: 16px;
}

.gt-product:not(.gt-product--compact) .gt-product-fav {
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
}

.gt-product-info {
  gap: 5px;
  padding: 0 2px;
}

.gt-product-foot {
  gap: 8px;
  padding: 9px 2px 0;
}

.gt-add-btn {
  padding: 9px 14px;
}

.gt-footer {
  padding: 38px var(--gutter) 20px;
}

.gt-footer-grid {
  gap: 24px 34px;
}

.gt-footer-socials {
  margin-top: 12px;
}

.gt-flash-stack {
  padding: 0 var(--gutter);
}

.gt-alert {
  padding: 11px 14px;
}

.gt-empty {
  padding: 36px 18px;
}

.gt-panel,
.gt-account-card .gt-panel,
.gt-order-summary {
  padding: 18px;
}

.gt-form-grid {
  gap: 12px;
}

.gt-form-row input,
.gt-form-row textarea,
.gt-form-row select {
  padding: 10px 12px;
}

.gt-filter-bar {
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 8px;
}

.gt-filter-pill {
  padding: 7px 11px;
}

.gt-filter-submit {
  padding: 7px 14px;
}

.gt-product-page {
  gap: 32px;
}

.gt-product-gallery-thumbs {
  gap: 10px;
  padding: 12px;
}

.gt-product-gallery-thumbs button {
  flex-basis: 76px;
  height: 76px;
}

.gt-product-info-side h1 {
  margin: 8px 0 12px;
}

.gt-product-info-side .gt-price-row {
  padding: 12px 0;
  margin-bottom: 16px;
}

.gt-product-desc,
.gt-product-actions {
  margin-bottom: 16px;
}

.gt-product-actions {
  margin-top: 0;
}

.gt-info-blocks {
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
}

.gt-cart-grid,
.gt-checkout-grid {
  gap: 24px;
}

.gt-cart-table th,
.gt-cart-table td {
  padding: 12px 14px;
}

.gt-cart-summary {
  padding: 20px;
}

.gt-cart-summary h4 {
  margin-bottom: 12px;
}

.gt-cart-summary .row {
  padding: 8px 0;
}

.gt-confirmation-icon {
  width: 78px;
  height: 78px;
  margin-bottom: 16px;
}

.gt-hero-card-wrap {
  padding: 8px var(--gutter) 2px;
}

.gt-hero-card-carousel {
  border-radius: 14px;
}

.gt-hero-card-inner {
  gap: 4px;
  padding: 11px 0 18px 12px;
  border-radius: 14px;
}

.gt-hero-card-copy {
  gap: 5px;
}

.gt-hero-card-eyebrow {
  font-size: 9.5px;
}

.gt-hero-card-title {
  font-size: clamp(20px, 5.4vw, 27px);
  line-height: 1;
}

.gt-hero-card-sub {
  font-size: 11.5px;
  line-height: 1.26;
  max-width: 24ch;
}

.gt-hero-card-cta {
  margin-top: 2px;
  padding: 8px 11px;
  font-size: 11.5px;
}

.gt-hero-card-cta .arr {
  width: 16px;
  height: 16px;
  font-size: 11px;
}

.gt-hero-card-visual img {
  max-height: 152px;
}

.gt-hero-card-dots {
  bottom: 8px;
}

.gt-trust.gt-trust--compact {
  padding: 2px var(--gutter) 1px;
}

.gt-trust--compact .gt-trust-row {
  padding: 2px 3px;
  border-radius: 12px;
}

.gt-trust--compact .gt-trust-item {
  gap: 2px;
  min-height: 48px;
  padding: 2px 2px;
}

.gt-trust--compact .gt-trust-icon {
  width: 34px;
  height: 34px;
}

.gt-section--tight {
  padding: 14px var(--gutter) 6px;
}

.gt-section--tight + .gt-section--tight {
  padding-top: 4px;
}

.gt-section-head-simple {
  margin-bottom: 9px;
}

.gt-cat-scroll {
  gap: 7px;
  padding-top: 2px;
  padding-bottom: 6px;
}

.gt-cat-chip {
  width: 108px;
  gap: 4px;
  padding: 9px 5px;
  border-radius: 10px;
}

.gt-cat-chip-icon {
  width: 26px;
  height: 26px;
}

.gt-cat-chip-badge {
  top: 6px;
  right: 6px;
}

.gt-products--home {
  gap: 9px;
}

.gt-product.gt-product--compact {
  padding: 0;
  gap: 0;
  border-radius: 12px;
}

.gt-product.gt-product--compact .gt-product-img {
  border-radius: 0;
  padding: 0;
  width: 100%;
  margin: 0;
}

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

.gt-product.gt-product--compact .gt-product-info {
  padding: 5px 8px 0;
  gap: 2px;
}

.gt-product.gt-product--compact .gt-product-foot {
  padding: 3px 8px 8px;
}

.gt-info-bar {
  padding: 10px var(--gutter) 14px;
}

.gt-info-bar-grid {
  gap: 4px;
  padding: 8px 6px;
  border-radius: 12px;
}

.gt-info-bar-item {
  gap: 4px;
  padding: 4px 2px;
}

.gt-info-bar-icon {
  width: 28px;
  height: 28px;
}

.gt-cat-tile {
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
}

.gt-cat-tile-icon {
  width: 46px;
  height: 46px;
}

.gt-fav-empty {
  padding: 28px 16px 44px;
  gap: 10px;
}

.gt-fav-empty-icon {
  width: 68px;
  height: 68px;
}

.gt-whatsapp-fab,
.gt-whatsapp-fab:hover {
  box-shadow: 0 10px 22px -14px rgba(10, 11, 13, 0.35);
}

.gt-whatsapp-fab-pulse {
  display: none;
}

@media (min-width: 901px) {
  .gt-nav .gt-icon-btn {
    width: 42px;
    height: 42px;
  }

  .gt-hero-card-wrap {
    padding: 10px var(--gutter) 4px;
  }

  .gt-hero-card-inner {
    gap: 18px;
    padding: 28px 32px 32px;
    border-radius: 18px;
  }

  .gt-hero-card-title {
    font-size: clamp(36px, 3.6vw, 56px);
  }

  .gt-hero-card-sub {
    font-size: 15.5px;
  }

  .gt-hero-card-cta {
    padding: 12px 22px;
  }

  .gt-hero-card-visual img {
    max-height: 290px;
  }

  .gt-hero-card-visual-fallback {
    width: min(100%, 220px);
    max-height: 220px;
  }

  .gt-trust--compact .gt-trust-row {
    padding: 5px 12px;
    border-radius: 14px;
  }

  .gt-trust--compact .gt-trust-icon {
    width: 48px;
    height: 48px;
  }

  .gt-section--tight {
    padding: 24px var(--gutter) 10px;
  }

  .gt-section-head-simple {
    margin-bottom: 14px;
  }

  .gt-section-head-simple h2 {
    font-size: 24px;
  }

  .gt-cat-scroll {
    gap: 10px;
  }

  .gt-cat-chip {
    width: 165px;
    min-height: 118px;
    padding: 15px 8px;
    border-radius: 12px;
  }

  .gt-cat-chip-icon {
    width: 38px;
    height: 38px;
  }

  .gt-products--home {
    gap: 14px;
  }

  .gt-product--compact {
    padding: 9px;
    gap: 8px;
    border-radius: 14px;
  }

  .gt-info-bar {
    padding: 18px var(--gutter) 24px;
  }

  .gt-info-bar-grid {
    gap: 8px;
    padding: 14px 12px;
    border-radius: 14px;
  }

  .gt-info-bar-icon {
    width: 34px;
    height: 34px;
  }

  .gt-cats-tiles {
    gap: 12px;
  }

  .gt-cat-tile {
    padding: 14px 16px;
    gap: 14px;
  }

  .gt-cat-tile-icon {
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 900px) {
  body.gt-page-home .gt-products--home > .gt-product:nth-child(n + 7) {
    display: none;
  }

  .gt-section:not(.gt-section--tight) {
    padding: 24px var(--gutter);
  }

  .gt-section.gt-section--tight {
    padding: 14px var(--gutter) 6px;
  }

  .gt-nav-wrap,
  .gt-nav-wrap.scrolled {
    padding: 4px 4px;
  }

  /* Accueil mobile : navbar + annonce — côtés réduits de moitié */
  body.gt-page-home .gt-announce {
    padding-left: 6px;
    padding-right: 6px;
  }

  body.gt-page-home .gt-nav-wrap,
  body.gt-page-home .gt-nav-wrap.scrolled {
    padding-left: 0;
    padding-right: 0;
  }

  body.gt-page-home .gt-nav,
  body.gt-page-home .gt-nav-wrap.scrolled .gt-nav {
    padding-left: 4px;
    padding-right: 4px;
  }

  /* Accueil mobile : fond hero plus léger */
  body.gt-page-home .gt-hero-card-inner {
    min-height: clamp(286px, 60vw, 390px);
    background:
      radial-gradient(110% 85% at 110% 50%, rgba(237, 28, 36, 0.05), transparent 42%),
      radial-gradient(95% 75% at -15% 100%, rgba(237, 28, 36, 0.025), transparent 50%),
      linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    box-shadow: 0 8px 22px -18px rgba(10, 11, 13, 0.1);
  }

  body.gt-page-home .gt-hero-card-eyebrow {
    font-size: var(--gt-carousel-badge-size, 9.5px);
  }

  body.gt-page-home .gt-hero-card-title {
    font-size: var(--gt-carousel-title-size, clamp(20px, 5.4vw, 27px));
  }

  body.gt-page-home .gt-hero-card-sub {
    font-size: var(--gt-carousel-subtitle-size, 11.5px);
  }

  body.gt-page-home .gt-hero-card-cta {
    font-size: var(--gt-carousel-cta-size, 11.5px);
  }

  body.gt-page-home .gt-hero-card-visual img {
    max-height: clamp(190px, 48vw, 230px);
  }

  body.gt-page-home .gt-hero-card-inner.is-full-media {
    background: #07080a;
    border-color: var(--line);
    box-shadow: 0 14px 34px -24px rgba(10, 11, 13, 0.48);
  }

  /* Accueil mobile : réduire la hauteur globale de la card values */
  body.gt-page-home .gt-trust.gt-trust--compact {
    padding-top: 0;
    padding-bottom: 0;
  }

  body.gt-page-home .gt-trust--compact .gt-trust-row {
    padding: 2px 2px;
    border-radius: 11px;
  }

  body.gt-page-home .gt-trust--compact .gt-trust-item {
    gap: 2px;
    min-height: 48px;
    padding: 1px 1px 6px;
  }

  body.gt-page-home .gt-trust--compact .gt-trust-icon {
    width: 35px;
    height: 35px;
  }

  body.gt-page-home .gt-trust--compact .gt-trust-icon svg {
    width: 24px;
    height: 24px;
  }

  body.gt-page-home .gt-trust--compact .gt-trust-text {
    gap: 3px;
  }

  body.gt-page-home .gt-trust--compact .gt-trust-text strong,
  body.gt-page-home .gt-trust--compact .gt-trust-text span {
    -webkit-line-clamp: 1;
    line-height: 1.05;
  }

  body.gt-page-home .gt-trust--compact .gt-trust-text strong {
    font-size: 9.3px;
  }

  body.gt-page-home .gt-trust--compact .gt-trust-text span {
    font-size: 7.8px;
  }

  /* Accueil mobile : 5 catégories visibles par écran */
  body.gt-page-home .gt-cat-scroll {
    --cat-chip-gap: 6px;
    gap: var(--cat-chip-gap);
    /* Pas de bleed à gauche : le 1er chip s’aligne avec le titre de section */
    margin-left: 0;
    padding-left: 0;
    padding-top: 0;
    margin-right: calc(-1 * var(--gutter));
    padding-right: var(--gutter);
    scroll-padding-left: 0;
  }

  body.gt-page-home .gt-cat-scroll > .gt-cat-chip:nth-child(n + 6) {
    display: none;
  }

  body.gt-page-home .gt-cat-chip {
    flex: 0 0 calc((100% - (4 * var(--cat-chip-gap))) / 5);
    width: calc((100% - (4 * var(--cat-chip-gap))) / 5);
    height: 104px;
    min-height: 0;
    grid-template-rows: minmax(0, 3.8fr) minmax(0, 0.2fr) minmax(18px, 1fr);
    gap: 0;
    padding: 7px 0 9px;
    border-radius: 12px;
  }

  body.gt-page-home .gt-cat-chip-icon {
    width: 100%;
    height: 100%;
  }

  body.gt-page-home .gt-cat-chip-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  body.gt-page-home .gt-cat-chip-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.8;
  }

  body.gt-page-home .gt-cat-chip-label {
    font-size: 8.5px;
    letter-spacing: 0;
    padding: 0 3px;
    min-height: 18px;
    line-height: 1.05;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
  }

  body.gt-page-home .gt-section-head-simple h2 {
    font-size: 17px;
  }

  .gt-nav,
  .gt-nav-wrap.scrolled .gt-nav {
    padding: 4px 8px;
  }

  .gt-search-sheet {
    padding: 10px 12px;
  }

  .gt-search-sheet form {
    padding: 8px 12px;
  }

  .gt-filter-bar.is-drawer {
    gap: 12px;
    padding: 14px 14px calc(16px + env(safe-area-inset-bottom));
  }

  .gt-filter-bar.is-drawer::before {
    margin-bottom: 8px;
  }

  .gt-filter-bar.is-drawer .gt-filter-pill input[type="number"],
  .gt-filter-bar.is-drawer .gt-filter-pill input[type="search"],
  .gt-filter-bar.is-drawer .gt-filter-pill input[type="text"],
  .gt-filter-bar.is-drawer .gt-filter-pill select {
    padding: 12px 14px;
  }

  .gt-filter-bar.is-drawer .gt-filter-pill--check {
    padding: 12px 14px;
  }

  .gt-filter-bar.is-drawer .gt-filter-pill select:focus {
    background-image:
      linear-gradient(var(--ink), var(--ink)),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a0b0d' stroke-width='2' stroke-linecap='square' stroke-linejoin='miter'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  }

  .gt-filter-bar.is-drawer .gt-filter-pill--check input[type="checkbox"]:focus-visible {
    box-shadow: 0 0 0 2px rgba(10, 11, 13, 0.14);
  }

  .gt-filter-bar.is-drawer .gt-filter-submit {
    padding: 13px;
  }

  .gt-hero-showcase::before {
    display: none;
  }

  .gt-cart-table tr {
    padding: 11px;
  }
}

@media (max-width: 600px) {
  .gt-page-search {
    padding: 7px 7px 7px 12px;
  }

  .gt-page-search-submit {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .gt-section:not(.gt-section--tight) {
    padding: 20px var(--gutter);
  }

  .gt-section.gt-section--tight {
    padding: 12px var(--gutter) 6px;
  }

  .gt-products {
    gap: 8px;
  }

  .gt-product:not(.gt-product--compact) {
    padding: 8px;
    gap: 8px;
  }

  .gt-product.gt-product--compact {
    padding: 0;
    gap: 0;
  }

  body.gt-page-home .gt-cat-chip {
    flex: 0 0 calc((100% - (4 * var(--cat-chip-gap, 6px))) / 5);
    width: calc((100% - (4 * var(--cat-chip-gap, 6px))) / 5);
  }

  .gt-info-bar-text span {
    display: none;
  }
}
.gt-fav-item[hidden] { display: none; }

/* ----------- Harmonized secondary pages (catalog, detail, cart, account…) ----------- */
.gt-section-head-simple--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.gt-section-head-simple--center {
  align-items: center;
  text-align: center;
  width: 100%;
}
.gt-section-lead {
  margin: -2px 0 14px;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-3);
}
.gt-section-lead--center {
  text-align: center;
  margin-bottom: 18px;
}
.gt-block-follow {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.gt-panel-title {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
}
.gt-btn-block {
  width: 100%;
  margin-top: 14px;
}
.gt-btn-ghost--on-dark {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}
.gt-btn-whatsapp {
  background: #25D366;
  color: white;
}
.gt-btn-whatsapp:hover {
  background: #1ebe57;
  color: white;
}
.gt-account-card--wide { max-width: 640px; }
.gt-account-footnote {
  text-align: center;
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--ink-mute);
}
.gt-account-footnote a {
  color: var(--red);
  font-weight: 600;
  margin-left: 4px;
}
.gt-panel--flush {
  padding: 0;
  overflow: hidden;
}
.gt-cart-table--flat {
  border: none;
  border-radius: 0;
}
.gt-mono { font-family: var(--f-mono); }
.gt-total-red { color: var(--red); }
.gt-confirmation-actions {
  margin: 20px 0;
}
.gt-confirmation-icon--whatsapp {
  background: #dcfce7;
  color: #16a34a;
  box-shadow: 0 0 0 8px white, 0 0 80px -8px rgba(34, 197, 94, 0.55);
}

.gt-section--tight .gt-page-search { margin-bottom: 10px; }
.gt-section--tight .gt-filter-toggle { margin-bottom: 10px; }
.gt-section--tight .gt-filter-bar:not(.is-drawer) { margin-bottom: 12px; }
.gt-section--tight .gt-product-page { gap: 20px; }
.gt-section--tight .gt-breadcrumb-simple { margin-bottom: 10px; }
.gt-section--tight .gt-category-hero-img {
  margin-bottom: 12px;
  border-radius: 0;
  overflow: visible;
}
.gt-section--tight .gt-category-hero-img img { border-radius: 0; }
.gt-section--tight .gt-cart-grid,
.gt-section--tight .gt-checkout-grid {
  gap: 20px;
  margin-top: 2px;
}
.gt-section--tight .gt-cart-table th,
.gt-section--tight .gt-cart-table td { padding: 12px 14px; }
.gt-section--tight .gt-cart-summary { padding: 20px; border-radius: 14px; }
.gt-section--tight .gt-account-card .gt-panel {
  padding: 20px;
  border-radius: 14px;
}
.gt-section--tight .gt-confirmation h2 {
  font-size: clamp(22px, 5.5vw, 32px);
}
.gt-section--tight .gt-confirmation-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 14px;
  font-size: 36px;
}
.gt-section--tight .gt-order-summary {
  margin-top: 18px;
  padding: 18px;
  border-radius: 14px;
}
.gt-section--tight .gt-order-summary .gt-total-row { font-size: 20px; }
.gt-section--tight .gt-empty:not(.gt-fav-empty) { padding: 28px 16px 36px; }

@media (max-width: 900px) {
  .gt-section--tight .gt-product-info-side h1 {
    font-size: clamp(22px, 5.5vw, 28px);
    margin: 8px 0 12px;
  }
  .gt-section--tight .gt-product-info-side .gt-price-row {
    padding: 12px 0;
    margin-bottom: 16px;
  }
  .gt-section--tight .gt-product-info-side .gt-price-row .now { font-size: 28px; }
  .gt-section--tight .gt-product-gallery-thumbs { padding: 10px; gap: 8px; }
  .gt-section--tight .gt-product-gallery-thumbs button {
    flex: 0 0 64px;
    height: 64px;
  }
}

@media (min-width: 901px) {
  .gt-section-head-simple--stack h2 { font-size: 28px; }
  .gt-section-lead { font-size: 14px; margin-bottom: 18px; }
  .gt-panel-title { font-size: 20px; }
  .gt-section--tight .gt-product-page { gap: 32px; }
  .gt-section--tight .gt-cart-grid,
  .gt-section--tight .gt-checkout-grid { gap: 28px; }
}

/* =========================================================
   HERO DUAL — desktop 3D / wow + mobile card
   ========================================================= */
@media (min-width: 901px) {
  .gt-hero-card-wrap { display: none !important; }

  .gt-hero--static .gt-hero-grid {
    min-height: 580px;
    gap: 40px;
  }

  .gt-hero--static .gt-hero-left {
    gap: 22px;
    padding: 20px 0;
  }

  .gt-hero--static .gt-hero h1 {
    font-size: clamp(40px, 5.2vw, 82px);
    line-height: 0.98;
  }

  .gt-hero--static .gt-hero-desc {
    font-size: 19px;
    max-width: 500px;
  }

  .gt-hero--static .gt-hero-showcase {
    min-height: 460px;
    padding: 28px;
  }

  .gt-hero--static .gt-hero-showcase::before {
    display: block !important;
    inset: 8%;
    filter: blur(60px);
    animation: gt-glow 6s ease-in-out infinite;
  }

  .gt-hero--static .gt-hero h1 .accent,
  .gt-hero-carousel .gt-hero-carousel-title .accent {
    text-shadow: 0 0 60px rgba(237, 28, 36, 0.35);
  }

  .gt-hero--static .gt-hero-pill .dot {
    box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.25), 0 0 8px var(--red);
  }

  .gt-hero--static .gt-openbox-corner::after {
    box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.18), 0 0 10px var(--red);
  }

  .gt-hero--static .gt-hero-pc {
    min-height: 560px;
    animation: gt-floatY 6s ease-in-out infinite;
  }

  .gt-hero--static .gt-hero-pc model-viewer {
    min-height: 560px;
  }

  .gt-hero--static .gt-hero-pc-img {
    max-height: 580px;
    filter: drop-shadow(0 40px 80px rgba(10, 11, 13, 0.35)) drop-shadow(0 0 60px rgba(237, 28, 36, 0.35)) !important;
  }

  .gt-hero--static .gt-hero-model-loader {
    box-shadow: 0 18px 50px rgba(10, 11, 13, 0.12);
  }

  .gt-hero--static .gt-hero-meta .v {
    font-size: 26px;
  }

  .gt-hero-carousel-dot.active {
    box-shadow: 0 0 12px rgba(237, 28, 36, 0.6);
  }
}

@media (max-width: 900px) {
  .gt-hero--static,
  #gtHeroCarouselDesktop {
    display: none !important;
  }
}
