﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Chakra+Petch:wght@500;600;700&display=swap');

:root {
  --primary:       #d8962f;
  --primary-dark:  #b87a20;
  --primary-bright:#ffc766;
  --primary-light: rgba(216, 150, 47, 0.12);
  --primary-glow:  rgba(216, 150, 47, 0.45);
  --bg:      #0e0e14;
  --surface: #16161e;
  --card:    #1c1c26;
  --glass:   rgba(28, 28, 38, 0.55);
  --text:    #f0f0f6;
  --muted:   rgba(240, 240, 246, 0.50);
  --border:  rgba(255, 255, 255, 0.07);
  --border-glow: rgba(216, 150, 47, 0.4);
  --dark:    #0a0a10;
  --font-display: 'Chakra Petch', Inter, system-ui, sans-serif;
  --ease-fluid: cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse 900px 500px at 12% -8%, rgba(216, 150, 47, 0.10), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 12%, rgba(216, 150, 47, 0.07), transparent 55%),
    var(--bg);
  background-attachment: fixed;
  line-height: 1.6;
}

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

a {
  transition: color 0.2s var(--ease-fluid);
}

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

/* ── SCROLLBAR ── */
::selection {
  background: rgba(216, 150, 47, 0.35);
  color: #fff;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--primary-dark), var(--primary));
  border-radius: 999px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-bright);
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-dark) var(--bg);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── ALERT BANNER ── */
.alert-banner {
  background: linear-gradient(90deg, #b87a20, #d8962f, #e8a840, #d8962f, #b87a20);
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
  color: #19191e;
  padding: 0.55rem 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  overflow: hidden;
  width: 100%;
}

.alert-banner-track {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 18s linear infinite;
  -webkit-animation: ticker 18s linear infinite;
}

.alert-banner-track span {
  display: inline-block;
  padding: 0 3rem;
}

@-webkit-keyframes ticker {
  0%   { -webkit-transform: translateX(0); }
  100% { -webkit-transform: translateX(-25%); }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(19, 19, 24, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(216, 150, 47, 0.2);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  position: relative;
}

.site-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 150, 47, 0.9), transparent);
  background-size: 200% 100%;
  animation: headerGlowSweep 6s linear infinite;
  pointer-events: none;
}

@keyframes headerGlowSweep {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  line-height: 1;
  text-shadow: 0 0 18px rgba(216, 150, 47, 0.45);
  transition: text-shadow 0.3s var(--ease-fluid);
}

.brand:hover {
  text-shadow: 0 0 26px rgba(216, 150, 47, 0.75), 0 0 6px rgba(255, 199, 102, 0.6);
}

.brand span {
  color: #ffffff;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s var(--ease-fluid);
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(216, 150, 47, 0.8);
  transition: right 0.3s var(--ease-fluid);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cart-badge {
  display: inline-flex;
  min-width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  padding: 0 0.4rem;
  background: var(--primary);
  color: #19191e;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  border: none;
  background: transparent;
  padding: 0.5rem;
  cursor: pointer;
  flex-shrink: 0;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-nav-overlay {
  display: none;
}

.desktop-cta {
  flex-shrink: 0;
}

/* ── HEADER SEARCH + CART ICON ── */
.header-search {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.3rem 0.3rem 1.1rem;
  gap: 0.5rem;
  transition: border-color 0.25s var(--ease-fluid), background 0.25s var(--ease-fluid);
}

.header-search:focus-within {
  border-color: rgba(216, 150, 47, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.header-search input {
  flex: 1;
  width: 100%;
  min-width: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 0.85rem;
  font-family: inherit;
}

.header-search input::placeholder {
  color: var(--muted);
}

.header-search button {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #19191e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s var(--ease-fluid), box-shadow 0.2s var(--ease-fluid);
}

.header-search button:hover {
  transform: scale(1.06);
  box-shadow: 0 0 16px rgba(216, 150, 47, 0.5);
}

.header-cart-icon {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--text);
  flex-shrink: 0;
  text-decoration: none;
  transition: border-color 0.25s var(--ease-fluid), background 0.25s var(--ease-fluid);
}

.header-cart-icon:hover {
  border-color: rgba(216, 150, 47, 0.5);
  background: rgba(216, 150, 47, 0.1);
}

.header-cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  font-size: 0.65rem;
  padding: 0 0.3rem;
}

/* ── BUTTONS ── */
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.75rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.25s var(--ease-fluid), box-shadow 0.25s var(--ease-fluid), background 0.25s var(--ease-fluid), opacity 0.2s;
  white-space: nowrap;
  line-height: 1;
  overflow: hidden;
  isolation: isolate;
}

.button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,0.35) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease-fluid);
  z-index: 1;
  pointer-events: none;
}

.button:hover::before {
  transform: translateX(120%);
}

.button:active {
  transform: translateY(0) scale(0.97);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary-bright), var(--primary) 55%, var(--primary-dark));
  color: #19191e;
  box-shadow: 0 4px 16px rgba(216, 150, 47, 0.35);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--primary-bright), var(--primary-dark) 65%);
  box-shadow: 0 8px 36px rgba(216, 150, 47, 0.6), 0 0 0 3px rgba(216,150,47,0.18);
}

.button-secondary {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(216, 150, 47, 0.3);
}

.button-secondary:hover {
  background: rgba(216, 150, 47, 0.2);
  box-shadow: none;
}

.button-outline {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(216, 150, 47, 0.5);
  box-shadow: 0 0 24px rgba(216, 150, 47, 0.15);
}

.button-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

/* ── HERO ── */
.hero {
  background: url('images/hero-banner.png') center center / cover no-repeat;
  padding: 5rem 0 4.5rem;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,22,0.82) 0%, rgba(25,20,10,0.72) 60%, rgba(17,17,22,0.65) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(216, 150, 47, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  display: flex;
  flex-direction: column;
}

.eyebrow {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  background: rgba(216, 150, 47, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 150, 47, 0.25);
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: #ffffff;
  letter-spacing: -0.025em;
}

.hero h1 .highlight {
  color: var(--primary);
}

.hero-text > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stats strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.hero-stats span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 1.2rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 40px rgba(216, 150, 47, 0.18));
}

.hero-brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.brand-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(216, 150, 47, 0.18);
  border-radius: 18px;
  padding: 1.1rem 0.75rem;
  text-align: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  cursor: default;
}

.brand-card:hover {
  background: rgba(216, 150, 47, 0.1);
  border-color: rgba(216, 150, 47, 0.4);
  transform: translateY(-3px);
}

.brand-card-icon {
  font-size: 2rem;
  margin-bottom: 0.4rem;
  display: block;
  line-height: 1;
}

.brand-card-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  line-height: 1.2;
}

.brand-card-price {
  font-size: 0.68rem;
  color: var(--primary);
  font-weight: 600;
  display: block;
  margin-top: 0.3rem;
}

/* ── SECTIONS ── */
.section {
  padding: 4rem 0;
}

.section-light {
  background: #13131c;
}

.section-trust {
  background: #19191e;
}

.section-bestsellers {
  padding-bottom: 1rem;
}

.section-tight-top {
  padding-top: 1rem;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 22px rgba(216, 150, 47, 0.18));
}

.section-header p {
  color: var(--muted);
  font-size: 1rem;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.section-header-row .section-header {
  margin-bottom: 0;
}

/* ── GRID ── */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

/* Best-sellers : toujours 2 colonnes sur tablette/desktop */
@media (min-width: 601px) {
  #featuredHeroes.grid-4 {
    grid-template-columns: repeat(2, minmax(240px, 360px));
    justify-content: center;
  }
}

/* Populaires : toujours 3 colonnes sur tablette/desktop */
@media (min-width: 601px) {
  #popularProducts.grid-4 {
    grid-template-columns: repeat(3, minmax(210px, 1fr));
  }
}

/* ── CATEGORY CARROUSEL ── */
.category-carousel-wrap {
  position: relative;
}

.category-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.2rem 0.2rem 0.75rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.category-carousel::-webkit-scrollbar {
  display: none;
}

.cat-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(19, 19, 24, 0.85);
  backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s var(--ease-fluid), box-shadow 0.25s var(--ease-fluid), transform 0.25s var(--ease-fluid);
}

.cat-arrow:hover {
  border-color: rgba(216, 150, 47, 0.55);
  box-shadow: 0 0 18px rgba(216, 150, 47, 0.35);
  transform: translateY(-50%) scale(1.06);
}

.cat-prev { left: -10px; }
.cat-next { right: -10px; }

/* ── CATEGORY CARD ── */
.category-card {
  flex: 0 0 calc(50% - 0.5rem);
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-fluid), box-shadow 0.3s var(--ease-fluid), border-color 0.3s var(--ease-fluid);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(216, 150, 47, 0.25), 0 0 0 1px rgba(216,150,47,.35), 0 0 40px rgba(216,150,47,0.12);
  border-color: rgba(216, 150, 47, 0.55);
}

.category-card-icon-wrap {
  position: relative;
  height: 108px;
  overflow: hidden;
  background: linear-gradient(115deg, var(--primary-dark) 0%, var(--primary) 42%, var(--card) 42%, var(--card) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-card-icon {
  font-size: 2.5rem;
  line-height: 1;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
  position: relative;
  z-index: 1;
}

.category-card h3 {
  padding: 0.85rem 0.75rem 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

@media (min-width: 640px) {
  .category-card { flex: 0 0 190px; }
}

/* ── PRODUCT CARD ── */
.product-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInUp 0.4s ease forwards;
  transition: transform 0.3s var(--ease-fluid), box-shadow 0.3s var(--ease-fluid), border-color 0.3s var(--ease-fluid);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 20px 50px rgba(216, 150, 47, 0.22), 0 4px 16px rgba(0,0,0,0.1), 0 0 32px rgba(216,150,47,0.1);
  border-color: rgba(216, 150, 47, 0.55);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to   { opacity: 1; transform: translateY(0); }
}

.product-card-image {
  display: block;
  width: 100%;
  height: 175px;
  background: linear-gradient(135deg, rgba(216, 150, 47, 0.1), rgba(25, 25, 30, 0.05));
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.product-card-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.3rem;
}

.product-card-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.product-card-body h3 {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

.product-card-rating {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-bright);
  white-space: nowrap;
}

.product-card-rating .star {
  color: var(--primary);
}

.product-card-body p {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ── CARD (generic) ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--muted);
  line-height: 1.7;
}

/* ── TAG ── */
.tag {
  display: inline-block;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border: 1px solid rgba(216, 150, 47, 0.2);
  margin-bottom: 0.6rem;
}

/* ── PRODUCT FOOTER ── */
.product-footer {
  margin-top: auto;
  padding-top: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-footer strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

/* ── TRUST SECTION ── */
.trust-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.trust-card {
  border-radius: 20px;
  padding: 1.75rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(216, 150, 47, 0.15);
  transition: border-color 0.3s var(--ease-fluid), background 0.3s var(--ease-fluid), transform 0.3s var(--ease-fluid), box-shadow 0.3s var(--ease-fluid);
}

.trust-card:hover {
  border-color: rgba(216, 150, 47, 0.4);
  background: rgba(216, 150, 47, 0.07);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(216, 150, 47, 0.15);
}

.trust-card-icon {
  transition: filter 0.3s var(--ease-fluid), transform 0.3s var(--ease-fluid);
}

.trust-card:hover .trust-card-icon {
  filter: drop-shadow(0 0 14px rgba(216, 150, 47, 0.6));
  transform: scale(1.1);
}

.trust-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}

.trust-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.trust-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* ── SOCIAL PROOF ── */
.social-proof {
  background: linear-gradient(135deg, #111116 0%, #1e1810 100%);
  padding: 4rem 0;
  border-top: 1px solid rgba(216, 150, 47, 0.12);
  border-bottom: 1px solid rgba(216, 150, 47, 0.12);
}

.social-proof-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.rating-block {
  text-align: center;
  flex-shrink: 0;
}

.rating-score {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.rating-stars {
  color: var(--primary);
  font-size: 1.3rem;
  margin: 0.5rem 0;
  letter-spacing: 0.1em;
}

.rating-block p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.stat-grid {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  flex: 1;
  justify-content: space-around;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat-item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.3rem;
  display: block;
}

/* ── REVIEWS ── */
.review-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  transition: box-shadow 0.3s var(--ease-fluid), border-color 0.3s var(--ease-fluid), transform 0.3s var(--ease-fluid);
}

.review-card:hover {
  box-shadow: 0 12px 36px rgba(216, 150, 47, 0.14), 0 4px 16px rgba(0,0,0,0.3);
  border-color: rgba(216, 150, 47, 0.35);
  transform: translateY(-4px);
}

.review-card-stars {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0.05em;
}

.review-card > p {
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.review-card-author {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text);
  display: block;
}

/* ── SHOP PAGE ── */
.shop-hero {
  background:
    radial-gradient(ellipse 800px 300px at 20% 0%, rgba(216,150,47,0.12), transparent 70%),
    #19191e;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(216,150,47,0.15);
  position: relative;
}

.shop-hero .section-header h2,
.shop-hero .section-header p {
  color: #ffffff;
}

.shop-hero .section-header p {
  opacity: 0.6;
}

.shop-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.filter-button {
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--glass);
  backdrop-filter: blur(8px);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s var(--ease-fluid);
}

.filter-button:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 16px rgba(216,150,47,0.15);
}

.filter-button.active {
  background: linear-gradient(135deg, var(--primary-bright), var(--primary));
  color: #19191e;
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(216,150,47,0.4);
}

.filter-search input {
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text);
  font-size: 0.9rem;
  width: min(340px, 100%);
  transition: border-color 0.25s var(--ease-fluid), box-shadow 0.25s var(--ease-fluid);
}

.filter-search input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(216, 150, 47, 0.15), 0 0 20px rgba(216,150,47,0.15);
}

.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  transition: opacity 0.25s;
}

.product-grid.loading {
  opacity: 0.5;
  pointer-events: none;
}

.product-loader {
  display: none;
  margin-top: 2rem;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-weight: 600;
  color: var(--muted);
  font-size: 0.9rem;
}

.loader-ring {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(216, 150, 47, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ── PRODUCT DETAIL ── */
.product-detail {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.product-detail-image {
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(135deg, rgba(216, 150, 47, 0.12), rgba(25, 25, 30, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-detail-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.product-detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  display: grid;
  gap: 0.85rem;
}

.product-detail-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.product-detail-card > strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--primary);
  font-weight: 700;
  text-shadow: 0 0 20px rgba(216,150,47,0.35);
}

.product-detail-card > p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.product-detail-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.product-detail-list li {
  background: rgba(216, 150, 47, 0.07);
  border: 1px solid rgba(216, 150, 47, 0.15);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
}

.product-detail-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
  flex-shrink: 0;
}

.product-detail-card select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.product-detail-card select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(216, 150, 47, 0.15), 0 0 18px rgba(216,150,47,0.15);
}

/* ── CART ── */
.cart-page {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr 0.6fr;
}

.cart-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-details {
  display: grid;
  gap: 0.4rem;
}

.cart-item-controls {
  display: grid;
  gap: 0.6rem;
  align-items: start;
}

.cart-item-controls input {
  width: 80px;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  text-align: center;
  background: var(--card);
  color: var(--text);
}

.checkout-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.checkout-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.checkout-card input,
.checkout-card textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.checkout-card input:focus,
.checkout-card textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(216, 150, 47, 0.15), 0 0 18px rgba(216,150,47,0.15);
}

.checkout-card label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.checkout-card button {
  width: 100%;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.summary-row:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

/* ── CONTACT ── */
.contact-grid {
  gap: 2rem;
}

/* ── FAQ ── */
.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.6rem;
  transition: border-color 0.3s var(--ease-fluid), box-shadow 0.3s var(--ease-fluid), transform 0.3s var(--ease-fluid);
}

.faq-item:hover {
  border-color: rgba(216, 150, 47, 0.35);
  box-shadow: 0 12px 30px rgba(216, 150, 47, 0.1);
  transform: translateY(-2px);
}

.faq-item h3 {
  font-weight: 700;
  margin-bottom: 0.65rem;
  font-size: 1rem;
  color: var(--text);
}

.faq-item p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ── FOOTER ── */
.site-footer {
  background: #19191e;
  padding: 4.5rem 0 2rem;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,150,47,0.5), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  text-shadow: 0 0 16px rgba(216,150,47,0.35);
}

.footer-brand > p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
  max-width: 280px;
}

.footer-brand > a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: opacity 0.2s;
}

.footer-brand > a:hover {
  opacity: 0.8;
}

.footer-flags {
  font-size: 1.35rem;
  margin-top: 1.25rem;
  letter-spacing: 0.3rem;
  line-height: 1;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.25);
}

/* ── VARIANT SELECTOR ── */
.variant-selector {
  display: grid;
  gap: 0.75rem;
}

.variant-selector-label {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.variant-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  text-align: left;
}

.variant-btn:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}

.variant-btn.active {
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(216, 150, 47, 0.18), 0 0 20px rgba(216,150,47,0.2);
}

.variant-btn-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  line-height: 1.4;
}

.variant-btn-price {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
  margin-top: 0.2rem;
}

/* ── CART VARIANT BADGE ── */
.cart-variant-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid rgba(216, 150, 47, 0.25);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

/* ── PRICE FROM ── */
.price-from {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--muted);
  display: block;
  line-height: 1.2;
  margin-bottom: 1px;
}

/* ── UTILITY ── */
.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .mobile-toggle {
    display: flex;
  }

  .desktop-cta {
    display: none;
  }

  .header-inner {
    gap: 0.6rem;
  }

  .brand {
    display: none;
  }

  .header-search {
    max-width: none;
  }

  .header-cart-icon {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(300px, 82vw);
    height: 100vh;
    flex-direction: column;
    padding: 5rem 1.75rem 1.75rem;
    justify-content: flex-start;
    background: #19191e;
    gap: 1.25rem;
    box-shadow: -10px 0 60px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(.4,0,.2,1);
    z-index: 200;
    border-left: 1px solid rgba(216, 150, 47, 0.15);
  }

  .nav-links a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
  }

  .site-header.nav-open .nav-links {
    transform: translateX(0);
  }

  .mobile-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s;
  }

  .site-header.nav-open .mobile-nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3.5rem 0 3rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .cart-page {
    grid-template-columns: 1fr;
  }

  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 2rem 0 0.5rem;
  }

  .hero + .section {
    padding-top: 1.5rem;
  }

  .section {
    padding: 2rem 0;
  }

  .hero h1 {
    font-size: 1.35rem;
  }

  .hero-text > p {
    font-size: 0.88rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.6rem;
  }

  .hero-actions .button {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    gap: 1rem;
  }

  .hero-stats strong {
    font-size: 1.1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .shop-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-search {
    width: 100%;
  }

  .filter-search input {
    width: 100%;
  }

  .social-proof-inner {
    flex-direction: column;
    text-align: center;
  }

  .stat-grid {
    justify-content: center;
    gap: 1.5rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* ── 2 colonnes produits sur mobile ── */
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-card-image {
    height: 120px;
  }

  .product-card-body {
    padding: 0.75rem;
    gap: 0.2rem;
  }

  .product-card-body h3 {
    font-size: 0.78rem;
    line-height: 1.3;
  }

  .product-card-body p {
    font-size: 0.72rem;
    display: none;
  }

  .product-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-top: 0.6rem;
  }

  .product-footer strong {
    font-size: 0.88rem;
  }

  .product-footer .button-sm {
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
    width: 100%;
    justify-content: center;
  }

  .tag {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }
}

/* ── FEATURED HEROES (Netflix / Prime Video) ── */
.featured-heroes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.featured-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(216, 150, 47, 0.25);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-fluid), box-shadow 0.3s var(--ease-fluid), border-color 0.3s var(--ease-fluid);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text);
}

.featured-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(216, 150, 47, 0.26), 0 0 50px rgba(216,150,47,0.12);
  border-color: rgba(216, 150, 47, 0.6);
}

.featured-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.featured-card:hover .featured-card-image img {
  transform: scale(1.06);
}

.featured-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--primary);
  color: #19191e;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(216, 150, 47, 0.4);
}

.featured-card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.featured-card-body h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.featured-card-body p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.featured-card-body strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-top: 0.25rem;
}

.featured-card-body .button {
  margin-top: auto;
  padding-top: 1rem;
}

@media (max-width: 600px) {
  .featured-heroes {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .featured-card-image {
    height: 110px;
  }

  .featured-card-body {
    padding: 0.65rem;
    gap: 0.2rem;
  }

  .featured-card-body h3 {
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .featured-card-body p {
    display: none;
  }

  .featured-card-body strong {
    font-size: 0.82rem;
  }

  .featured-card-body .button {
    font-size: 0.7rem;
    padding: 0.45rem 0.5rem;
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: 0.35rem;
  }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s 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.3s; }

/* ── WHATSAPP FLOATING BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.5rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  animation: waPulse 2.5s ease-in-out infinite;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.12); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50%       { box-shadow: 0 4px 36px rgba(37,211,102,.8), 0 0 0 10px rgba(37,211,102,.1); }
}
.wa-float-label {
  position: absolute;
  right: 68px;
  background: #fff;
  color: #111;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wa-float:hover .wa-float-label { opacity: 1; }

/* ── REVIEW CARD AVATAR ── */
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
  margin-bottom: 0.75rem;
}
.review-card {
  display: flex;
  flex-direction: column;
}
.review-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.review-card-info { display: flex; flex-direction: column; gap: 0.1rem; }
.review-card-info .review-card-author { margin: 0; }
.review-card-info .review-card-location { font-size: 0.72rem; color: var(--muted); }

/* ── FOOTER SOCIAL ── */
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.25s var(--ease-fluid), opacity 0.2s, box-shadow 0.25s var(--ease-fluid);
  opacity: 0.85;
}
.footer-social a:hover { transform: translateY(-3px) scale(1.06); opacity: 1; box-shadow: 0 8px 20px rgba(0,0,0,0.35); }
.footer-social .fs-wa { background: #25d366; }
.footer-social .fs-fb { background: #1877f2; }
.footer-social .fs-ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.footer-social .fs-tt { background: #000; }

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin: 2rem 0 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.legal-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.25rem 0 0.35rem;
}

.legal-content p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.legal-content ul li {
  margin-bottom: 0.3rem;
}

.legal-content strong {
  color: var(--text);
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-update {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 2rem;
}

/* ── HERO BANNER (style izipremium) ── */
.hero-banner {
  padding: 1.5rem 0 0.5rem;
  background: var(--bg);
  position: relative;
}

.hb-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.hb-track::-webkit-scrollbar { display: none; }

.hb-card {
  flex: 0 0 300px;
  height: 400px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  text-decoration: none;
  display: block;
  border: 1px solid var(--border);
  transition: border-color 0.3s var(--ease-fluid), box-shadow 0.3s var(--ease-fluid), transform 0.3s var(--ease-fluid);
}
.hb-card:hover {
  border-color: rgba(216, 150, 47, 0.5);
  box-shadow: 0 20px 50px rgba(216, 150, 47, 0.2);
  transform: translateY(-4px);
}
.hb-card-wide { flex: 0 0 420px; }

.hb-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.hb-card:hover .hb-bg { transform: scale(1.06); }

.hb-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.82) 100%);
  z-index: 1;
  transition: background 0.3s;
}
.hb-card:hover .hb-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.88) 100%);
}

.hb-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.hb-badge-red   { background: #e50914; color: #fff; box-shadow: 0 0 20px rgba(229,9,20,0.5); }
.hb-badge-green { background: #22c55e; color: #000; box-shadow: 0 0 20px rgba(34,197,94,0.5); }
.hb-badge-gold  { background: var(--primary); color: #000; box-shadow: 0 0 20px rgba(216,150,47,0.55); }
.hb-badge-blue  { background: #0070f3; color: #fff; box-shadow: 0 0 20px rgba(0,112,243,0.5); }

.hb-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.25rem;
}
.hb-content h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}
.hb-content p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.hb-cta {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.03em;
  transition: letter-spacing 0.2s;
}
.hb-card:hover .hb-cta { letter-spacing: 0.08em; }

.hb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.hb-arrow:hover { background: rgba(216,150,47,0.7); }
.hb-prev { left: 0.5rem; }
.hb-next { right: 0.5rem; }

@media (min-width: 1024px) {
  .hb-card { flex: 0 0 calc(25% - 0.75rem); }
  .hb-card-wide { flex: 0 0 calc(33% - 0.67rem); }
}

@media (max-width: 768px) {
  .hb-card { flex: 0 0 260px; height: 340px; }
  .hb-card-wide { flex: 0 0 300px; }
  .hb-arrow { display: none; }
}

@media (max-width: 480px) {
  .hb-card { flex: 0 0 220px; height: 300px; }
  .hb-card-wide { flex: 0 0 260px; }
}

/* ── SECTION BADGE ── */
.section-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  background: rgba(216,150,47,.1);
  border: 1px solid rgba(216,150,47,.25);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 0.65rem;
  box-shadow: 0 0 16px rgba(216,150,47,0.12);
}

/* ── STATS BAR ── */
.stats-bar {
  background: linear-gradient(90deg, #0e0e14 0%, #161320 50%, #0e0e14 100%);
  border-top: 1px solid rgba(216,150,47,0.15);
  border-bottom: 1px solid rgba(216,150,47,0.15);
  padding: 1rem 0;
}
.stats-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.sbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 2rem;
  gap: 0.15rem;
}
.sbar-item strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  text-shadow: 0 0 16px rgba(216,150,47,0.5);
  font-variant-numeric: tabular-nums;
}
.sbar-item span {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sbar-sep {
  width: 1px;
  height: 2rem;
  background: var(--border);
}

/* ── HOW IT WORKS ── */
.how-it-works {
  background: linear-gradient(135deg, #19191e 0%, #1e1a12 100%);
}
.steps-grid {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.step-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  flex: 1;
  max-width: 280px;
  text-align: center;
  position: relative;
  transition: border-color .3s var(--ease-fluid), transform .3s var(--ease-fluid), box-shadow .3s var(--ease-fluid);
}
.step-card:hover {
  border-color: rgba(216,150,47,.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(216,150,47,0.14);
}
.step-num {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #000;
  font-weight: 800;
  font-size: 0.78rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(216,150,47,0.6);
}
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.step-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.65;
}
.step-arrow {
  font-size: 1.75rem;
  color: var(--primary);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ── PROMO BANNER ── */
.promo-banner {
  background: linear-gradient(115deg, rgba(10,7,2,.55) 0%, rgba(10,7,2,.15) 35%, rgba(10,7,2,.1) 60%, rgba(10,7,2,.5) 100%), url('images/promo-banner-nouveau.jpg') center/cover no-repeat;
  padding: 4.5rem 0;
  overflow: hidden;
  position: relative;
}
.promo-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  pointer-events: none;
  animation: promoOrbFloat 7s ease-in-out infinite;
}
.promo-banner::after {
  content: '';
  position: absolute;
  bottom: -60%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  pointer-events: none;
  animation: promoOrbFloat 9s ease-in-out infinite reverse;
}
@keyframes promoOrbFloat {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-30px, 20px); }
}
.promo-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.promo-text { flex: 1; }
.promo-badge {
  display: inline-block;
  background: rgba(0,0,0,.4);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.promo-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0,0,0,.75);
}
.promo-banner p {
  color: rgba(255,255,255,.9);
  font-size: 0.95rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.7);
}
.promo-cta {
  background: #fff !important;
  color: #b8741f !important;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
}

/* ── PAYMENT STRIP ── */
.payment-strip {
  background: #13131c;
  border-top: 1px solid rgba(216,150,47,0.12);
  border-bottom: 1px solid rgba(216,150,47,0.12);
  padding: 1.25rem 0;
  text-align: center;
}
.payment-strip-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.85rem;
}
.payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pay-badge {
  background: var(--card, #25252e);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 600;
}

/* ── REVIEWS CAROUSEL ── */
.reviews-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
  scrollbar-width: none;
}
.reviews-carousel::-webkit-scrollbar { display: none; }
.reviews-carousel .review-card {
  scroll-snap-align: start;
  flex: 0 0 300px;
  min-width: 280px;
}

/* ── CTA FINAL ── */
.cta-final {
  background: linear-gradient(135deg, #1a1810 0%, #19191e 100%);
  border-top: 1px solid rgba(216,150,47,.15);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(216,150,47,0.14) 0%, transparent 65%);
  animation: ctaPulse 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ctaPulse {
  0%, 100% { opacity: 0.6; }
  50%      { opacity: 1; }
}
.cta-final-inner {
  position: relative;
  z-index: 1;
}
.cta-final-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.cta-final-inner p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE NOUVELLES SECTIONS ── */
@media (max-width: 768px) {
  .steps-grid { flex-direction: column; align-items: stretch; }
  .step-card { max-width: 100%; }
  .step-arrow { transform: rotate(90deg); align-self: center; }
  .promo-banner-inner { flex-direction: column; text-align: center; }
  .sbar-sep { display: none; }
  .sbar-item { padding: 0.4rem 1rem; }
  .stats-bar-inner { gap: 0; justify-content: space-around; }

  .trust-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }
  .trust-grid::-webkit-scrollbar { display: none; }
  .trust-card {
    scroll-snap-align: start;
    flex: 0 0 78%;
    min-width: 220px;
  }
}

/* ── HERO SLIDER ── */
.hero-slider {
  position: relative;
  height: 480px;
  overflow: hidden;
  background: #0d0d14;
}

.hero-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  will-change: transform;
}

.hero-slide {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  animation: heroKenBurns 9s ease-out forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}

.hero-slide-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to right, rgba(13,13,20,0.60) 0%, rgba(13,13,20,0.30) 55%, rgba(13,13,20,0.05) 100%);
  z-index: 1;
}

.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image: repeating-linear-gradient(rgba(255,255,255,0.025) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
  opacity: 0.25;
}

.hero-slider {
  box-shadow: inset 0 -60px 80px -40px rgba(0,0,0,0.6);
}

.hero-slide-inner {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero-slide-inner .container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 0.9rem;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  animation: heroTextUp 0.7s var(--ease-fluid) both;
}

.hero-brand-mark .accent {
  color: var(--primary-bright);
  filter: drop-shadow(0 0 14px rgba(216, 150, 47, 0.55));
}

.hero-brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-bright), var(--primary) 60%, var(--primary-dark));
  color: #19191e;
  font-size: 0.8rem;
  box-shadow: 0 0 18px rgba(216, 150, 47, 0.55);
}

.hero-slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  animation: badgePop 0.5s var(--ease-fluid) both;
}
.hero-slide-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 currentColor;
  animation: liveDot 1.6s ease-out infinite;
}
@keyframes liveDot {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.55); }
  100% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}
@keyframes badgePop {
  from { opacity: 0; transform: translateY(10px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-badge-red   { background: #e50914; color: #fff; box-shadow: 0 0 24px rgba(229,9,20,0.5); }
.hero-badge-green { background: #22c55e; color: #000; box-shadow: 0 0 24px rgba(34,197,94,0.5); }
.hero-badge-gold  { background: var(--primary); color: #000; box-shadow: 0 0 24px rgba(216,150,47,0.55); }
.hero-badge-blue  { background: #0070f3; color: #fff; box-shadow: 0 0 24px rgba(0,112,243,0.5); }

.hero-slide-tag {
  display: inline-block;
  color: #d8962f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  background: rgba(216, 150, 47, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 150, 47, 0.25);
  margin-bottom: 1.25rem;
}

.hero-slide-inner h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.85rem;
  color: #ffffff;
  letter-spacing: -0.015em;
  animation: heroTextUp 0.7s var(--ease-fluid) both 0.1s;
}

.hero-slide-inner h1 .highlight {
  background: linear-gradient(100deg, var(--primary-bright), var(--primary) 45%, var(--primary-bright));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3.5s linear infinite;
  filter: drop-shadow(0 0 18px rgba(216,150,47,0.4));
}

.hero-slide-inner p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  animation: heroTextUp 0.7s var(--ease-fluid) both 0.22s;
}

.hero-slide-inner .hero-actions {
  animation: heroTextUp 0.7s var(--ease-fluid) both 0.34s;
}

@keyframes heroTextUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(216,150,47,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(216,150,47,0.35);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  transition: background 0.25s var(--ease-fluid), box-shadow 0.25s var(--ease-fluid), transform 0.25s var(--ease-fluid);
}

.hero-arrow:hover {
  background: rgba(216,150,47,0.4);
  box-shadow: 0 0 28px rgba(216,150,47,0.5);
  transform: translateY(-50%) scale(1.08);
}

.hero-prev { left: 1rem; }
.hero-next { right: 1rem; }

.hero-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.45rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-transition: background 0.3s var(--ease-fluid), width 0.3s var(--ease-fluid), box-shadow 0.3s var(--ease-fluid);
  transition: background 0.3s var(--ease-fluid), width 0.3s var(--ease-fluid), box-shadow 0.3s var(--ease-fluid);
}

.hero-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(216,150,47,0.8);
}

@media (max-width: 768px) {
  .hero-slider { height: 420px; }
  .hero-slide-inner h1 { font-size: 1.8rem; }
  .hero-slide-overlay { background: linear-gradient(to bottom, rgba(13,13,20,0.35) 0%, rgba(13,13,20,0.25) 60%, rgba(13,13,20,0.65) 100%); }
}

@media (max-width: 600px) {
  .hero-slider { height: 360px; }
  .hero-brand-mark { font-size: 1.15rem; margin-bottom: 0.6rem; }
  .hero-brand-icon { width: 24px; height: 24px; font-size: 0.65rem; }
  .hero-slide-inner h1 { font-size: 1.4rem; }
  .hero-slide-inner p { font-size: 0.85rem; margin-bottom: 1.25rem; }
  .hero-arrow { width: 36px; height: 36px; font-size: 1.4rem; }
  .hero-prev { left: 0.4rem; }
  .hero-next { right: 0.4rem; }
}
