/* ================================================
   ASKUNIVERSE — STYLESHEET
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anybody:ital,wdth,wght@0,75..125,100..900;1,75..125,100..900&display=swap');

/* ---- Custom Properties ---- */
:root {
  --bg:           #000000;
  --bg-2:         #0a0a0a;
  --bg-3:         #111111;
  --bg-4:         #1a1a1a;
  --text:         #ffffff;
  --text-muted:   rgba(255,255,255,0.45);
  --text-dim:     rgba(255,255,255,0.18);
  --border:       rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.22);
  --font:         'Anybody', sans-serif;
  --nav-h:        72px;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
  --cta:          #E8192C;
  --cta-hover:    #c4111f;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); color: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: var(--font); }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }

/* ---- Logo image ---- */
.logo-img {
  height: 34px;
  width: auto;
  display: block;
  /* Force le logo en blanc sur fond sombre.
     Supprimer ce filter si le logo est déjà blanc/clair. */
  filter: brightness(0) invert(1);
  transition: opacity 0.25s;
}
.nav-logo:hover .logo-img { opacity: 0.6; }

.hero-logo-img {
  display: block;
  width: clamp(180px, 26vw, 360px);
  height: auto;
  filter: brightness(0) invert(1);
  margin: 0 auto 32px;
  opacity: 0;
  animation: fadeIn 1.4s var(--ease) 0.2s forwards;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
  opacity: 0.75;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 48px;
  transition: background 0.45s var(--ease), border-color 0.45s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-color: var(--border);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.nav-links {
  display: flex;
  gap: 44px;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--text);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  z-index: 2;
}
.nav-cart-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: opacity 0.25s;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-cart-btn:hover { opacity: 0.6; }
.cart-count {
  position: absolute;
  top: -9px; right: -12px;
  width: 18px; height: 18px;
  background: var(--text);
  color: var(--bg);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: scale(0.8);
}
.cart-count.visible { opacity: 1; transform: scale(1); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: all 0.35s var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-size: clamp(38px, 9vw, 70px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--text-muted);
  transition: color 0.25s;
}
.mobile-menu a:hover { color: var(--text); }
.mobile-menu-bottom {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 32px;
}
.mobile-menu-bottom a {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  color: var(--text-dim) !important;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 1;
}
.hero-placeholder {
  width: 100%; height: 100%;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(255,255,255,0.028) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 40%, rgba(255,255,255,0.018) 0%, transparent 70%);
  animation: heroGlow 10s ease-in-out infinite alternate;
}
.hero-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,0.008) 80px, rgba(255,255,255,0.008) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,0.008) 80px, rgba(255,255,255,0.008) 81px);
}
@keyframes heroGlow {
  0%   { opacity: 0.5; transform: scale(1) translateX(0); }
  100% { opacity: 1;   transform: scale(1.06) translateX(-1%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, transparent 65%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.3s forwards;
}
.hero-title {
  font-size: clamp(80px, 12.5vw, 180px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}
.hero-sub {
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.65s forwards;
}
.hero-cta {
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.8s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.4s forwards;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero-scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0.3; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 42px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-primary {
  background: var(--cta);
  color: #fff;
  border: 1px solid var(--cta);
}
.btn-primary:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn-sm {
  padding: 13px 28px;
  font-size: 10px;
}
.btn svg { flex-shrink: 0; }

/* ---- Sections ---- */
.section       { padding: 120px 48px; position: relative; }
.section-sm    { padding: 80px 48px; }
.section-alt   { background: var(--bg-2); }
.section-alt-2 { background: var(--bg-3); }
.container     { max-width: 1320px; margin: 0 auto; }

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.44s; }

/* ---- Section header ---- */
.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
  display: block;
}
.section-title {
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.section-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 480px;
}

/* ---- Home: Brand intro ---- */
.brand-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.brand-intro-ghost {
  font-size: clamp(100px, 15vw, 220px);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
  white-space: nowrap;
}
.brand-intro-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ---- Products grid ---- */
.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.product-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  display: block;
  background: var(--bg-3);
}
.product-card-img {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, #0f0f0f 0%, #1c1c1c 100%);
  position: relative;
  overflow: hidden;
  transition: transform 0.7s var(--ease);
}
.product-card-img::before {
  content: 'AU';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(50px, 7vw, 100px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.04);
  transition: opacity 0.4s;
}
.product-card:hover .product-card-img { transform: scale(1.05); }
.product-card-img.has-image { background: #111; }
.product-card-img.has-image::before { display: none; }
.product-gallery-main.has-image::before { display: none; }
.product-gallery-thumb.has-image::before { display: none; }
.cart-item-img.has-image { background: #111; }
.cart-item-img.has-image::before { display: none; }
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 55%);
  z-index: 1;
}
.product-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  z-index: 2;
  transform: translateY(6px);
  transition: transform 0.35s var(--ease);
}
.product-card:hover .product-card-info { transform: translateY(0); }
.product-card-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.product-card-price {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}
.stock-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 4px;
}
.stock-out  { background: #fef2f2; color: #b91c1c; }
.stock-low  { background: #fffbeb; color: #b45309; }

.shop-item.out-of-stock .product-card { opacity: 0.6; }

/* ---- Color swatches (product page & shop grid) ---- */
.color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
  outline: none;
  padding: 0;
}
.color-swatch.active,
.color-swatch:hover {
  border-color: var(--text);
  transform: scale(1.15);
}
.color-swatches-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.product-card-btn {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 3;
  background: var(--text);
  color: var(--bg);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.75) translateY(-4px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.product-card:hover .product-card-btn {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ---- Statement section ---- */
.statement {
  padding: 160px 48px;
  text-align: center;
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
}
.statement::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 320px;
  font-weight: 900;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
}
.statement-text {
  font-size: clamp(28px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 1000px;
  margin: 0 auto;
}
.statement-origin {
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---- Shop page ---- */
.shop-header {
  padding: 160px 48px 60px;
  border-bottom: 1px solid var(--border);
}
.shop-header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.shop-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.shop-filters::-webkit-scrollbar { display: none; }
.filter-btn {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.25s;
  white-space: nowrap;
  cursor: pointer;
  background: none;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--text);
  color: var(--text);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 2px;
}
.shop-item {
  transition: opacity 0.3s, transform 0.3s;
}
.shop-item.hidden {
  display: none;
}

/* ---- Product detail ---- */
.product-detail {
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.product-gallery {
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-gallery-main {
  flex: 1;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}
.product-gallery-main::before {
  content: 'AU';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.04);
}
.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  height: 120px;
  flex-shrink: 0;
}
.product-gallery-thumb {
  background: var(--bg-3);
  cursor: pointer;
  transition: opacity 0.25s;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.product-gallery-thumb::before {
  content: 'AU';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: rgba(255,255,255,0.07);
}
.product-gallery-thumb:hover { opacity: 0.7; }
.product-gallery-thumb.active { border-color: rgba(255,255,255,0.4); }

.product-info {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow-y: auto;
  border-left: 1px solid var(--border);
}
.product-info-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.product-info-name {
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.product-info-price {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.divider {
  height: 1px;
  background: var(--border);
  flex-shrink: 0;
}

.size-selector h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.size-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.size-btn {
  width: 52px; height: 52px;
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  transition: all 0.22s;
  cursor: pointer;
  background: none;
}
.size-btn:hover {
  border-color: var(--text);
  color: var(--text);
}
.size-btn-out {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  width: 52px; height: 52px;
  border: 1px solid var(--border);
  background: none;
  color: var(--text-muted);
}
.size-btn.selected {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.size-btn.unavailable {
  opacity: 0.2;
  cursor: not-allowed;
  text-decoration: line-through;
  pointer-events: none;
}

.qty-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.qty-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
}
.qty-btn {
  width: 44px; height: 44px;
  font-size: 18px;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--bg-3); }
.qty-value {
  width: 48px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  height: 44px;
  line-height: 44px;
  user-select: none;
}

.add-to-cart-btn {
  width: 100%;
  padding: 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--cta);
  color: #fff;
  transition: all 0.35s var(--ease);
  border: 1px solid var(--cta);
  cursor: pointer;
}
.add-to-cart-btn:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
}

.product-desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
}
.product-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.product-feature::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--text-dim);
  flex-shrink: 0;
}

/* ---- Similar products ---- */
.similar-section {
  padding: 80px 48px 100px;
  border-top: 1px solid var(--border);
}
.similar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 40px;
}

/* ---- About page ---- */
.about-hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 48px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.about-hero-ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(120px, 22vw, 360px);
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  letter-spacing: -0.04em;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.about-hero-content { position: relative; z-index: 1; }
.about-hero-title {
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.about-section {
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-section.reverse { direction: rtl; }
.about-section.reverse > * { direction: ltr; }

.about-image {
  aspect-ratio: 4/5;
  background: var(--bg-2);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.about-image::before {
  content: 'AU';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
}
.about-text-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.about-stat-cell {
  padding: 52px 44px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-stat-num {
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.about-stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.manifesto {
  padding: 140px 48px;
  text-align: center;
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
}
.manifesto-text {
  font-size: clamp(26px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.015em;
  max-width: 960px;
  margin: 0 auto 48px;
}

/* ---- Contact page ---- */
.contact-hero {
  padding: calc(var(--nav-h) + 80px) 48px 60px;
  border-bottom: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 48px 100px;
}
.contact-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-input {
  background: transparent;
  border: 1px solid var(--border);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
  appearance: none;
}
.form-input:focus { border-color: rgba(255,255,255,0.35); }
.form-input::placeholder { color: var(--text-dim); }
textarea.form-input { resize: vertical; min-height: 140px; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 4px;
}
.contact-info-block h3 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.contact-info-block p,
.contact-info-block a {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
  display: block;
}
.contact-info-block a:hover { opacity: 0.55; }

/* ---- FAQ ---- */
.faq-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 48px 120px;
}
.faq-heading {
  margin-bottom: 52px;
}
.faq-item {
  border-top: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  gap: 24px;
  transition: opacity 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}
.faq-question:hover { opacity: 0.65; }
.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.faq-icon::before {
  width: 14px; height: 1.5px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::after {
  width: 1.5px; height: 14px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.42s var(--ease);
}
.faq-answer-inner {
  padding: 0 0 28px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 620px;
}

/* ---- Cart Drawer ---- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: #060606;
  border-left: 1px solid var(--border);
  z-index: 1999;
  transform: translateX(100%);
  transition: transform 0.48s var(--ease);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-header h2 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cart-close {
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.cart-close:hover { color: var(--text); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.cart-items {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 80px 32px;
  text-align: center;
}
.cart-empty-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 16px;
  align-items: start;
}
.cart-item-img {
  aspect-ratio: 3/4;
  background: var(--bg-3);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.cart-item-img::before {
  content: 'AU';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: rgba(255,255,255,0.07);
}
.cart-item-info { display: flex; flex-direction: column; gap: 4px; }
.cart-item-name {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cart-item-meta {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.cart-item-remove {
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
}
.cart-item-remove:hover { color: var(--text-muted); }
.cart-item-price {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.cart-footer {
  padding: 24px 32px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cart-checkout-btn {
  width: 100%;
  padding: 18px;
  background: var(--cta);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--cta);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: block;
  text-align: center;
}
.cart-checkout-btn:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
}

/* ---- Checkout ---- */
.checkout-page {
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 400px;
}
.checkout-left {
  padding: 60px 60px 80px;
  border-right: 1px solid var(--border);
}
.checkout-right {
  padding: 60px 48px;
  background: var(--bg-2);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.checkout-step-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.checkout-order-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.checkout-order-img {
  width: 60px;
  aspect-ratio: 3/4;
  background: var(--bg-3);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.checkout-order-img::before {
  content: 'AU';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: rgba(255,255,255,0.07);
}
.checkout-order-name {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex: 1;
}
.checkout-order-price {
  font-size: 12px;
  font-weight: 600;
}
.checkout-total-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-muted);
}
.checkout-total-final {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
  font-size: 15px;
  font-weight: 700;
  margin-top: 8px;
}
.checkout-confirm-btn {
  width: 100%;
  padding: 20px;
  background: var(--cta);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--cta);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  margin-top: 32px;
}
.checkout-confirm-btn:hover {
  background: var(--cta-hover);
  border-color: var(--cta-hover);
}

/* ---- Confirmation page ---- */
.confirmation-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 40px;
}
.confirmation-icon {
  width: 64px; height: 64px;
  border: 1px solid var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 48px;
}

/* ---- Footer ---- */
.footer {
  border-top: 1px solid var(--border);
  padding: 72px 48px;
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
.footer-brand-name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-brand-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 260px;
}
.footer-col-title {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 13px;
  transition: color 0.22s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}
.footer-legal {
  display: flex;
  gap: 28px;
}
.footer-legal a {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--text-muted); }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  transition: transform 0.2s, filter 0.2s;
}
.footer-social a:hover {
  transform: scale(1.1);
  filter: brightness(1.15);
}
.footer-social-ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.footer-social-tt {
  background: #010101;
  border: 1px solid #333;
}
.footer-social svg { display: block; }

/* ---- Cookie banner ---- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 2000;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  padding: 24px 48px;
  display: flex;
  align-items: center;
  gap: 36px;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text {
  flex: 1;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.cookie-text a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn-accept {
  padding: 12px 24px;
  background: var(--text);
  color: var(--bg);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cookie-btn-accept:hover { opacity: 0.82; }
.cookie-btn-refuse {
  padding: 12px 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  transition: all 0.22s;
}
.cookie-btn-refuse:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

/* ---- Toast ---- */
.toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--text);
  color: var(--bg);
  padding: 16px 30px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 3000;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s var(--ease);
  pointer-events: none;
  white-space: nowrap;
}
.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.lightbox.open { opacity: 1; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  user-select: none;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  padding: 4px 8px;
}
.lightbox-close:hover { opacity: 1; }

/* ---- Page transition overlay ---- */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  transform-origin: bottom;
  transform: scaleY(1);
  pointer-events: none;
  transition: transform 0.45s var(--ease-out);
}
.page-transition.out { transform: scaleY(0); }

/* ---- Legal page ---- */
.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 140px 48px 100px;
}
.legal-wrap h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 72px;
}
.legal-wrap h2 {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 52px;
  margin-bottom: 14px;
  padding-top: 52px;
  border-top: 1px solid var(--border);
}
.legal-wrap h2:first-of-type { border-top: none; }
.legal-wrap p,
.legal-wrap li {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.legal-wrap ul { padding-left: 20px; list-style: disc; }
.legal-wrap a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }

/* ---- Keyframes ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 1100px) {
  .products-grid     { grid-template-columns: repeat(2, 1fr); }
  .shop-grid         { grid-template-columns: repeat(2, 1fr); }
  .similar-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 48px; }
  .product-detail    { grid-template-columns: 1fr; }
  .product-gallery   { position: static; height: auto; }
  .product-gallery-main { height: 60vw; }
  .product-info      { padding: 48px 40px; border-left: none; border-top: 1px solid var(--border); }
  .checkout-page     { grid-template-columns: 1fr; }
  .checkout-right    { position: static; height: auto; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav  { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .section    { padding: 80px 20px; }
  .section-sm { padding: 60px 20px; }
  .shop-header { padding: 120px 20px 44px; }
  .shop-header-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .shop-filters { padding: 16px 20px; }
  .brand-intro    { grid-template-columns: 1fr; gap: 40px; }
  .about-section  { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  .about-section.reverse { direction: ltr; }
  .about-stats    { grid-template-columns: 1fr; }
  .manifesto      { padding: 90px 20px; }
  .contact-hero   { padding: calc(var(--nav-h) + 60px) 20px 48px; }
  .contact-grid   { grid-template-columns: 1fr; gap: 56px; padding: 60px 20px 80px; }
  .faq-wrap       { padding: 60px 20px 80px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer         { padding: 52px 20px; }
  .footer-bottom  { flex-direction: column; gap: 16px; text-align: center; }
  .footer-legal   { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .cookie-banner  { flex-direction: column; padding: 20px; align-items: flex-start; gap: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-btn-accept,
  .cookie-btn-refuse { flex: 1; text-align: center; }
  .about-hero { padding: 0 20px 60px; padding-top: var(--nav-h); }
  .about-hero-title { font-size: clamp(44px, 11vw, 90px); }
  .statement { padding: 100px 20px; }
  .similar-section { padding: 60px 20px 80px; }
  .checkout-left { padding: 48px 20px 60px; }
  .checkout-right { padding: 40px 20px; }
  .product-info { padding: 40px 20px; }
  .legal-wrap { padding: 120px 20px 80px; }
}

@media (max-width: 480px) {
  .products-grid  { grid-template-columns: repeat(2, 1fr); }
  .shop-grid      { grid-template-columns: repeat(2, 1fr); }
  .similar-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .cart-drawer    { width: 100vw; }
  .hero-title     { font-size: clamp(58px, 15vw, 100px); }
}

/* ---- Logo images ---- */
.logo-img {
  height: 34px;
  width: auto;
  display: block;
  /* Si le logo n'apparaît pas (logo sombre sur fond sombre),
     décommentez la ligne suivante pour l'inverser en blanc : */
  /* filter: brightness(0) invert(1); */
}
.nav-logo:hover .logo-img { opacity: 0.7; }

.hero-logo-img {
  width: clamp(180px, 28vw, 340px);
  height: auto;
  display: block;
  margin: 0 auto 20px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.35s forwards;
  /* filter: brightness(0) invert(1); */
}

.footer-logo-img {
  height: 30px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  /* filter: brightness(0) invert(1); */
}

/* ---- Hero CTA (Shop button) ---- */
.hero-cta-wrap {
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.9s forwards;
}

/* ---- Payment icons ---- */
.payment-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.pay-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  min-width: 38px;
  padding: 0 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  user-select: none;
}
.pay-visa {
  background: #1A1F71;
  color: #fff;
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.01em;
}
.pay-mc {
  background: #fff;
  padding: 0 5px;
  gap: 0;
  overflow: visible;
  position: relative;
  min-width: 42px;
}
.pay-mc-left,
.pay-mc-right {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pay-mc-left  { background: #EB001B; }
.pay-mc-right { background: #F79E1B; margin-left: -6px; }
.pay-twint {
  background: #E2000F;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}
.pay-paypal {
  background: #003087;
  color: #fff;
  letter-spacing: 0.01em;
}
.pay-cb {
  background: rgba(255,255,255,0.08);
  color: var(--text-muted);
  border: 1px solid var(--border);
  letter-spacing: 0.06em;
}
