/* ============================================================
   CIVIL+ — Design System
   Poppins · #FFD351 · #94A0AF · #0B0B0B · #FFFFFF
   ============================================================ */

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

/* ───────── Variables ───────── */
:root {
  --gold:        #FFD351;
  --gold-dark:   #E8BC30;
  --slate:       #94A0AF;
  --black:       #0B0B0B;
  --dark:        #111827;
  --dark-card:   #1c2435;
  --white:       #FFFFFF;
  --off-white:   #F8F9FA;
  --gray-100:    #F3F4F6;
  --gray-200:    #E5E7EB;
  --gray-400:    #9CA3AF;
  --gray-600:    #6B7280;
  --red:         #EF4444;
  --green:       #22C55E;

  --font:        'Poppins', sans-serif;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   24px;
  --radius-pill: 100px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow:      0 8px 24px rgba(0,0,0,.10);
  --shadow-lg:   0 20px 48px rgba(0,0,0,.15);
  --shadow-card: 0 4px 16px rgba(0,0,0,.08);

  --transition:  all .35s cubic-bezier(.25,.46,.45,.94);
  --spring:      all .45s cubic-bezier(.34,1.56,.64,1);
  --ease-out:    all .4s cubic-bezier(.16,1,.3,1);

  --container:   1240px;
  --nav-h:       72px;
}

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

/* ───────── Utilities ───────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--black);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: box-shadow .3s ease;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.4); }
.navbar .container { display: flex; align-items: center; gap: 12px; }

/* Logo */
.nav-logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.5px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--gold); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-link {
  position: relative;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  font-weight: 500;
  transition: color .25s ease;
  overflow: hidden;
  cursor: pointer;
}
/* Bubble hover element */
.nav-bubble {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.14);
  transform: scale(0);
  transform-origin: center;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}
.nav-link:hover .nav-bubble,
.nav-link.active .nav-bubble { transform: scale(1); }
.nav-link.active .nav-bubble { background: var(--white); }
.nav-link.active { color: var(--black); font-weight: 600; }
.nav-link:hover { color: var(--white); }
.nav-link .nav-text { position: relative; z-index: 1; }

/* Currency selector */
.currency-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  font-size: .8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  margin-left: 12px;
  flex-shrink: 0;
}
.currency-btn:hover { background: rgba(255,255,255,.18); }
.currency-flag {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.currency-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.currency-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.currency-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: .85rem;
  color: var(--dark);
  transition: background .2s;
}
.currency-opt:hover { background: var(--gray-100); }
.currency-opt.active { background: var(--gold); font-weight: 600; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO SECTION — Static bg + Floating catalogue
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  max-height: 900px;
  background: var(--black);
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* ── Static background ── */
.hero-bg-static {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: kenBurns 20s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  0%   { transform: scale(1.08) translate(0,0); }
  100% { transform: scale(1.18) translate(-1%, -1%); }
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11,11,11,.88) 38%, rgba(11,11,11,.45) 65%, rgba(11,11,11,.2) 100%);
}

/* ── Inner layout ── */
.hero-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  width: 100%;
}
.hero-content {
  color: var(--white);
  max-width: 560px;
  padding: 0;
}

/* ── Text animations ── */
.hero-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .7s ease .2s forwards;
  transition: opacity .35s ease, transform .35s ease;
}
.hero-title {
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .7s ease .4s forwards;
  transition: opacity .35s ease, transform .35s ease;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: .95rem;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .7s ease .6s forwards;
  transition: opacity .35s ease, transform .35s ease;
}
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .7s ease .8s forwards;
  margin-bottom: 28px;
}

/* ── Dot navigation ── */
.hero-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .3s ease;
}
.hero-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ── Floating image catalogue ── */
.hero-catalogue {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;  /* empêche les cat-cards de déborder et d'agrandir la page */
  pointer-events: none;
}

.cat-card {
  position: absolute;
  width: 270px;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
  transition: transform .6s cubic-bezier(.34,1.2,.64,1), opacity .5s ease, box-shadow .4s ease;
  will-change: transform, opacity;
}
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

/* ── Card positions ── */
/* Front card — center-right, large, upright */
.cat-pos-0 {
  transform: translate(40px, 0) rotate(3deg) scale(1);
  opacity: 1;
  z-index: 3;
}
.cat-pos-0 img { animation: catZoom 4s ease-in-out infinite alternate; }
@keyframes catZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* Middle card — behind-left, smaller */
.cat-pos-1 {
  transform: translate(-60px, 30px) rotate(-6deg) scale(0.88);
  opacity: 0.85;
  z-index: 2;
}

/* Back card — far-right behind, small */
.cat-pos-2 {
  transform: translate(110px, 50px) rotate(10deg) scale(0.76);
  opacity: 0.65;
  z-index: 1;
}

/* Hidden (off-stage) */
.cat-pos-hidden {
  transform: translate(200px, -40px) rotate(15deg) scale(0.6);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

/* Exit animation */
.cat-exit {
  transform: translate(-200px, -60px) rotate(-12deg) scale(0.7) !important;
  opacity: 0 !important;
  transition: transform .55s cubic-bezier(.55,.05,.67,.19), opacity .4s ease !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: .875rem;
  font-weight: 600;
  transition: var(--spring);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,211,81,.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); transform: translateY(-2px); }
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: #222; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
/* btn-detail: slate bg with white text (for "Voir le produit") */
.btn-detail {
  background: var(--black) !important;
  color: var(--white) !important;
  border: 2px solid rgba(255,255,255,.12);
}
.btn-detail:hover {
  background: #222 !important;
  transform: translateY(-2px);
  color: var(--white) !important;
}

.btn-slate {
  background: var(--slate);
  color: var(--white);
}
.btn-slate:hover { background: #7d8a97; transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: .8rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Chevron button */
.btn-chevron {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white);
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.btn-chevron:hover { background: rgba(255,255,255,.2); }
.btn-chevron svg { width: 14px; height: 14px; }

/* ============================================================
   SEARCH + FILTER BAR
   ============================================================ */
.filter-bar {
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
}
.filter-bar .container {
  display: flex;
  align-items: center;
  gap: 16px;
}
.search-wrap {
  position: relative;
  flex: 1;
  max-width: 420px;
}
.search-wrap svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  width: 18px; height: 18px;
  pointer-events: none;
}
.search-input {
  width: 100%;
  padding: 12px 16px 12px 46px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: .875rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.search-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,211,81,.15); }
.search-input::placeholder { color: var(--gray-400); }

.price-filter {
  position: relative;
}
.price-filter select {
  appearance: none;
  padding: 12px 40px 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: .875rem;
  color: var(--dark);
  background: var(--white);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
}
.price-filter select:focus { border-color: var(--gold); }
.price-filter::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--gray-400);
  pointer-events: none;
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products-section { padding: 64px 0 80px; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}
.section-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s ease;
}
.section-link:hover { gap: 10px; }

/* Featured grid */
.products-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* Carousel row */
.products-carousel-section { margin-bottom: 64px; }
.products-swiper {
  position: relative;
  padding: 12px 4px 80px;
  overflow: visible !important;
  /* clip only horizontally so cards can overflow vertically on hover */
  clip-path: inset(-120px -4px -60px -4px);
}
.products-swiper .swiper-pagination {
  bottom: 4px;
}
/* ── Swiper slides : hauteur auto, largeur gérée par Swiper JS ── */
.products-swiper .swiper-slide,
.related-swiper .swiper-slide {
  height: auto;
}
.products-featured {
  /* Ensure featured cards can overflow on hover */
  overflow: visible !important;
}
.products-swiper .swiper-pagination-bullet {
  background: var(--gray-200);
  opacity: 1;
}
.products-swiper .swiper-pagination-bullet-active { background: var(--gold); width: 20px; border-radius: 4px; }
.swiper-button-prev,
.swiper-button-next {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  min-height: 44px;
  background: var(--white) !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow);
  color: var(--black) !important;
  transition: var(--spring);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-top: -22px !important;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: .85rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--gold) !important;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(255,211,81,.4);
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;       /* s'adapte à la slide Swiper ou à la cellule de grille */
  min-width: 0;      /* empêche le débordement XXL dans les contextes flex/grid */
  max-width: 100%;
}
.product-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 24px 56px rgba(0,0,0,.18);
  z-index: 10;
}
.product-card__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-100);
}
.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.product-card:hover .product-card__img-wrap img { transform: scale(1.06); }

/* Badge */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.product-badge.new { background: var(--dark); }
.product-badge.featured { background: var(--gold); color: var(--black); }

.product-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.product-sales {
  font-size: .72rem;
  font-weight: 600;
  color: var(--slate);
  background: var(--off-white);
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}
.product-card__name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.stars {
  display: flex;
  align-items: center;
  gap: 3px;
}
.stars svg { width: 14px; height: 14px; }
.star-filled { color: var(--gold); }
.star-empty { color: var(--gray-200); }
.stars-count { font-size: .75rem; color: var(--gray-400); margin-left: 4px; font-weight: 500; }

.product-card__price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  flex-wrap: wrap;
}
.price-original {
  font-size: .8rem;
  color: var(--gray-400);
  text-decoration: line-through;
}
.price-sale {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}
.price-tag {
  font-size: .7rem;
  font-weight: 700;
  color: var(--white);
  background: var(--green);
  padding: 2px 7px;
  border-radius: 4px;
}

/* Hover action buttons */
.product-card__actions {
  display: flex;
  gap: 8px;
  padding: 0 16px 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s ease .05s;
}
.product-card:hover .product-card__actions {
  opacity: 1;
  transform: translateY(0);
}
.product-card__actions .btn { flex: 1; justify-content: center; padding: 9px 12px; font-size: .8rem; }
/* Related swiper: always show action buttons (no hover gate) */
.related-swiper .product-card__actions {
  opacity: 1;
  transform: translateY(0);
  flex-direction: column;
  gap: 6px;
  padding: 0 10px 12px;
}
.related-swiper .product-card__actions .btn {
  font-size: .72rem;
  padding: 7px 6px;
  justify-content: center;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.related-swiper .product-card {
  overflow: hidden;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  padding: 80px 0;
  background: var(--off-white);
}
.stats-section .section-header { margin-bottom: 48px; }
.stats-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-card {
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--spring);
}
.stat-card:hover { transform: translateY(-6px); }
.stat-card::after {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  bottom: -40px; right: -40px;
}
.stat-card.purple { background: linear-gradient(135deg, #7C3AED, #5B21B6); }
.stat-card.teal   { background: linear-gradient(135deg, #0D9488, #0F766E); }
.stat-card.brown  { background: linear-gradient(135deg, #92400E, #78350F); }

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
}
.stat-label {
  font-size: .95rem;
  line-height: 1.5;
  opacity: .88;
  font-weight: 400;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 32px;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 10px; }
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--spring);
  color: rgba(255,255,255,.7);
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { background: var(--gold); color: var(--black); transform: translateY(-3px); }

.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color .2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-col ul li a svg { width: 14px; height: 14px; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.35); }

/* Language selector */
.lang-select {
  appearance: none;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.85);
  padding: 8px 32px 8px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: .8rem;
  cursor: pointer;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='rgba(255,255,255,0.7)'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
}
/* Force dark background on options for readability (all browsers) */
.lang-select option {
  background: #1a1a1a;
  color: #ffffff;
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 580px;
  overflow: hidden;
  background: var(--black);
}
/* Only the direct background image of page-hero gets dimmed */
.page-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
}
/* Floating catalogue cards keep full opacity */
.page-hero .cat-card img {
  opacity: 1 !important;
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(11,11,11,.82) 50%, transparent);
  padding-top: var(--nav-h);
}
.page-hero-container {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
  align-items: center;
  width: 100%;
  height: 100%;
}
.page-hero-content { color: var(--white); max-width: 560px; }
.page-hero-content h1 {
  font-size: clamp(1rem, 2vw, 1.6rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}
.page-hero-content h1 span { color: var(--gold); }
.page-hero-content p {
  font-size: .95rem;
  line-height: 1.65;
  color: rgba(255,255,255,.78);
  margin-bottom: 28px;
}
/* Services catalogue: same visual style as homepage hero catalogue */
.services-catalogue {
  position: relative;
  width: 300px;
  height: 480px;
  flex-shrink: 0;
  /* overflow visible: cards allowed to float naturally */
  overflow: visible;
  margin-left: -10px;
}
/* Cards: exact same size as homepage cat-cards */
.services-catalogue .cat-card {
  width: 220px;
  height: 290px;
  border-radius: 20px;
}
/* Same position logic as homepage */
.services-catalogue .cat-pos-0 {
  transform: translate(30px, 0) rotate(3deg) scale(1);
}
.services-catalogue .cat-pos-1 {
  transform: translate(-40px, 35px) rotate(-6deg) scale(0.88);
}
.services-catalogue .cat-pos-2 {
  transform: translate(100px, 55px) rotate(10deg) scale(0.76);
}
.services-catalogue .cat-pos-hidden {
  transform: translate(220px, -40px) rotate(15deg) scale(0.6);
}
.services-catalogue .cat-exit {
  transform: translate(-220px, -50px) rotate(-12deg) scale(0.7) !important;
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */

/* Review Ticker */
.review-ticker {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.review-ticker-track {
  display: inline-flex;
  gap: 48px;
  animation: tickerScroll 28s linear infinite;
}
.review-ticker-track:hover { animation-play-state: paused; }
.review-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.review-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--black);
  flex-shrink: 0;
}
.review-text {
  font-size: .82rem;
  color: var(--gray-600);
  font-style: italic;
}
.review-sep { color: var(--gray-200); }

/* Countdown */
.countdown-bar {
  background: linear-gradient(135deg, #0d0500 0%, #1a0900 60%, #0d0500 100%);
  border: 1px solid rgba(255, 211, 81, .2);
  border-radius: var(--radius);
  margin-bottom: 24px;
  overflow: hidden;
}
.countdown-bar-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 20px;
}
.countdown-bar-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 1;
}
.countdown-bar-left > svg { flex-shrink: 0; margin-top: 4px; }
.countdown-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.countdown-timer {
  display: flex;
  align-items: center;
  gap: 8px;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.countdown-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  min-width: 2.2ch;
  text-align: center;
}
.countdown-sub {
  font-size: .58rem;
  color: rgba(255,211,81,.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.countdown-sep {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}

/* ── Circular dot ring ─────────────────────────── */
.cd-ring {
  position: relative;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}
.cd-ring-svg {
  width: 100%;
  height: 100%;
}
/* All dots */
.cd-dot {
  fill: rgba(255, 255, 255, .12);
  transition: fill .4s ease, filter .4s ease;
  filter: none;
}
/* ── Dot ring animations ─────────────────────────── */
@keyframes cd-dot-breathe {
  0%, 100% { opacity: 1; fill: rgba(255,255,255,.92); }
  50%       { opacity: .55; fill: rgba(255,255,255,.55); }
}
@keyframes cd-ring-spin-glow {
  0%   { filter: drop-shadow(0 0 4px rgba(255,211,81,.0)); }
  50%  { filter: drop-shadow(0 0 8px rgba(255,211,81,.6)); }
  100% { filter: drop-shadow(0 0 4px rgba(255,211,81,.0)); }
}
/* Active dots (remaining time) */
.cd-dot.active {
  fill: rgba(255, 255, 255, .92);
  filter: drop-shadow(0 0 3px rgba(255,255,255,.75)) drop-shadow(0 0 1px rgba(0,0,0,.9));
  animation: cd-dot-breathe 2s ease-in-out infinite;
}
.cd-ring-svg {
  animation: cd-ring-spin-glow 3s ease-in-out infinite;
}
/* Center text */
.cd-ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cd-ring-pct {
  font-size: .85rem;
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 1px 3px rgba(0,0,0,.8);
  transition: color .4s;
}



/* Product detail layout */
.product-detail {
  padding: 48px 0 80px;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
.product-media { position: relative; }
.product-main-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
/* ── Thumbnail Carousel ──────────────────────────────────── */
.product-thumbs-carousel {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
}
.product-thumbs.swiper {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
/* Force Swiper wrapper to stay horizontal even if Swiper hasn't init yet */
.product-thumbs .swiper-wrapper {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
}
.product-thumb-slide {
  width: auto !important;
  flex-shrink: 0 !important;
}
.product-thumb {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: .65;
  transition: var(--transition);
  display: block;
}
.product-thumb.active,
.product-thumb:hover { border-color: var(--gold); opacity: 1; }

/* Thumb nav arrows */
.thumbs-swiper-prev,
.thumbs-swiper-next {
  flex-shrink: 0;
  width: 30px; height: 30px;
  background: var(--gold);
  color: var(--black);
  border: none; border-radius: 50%;
  font-size: 1.2rem; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  padding: 0;
}
.thumbs-swiper-prev:hover,
.thumbs-swiper-next:hover { background: var(--dark); color: var(--gold); }
.thumbs-swiper-prev.swiper-button-disabled,
.thumbs-swiper-next.swiper-button-disabled {
  opacity: 0; pointer-events: none;
}

.product-info { display: flex; flex-direction: column; gap: 20px; }
.product-detail-name {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}
.product-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.product-views {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  color: var(--gray-400);
}
.product-views svg { width: 14px; height: 14px; }
.product-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-price-sale {
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -1px;
}
.product-price-original {
  font-size: 1.1rem;
  color: var(--gray-400);
  text-decoration: line-through;
}
.product-discount-badge {
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}
.product-detail-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.product-detail-actions .btn { flex: 1; min-width: 140px; justify-content: center; }

.product-short-desc {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--gray-600);
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}

/* Video section */
.product-video-section {
  margin-bottom: 48px;
}
.video-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.video-wrap {
  position: relative;
  width: 100%;
  /* aspect ratio handled by .video-thumb-wrap inside */
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Long description */
.product-long-desc {
  font-size: .9rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 32px;
}
.product-long-desc h1,
.product-long-desc h2,
.product-long-desc h3 {
  color: var(--dark);
  margin: 28px 0 12px;
  line-height: 1.3;
}
.product-long-desc h1 { font-size: 1.35rem; }
.product-long-desc h2 { font-size: 1.15rem; }
.product-long-desc h3 { font-size: 1rem; }
.product-long-desc p { margin-bottom: 12px; }
.product-long-desc ol, .product-long-desc ul { padding-left: 20px; margin-bottom: 12px; }
.product-long-desc li { margin-bottom: 8px; }
.product-long-desc strong { color: var(--dark); font-weight: 600; }
.product-long-desc em { font-style: italic; color: var(--gray-400); }
.product-long-desc s { text-decoration: line-through; }

/* Sticky buy zone */
.sticky-buy {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 14px 0;
  box-shadow: 0 -8px 32px rgba(0,0,0,.1);
  z-index: 500;
  transform: translateY(100%);
  transition: transform .4s var(--ease-out);
}
.sticky-buy.visible { transform: translateY(0); }
.sticky-buy .container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.sticky-buy-img {
  width: 52px; height: 52px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.sticky-buy-info { flex: 1; min-width: 0; }
.sticky-buy-name {
  font-size: .875rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--dark);
}
.sticky-buy-price {
  font-size: .85rem;
  font-weight: 700;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sticky-buy-price .orig { font-size: .75rem; color: var(--gray-400); text-decoration: line-through; font-weight: 400; }


/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-list {
  padding: 80px 0;
}
.service-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 32px;
  transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card.reverse { grid-template-columns: 1fr 360px; }
.service-card.reverse .service-img { order: 2; }
.service-card.reverse .service-body { order: 1; }
.service-img {
  height: 280px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.service-card:hover .service-img img { transform: scale(1.04); }
.service-body {
  padding: 40px;
}
.service-number {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.service-name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-desc {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 24px;
}

/* Services gallery */
.services-gallery {
  background: var(--dark);
  padding: 80px 0;
  overflow: hidden;
}
.services-gallery .section-title { color: var(--white); }
.services-gallery .section-label { color: var(--gold); }
.gallery-swiper { padding: 12px 4px 56px !important; overflow: hidden; }
.gallery-swiper .swiper-slide { border-radius: var(--radius-lg); overflow: hidden; height: 400px; }
.gallery-swiper .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.gallery-swiper .swiper-slide-active { box-shadow: 0 20px 48px rgba(0,0,0,.6); }

/* CTA Banner */
.cta-banner {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: var(--gold);
  border-radius: 50%;
  opacity: .06;
  right: -80px; top: -80px;
}
.cta-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.cta-stat {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold);
  white-space: nowrap;
}
.cta-sep { width: 1px; height: 60px; background: rgba(255,255,255,.15); flex-shrink: 0; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section { padding: 80px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 520px;
}
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--gold);
  color: var(--black);
  padding: 16px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow);
}
.about-content .section-label { margin-bottom: 8px; }
.about-content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 20px; }
.about-content p { font-size: .95rem; line-height: 1.8; color: var(--gray-600); margin-bottom: 16px; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-value {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-value-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--black);
}
.about-value-icon svg { width: 20px; height: 20px; }
.about-value h4 { font-size: .875rem; font-weight: 600; margin-bottom: 4px; }
.about-value p { font-size: .8rem; color: var(--gray-400); margin: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
}
.contact-info h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 12px; }
.contact-info p { font-size: .9rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-method:hover { background: #fff; box-shadow: var(--shadow); }
.contact-method-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon.wa,
.contact-method-icon--green { background: #25D366; color: var(--white); }
.contact-method-icon.em,
.contact-method-icon--gold { background: var(--gold); color: var(--black); }
.contact-method-icon--blue { background: #1877F2; color: var(--white); }
.contact-method-icon svg { width: 22px; height: 22px; }
.contact-method-text { flex: 1; display: flex; flex-direction: column; }
.contact-method-label { font-size: .75rem; color: var(--gray-400); margin-bottom: 2px; }
.contact-method-val,
.contact-method-value { font-size: .9rem; font-weight: 600; color: var(--dark); }
.contact-method-arrow { width: 16px; height: 16px; color: var(--gray-400); transition: transform .3s ease; flex-shrink: 0; }
.contact-method:hover .contact-method-arrow { transform: translateX(4px); color: var(--gold); }

.contact-intro { color: var(--gray-600); font-size: .9rem; line-height: 1.7; margin-bottom: 28px; }
.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 12px 20px;
  background: var(--off-white);
  border-radius: 50px;
  font-size: .85rem;
  color: var(--gray-600);
}
.contact-badge strong { color: var(--dark); }

.contact-form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.contact-form { background: transparent; border-radius: 0; padding: 0; box-shadow: none; }
.contact-form h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 28px; }
.contact-submit { width: 100%; justify-content: center; gap: 10px; }
.required { color: #e53e3e; }
.form-feedback {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  display: none;
}
.form-feedback.success { display: block; background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.form-feedback.error { display: block; background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .875rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2394A0AF' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-group select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,211,81,.15); }

/* FAQ */
.faq-section { padding: 80px 0; background: var(--off-white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.faq-item.open { border-color: var(--gold); box-shadow: 0 4px 20px rgba(255,211,81,.15); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  user-select: none;
}
.faq-icon { width: 18px; height: 18px; flex-shrink: 0; transition: transform .3s ease; color: var(--gray-400); }
.faq-item.open .faq-icon { transform: rotate(180deg); color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: .875rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}
.faq-item.open .faq-answer { max-height: 300px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .875rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,211,81,.15); }
.form-group textarea { height: 140px; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-section { padding: 80px 0 100px; }
.legal-header { margin-bottom: 48px; border-bottom: 2px solid var(--gold); padding-bottom: 24px; }
.legal-header h1 { font-size: 2rem; font-weight: 700; }
.legal-date { font-size: .85rem; color: var(--gray-400); margin-top: 6px; }
.legal-body {
  max-width: 800px;
  font-size: .92rem;
  line-height: 1.85;
  color: var(--gray-600);
}
.legal-body h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin: 40px 0 12px;
  border-left: 3px solid var(--gold);
  padding-left: 12px;
}
.legal-body h3 { font-size: 1rem; font-weight: 600; color: var(--dark); margin: 24px 0 8px; }
.legal-body p { margin-bottom: 14px; }
.legal-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: .875rem; }
.legal-body table th,
.legal-body table td { border: 1px solid var(--gray-200); padding: 10px 14px; text-align: left; }
.legal-body table th { background: var(--off-white); font-weight: 600; color: var(--dark); }
.legal-body strong { color: var(--dark); font-weight: 600; }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .6; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
/* ── 1024px ── */
@media (max-width: 1024px) {
  /* Hero: hide catalogue, stack layout */
  .hero-container { grid-template-columns: 1fr; }
  .hero-catalogue { display: none !important; }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: clamp(1.8rem, 4vw, 2.8rem); }
  .hero-inner { padding: 0 0 40px; }

  .products-featured { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .service-card { grid-template-columns: 1fr !important; }
  .service-card.reverse .service-img { order: 0; }
  .service-card.reverse .service-body { order: 0; }
  .service-img { height: 240px; }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 32px; }
  .cta-sep { width: 60px; height: 1px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── 768px ── */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links, .currency-btn { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero { max-height: 100svh; min-height: 520px; }
  .hero-content { padding: 0; }
  .hero-title { font-size: clamp(1.6rem, 5.5vw, 2.2rem); }
  .hero-subtitle { font-size: .9rem; margin-bottom: 24px; }
  .hero-actions { gap: 10px; margin-bottom: 20px; }
  .hero-catalogue { display: none !important; }

  /* Products */
  .products-featured { grid-template-columns: 1fr 1fr; }
  .products-swiper { overflow: hidden !important; clip-path: none !important; padding-bottom: 56px; }
  .products-swiper .swiper-slide { width: auto !important; max-width: 100%; }
  .related-swiper .swiper-slide  { width: auto !important; max-width: 100%; }
  .product-card:hover { transform: translateY(-6px) scale(1.02); }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* Forms */
  .filter-bar .container { flex-direction: column; align-items: stretch; gap: 10px; }
  .search-wrap { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 0; }
  .contact-form-wrap { padding: 24px; }
  .faq-grid { grid-template-columns: 1fr; }

  /* Pages */
  .page-hero { height: 380px; }
  /* .product-thumbs mobile: handled by Swiper */
  .countdown-bar { flex-wrap: wrap; justify-content: center; }
  .about-values { grid-template-columns: 1fr; }
  .sticky-buy .container { flex-wrap: wrap; gap: 12px; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .products-featured { grid-template-columns: 1fr; }
  .hero-actions { flex-wrap: wrap; }
  .hero-title { font-size: clamp(1.4rem, 6vw, 1.9rem); }
  .hero-subtitle { display: none; }
  .product-detail-actions { flex-direction: column; }
  .cta-banner { padding: 32px 20px; }
  .page-hero { min-height: 240px; height: auto; }
  .page-hero-content h1 {
    font-size: clamp(1.1rem, 5.5vw, 1.5rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
  }
  .page-hero-content p { font-size: .78rem !important; display: none; }
  .page-hero-content .section-label { font-size: .65rem !important; margin-bottom: 6px !important; }
  /* Bouton hero: full-width, style btn-primary sur mobile */
  .page-hero-content .btn-chevron {
    width: 100% !important;
    max-width: 280px !important;
    justify-content: center !important;
    background: var(--gold) !important;
    color: var(--black) !important;
    border: none !important;
    border-radius: var(--radius) !important;
    font-size: .88rem !important;
    font-weight: 700 !important;
    padding: 13px 20px !important;
  }
  .stat-card { padding: 36px 24px; }
  .section-title { font-size: 1.4rem; }
  .btn-lg { padding: 13px 22px; font-size: .9rem; }
  .footer-top { gap: 24px; }
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  font-size: 1.2rem;
  padding: 14px 32px;
  width: 100%;
  text-align: center;
  color: rgba(255,255,255,.8);
}
.mobile-nav .nav-link.active { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}
.mobile-close svg { width: 28px; height: 28px; }

/* ============================================================
   DESCRIPTION RICH COMPONENTS
   ============================================================ */

/* Callout box (gold highlight) */
.desc-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, rgba(255,211,81,.07), rgba(255,211,81,.03));
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin-bottom: 32px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-800);
}
.desc-callout-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}
.desc-section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.desc-section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Feature grid cards */
.desc-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.desc-feature-grid--2col {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.desc-feature-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color .2s, transform .2s;
}
.desc-feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.desc-feature-icon-wrap {
  width: 38px;
  height: 38px;
  background: rgba(255,211,81,.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.desc-feature-icon-wrap svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  stroke: var(--gold);
}
.desc-feature-card strong {
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
}
.desc-feature-card span {
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Norm tags */
.desc-norms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.desc-norm-tag {
  background: rgba(11,11,11,.06);
  border: 1px solid rgba(11,11,11,.15);
  color: var(--dark);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .5px;
}

/* Checkmark list */
.desc-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.desc-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .93rem;
  color: var(--gray-700);
  line-height: 1.55;
}
.desc-check-list li::before {
  content: '';
  display: flex;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: rgba(255,211,81,.15);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23c8960a' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}

/* Price summary box */
.desc-price-box {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 28px;
}
.desc-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: .9rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}
.desc-price-row:last-of-type { border-bottom: none; }
.desc-price-row.highlight {
  font-size: 1.05rem;
  color: var(--dark);
}
.desc-price-row.highlight strong { color: var(--gold); font-size: 1.2rem; }

/* Category list (for Pack QC) */
.desc-category-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.desc-category-item {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 16px 20px;
  border: 1px solid var(--gray-200);
}
.desc-category-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.desc-category-header svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  stroke: var(--gold);
  flex-shrink: 0;
}
.desc-category-header strong { font-size: .9rem; color: var(--dark); }
.desc-category-item ul {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.desc-category-item ul li {
  font-size: .83rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Module list (for Formation Excel) */
.desc-module-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.desc-module-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
}
.desc-module-item:last-child { border-bottom: none; }
.desc-module-item:nth-child(even) { background: var(--off-white); }
.desc-module-num {
  background: var(--black);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 6px;
  flex-shrink: 0;
  letter-spacing: 1px;
}
.desc-module-item strong {
  font-size: .9rem;
  color: var(--dark);
  display: block;
  margin-bottom: 4px;
}
.desc-module-item p {
  font-size: .82rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

/* Bonus box */
.desc-bonus-box {
  background: linear-gradient(135deg, rgba(255,211,81,.08), rgba(255,211,81,.03));
  border: 1px solid rgba(255,211,81,.3);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 24px;
}
.desc-bonus-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  font-weight: 800;
  color: #c8960a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.desc-bonus-header svg { width: 18px; height: 18px; stroke: #c8960a; }
.desc-bonus-box p { font-size: .88rem; color: var(--gray-700); line-height: 1.6; margin: 0; }

/* ISO list */
.desc-iso-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.desc-iso-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
}
.desc-iso-badge {
  background: var(--black);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: .5px;
}
.desc-iso-item strong {
  font-size: .88rem;
  color: var(--dark);
  display: block;
  margin-bottom: 4px;
}
.desc-iso-item p {
  font-size: .82rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   RELATED PRODUCTS SECTION
   ============================================================ */

.related-products-section {
  padding: 64px 0;
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
}
.related-products-header {
  text-align: center;
  margin-bottom: 40px;
}
.related-products-header .section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.related-swiper {
  overflow: hidden !important;
  padding: 8px 0 72px;
}
.related-swiper .swiper-pagination {
  bottom: 22px;
}
/* Gold active bullet — matches products-swiper style */
.related-swiper .swiper-pagination-bullet {
  background: var(--gray-200);
  opacity: 1;
}
.related-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 20px;
  border-radius: 4px;
}
/* Navigation arrows — same style as main swiper */
.related-swiper .swiper-button-prev,
.related-swiper .swiper-button-next {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: var(--white) !important;
  box-shadow: var(--shadow) !important;
  color: var(--dark) !important;
  top: 42% !important;
}
.related-swiper .swiper-button-prev::after,
.related-swiper .swiper-button-next::after {
  font-size: .85rem !important;
  font-weight: 900 !important;
}
.related-swiper .swiper-button-prev:hover,
.related-swiper .swiper-button-next:hover {
  background: var(--gold) !important;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(255,211,81,.4) !important;
}

/* ============================================================
   PRODUCT LONG DESCRIPTION STYLES
   ============================================================ */

.product-long-desc {
  line-height: 1.75;
  color: var(--gray-700);
  font-size: .95rem;
  padding-bottom: 40px;
}
.product-long-desc h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin: 32px 0 14px;
}
.product-long-desc h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 20px 0 10px;
}
.product-long-desc h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--gray-700);
  margin: 16px 0 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.product-long-desc p { margin: 0 0 12px; }
.product-long-desc ul {
  margin: 0 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-long-desc ul li { line-height: 1.6; }
.product-long-desc strong { color: var(--dark); font-weight: 700; }
.product-long-desc a { color: var(--gold); text-decoration: underline; }

/* ── YouTube thumbnail fallback ─────────────────────────── */
.video-thumb-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: #000;
}
.video-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.video-thumb-wrap:hover .video-thumb-img { transform: scale(1.03); }
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(0,0,0,.35);
  transition: background .3s;
}
.video-thumb-wrap:hover .video-play-overlay { background: rgba(0,0,0,.2); }
.video-play-btn {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  transition: transform .25s, box-shadow .25s;
  color: var(--black);
  padding-left: 4px;
}
.video-thumb-wrap:hover .video-play-btn {
  transform: scale(1.12);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.video-play-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.video-yt-link {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,.65);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  pa


/* ============================================================
   MOBILE OPTIMISATIONS GLOBALES
   ============================================================ */

/* ── 2.1 Products swiper: 1 produit centré sur mobile ── */
.products-swiper .swiper-wrapper {
  align-items: stretch;
}
.products-swiper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}
.products-swiper .product-card {
  flex: 1;
  height: 100%;
}
@media (max-width: 640px) {
  .products-swiper {
    overflow: hidden !important;
    padding: 8px 0 60px !important;
  }
  .products-swiper .swiper-slide {
    max-width: 340px !important;
  }
}

/* ── 2.2 Description détaillée — mobile ── */
@media (max-width: 640px) {
  .product-long-desc {
    font-size: .88rem !important;
    line-height: 1.7 !important;
    padding-bottom: 24px !important;
  }
  /* Feature grids: 1 colonne */
  .desc-feature-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .desc-feature-card {
    padding: 14px 12px !important;
    font-size: .82rem !important;
  }
  .desc-feature-card h4 {
    font-size: .88rem !important;
  }
  /* Callout boxes */
  .desc-callout {
    padding: 14px 12px !important;
    font-size: .85rem !important;
  }
  /* Check lists */
  .desc-check-list li,
  .desc-module-list li {
    font-size: .85rem !important;
    padding: 8px 10px 8px 32px !important;
  }
  /* Bonus box */
  .desc-bonus-box {
    padding: 14px 12px !important;
    font-size: .85rem !important;
  }
  /* ISO list / norm tags */
  .desc-iso-list {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .desc-category-list {
    grid-template-columns: 1fr !important;
  }
  /* Section title in desc */
  .desc-section-title {
    font-size: 1rem !important;
  }
  /* Price box */
  .desc-price-box {
    padding: 14px 12px !important;
    flex-direction: column !important;
    gap: 6px !important;
  }
}

/* ── 2.3 Related products: slide centré + cartes uniformes ── */
/* Force Swiper slides to stretch equally in height */
.related-swiper .swiper-wrapper {
  align-items: stretch !important;
}
.related-swiper .swiper-slide {
  height: auto !important;    /* laisser le contenu définir la hauteur */
  display: flex !important;
  flex-direction: column !important;
}
.related-swiper .product-card {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}
.related-swiper .product-card__img-wrap {
  aspect-ratio: 3/2 !important;   /* ratio fixe pour toutes les images */
  flex-shrink: 0 !important;
}
.related-swiper .product-card__body {
  flex: 1 !important;
}
.related-swiper .product-card__name {
  -webkit-line-clamp: 2 !important;
  min-height: 2.4em !important;    /* réserver 2 lignes de hauteur */
}

@media (max-width: 640px) {
  .related-swiper {
    padding: 8px 0 60px !important;
  }
  /* Avec slidesPerView:1 le slide prend toute la largeur — limiter la largeur max */
  .related-swiper .swiper-slide {
    max-width: 320px !important;
    margin: 0 auto !important;
  }
}

/* ── 2.5 Review ticker: ralentir l'animation ── */
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-ticker-track {
  /* Durée augmentée: 22s → 55s pour défilement modéré */
  animation-duration: 55s !important;
}

/* ── General mobile polish ── */
@media (max-width: 640px) {
  /* Product detail grid: stack on mobile */
  .product-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .product-media { order: 1; }
  .product-info  { order: 2; }

  /* Sticky buy bar */
  .sticky-buy {
    padding: 10px 16px !important;
    gap: 10px !important;
  }
  .sticky-buy-img { width: 44px !important; height: 44px !important; }
  .sticky-buy-name { font-size: .8rem !important; }

  /* Countdown bar on mobile */
  .countdown-bar-body {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 14px !important;
  }
  .cd-ring { width: 56px !important; height: 56px !important; }

  /* Product detail actions */
  .product-detail-actions {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .product-detail-actions .btn {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Hero floating catalogue: hide on small screens */
  .services-catalogue,
  .hero-catalogue { display: none !important; }
  .page-hero-container {
    grid-template-columns: 1fr !important;
  }

  /* Fix hero text: full width, readable size on mobile */
  .page-hero-content {
    max-width: 100% !important;
    padding: 0 4px !important;
  }
  .page-hero-content h1 {
    font-size: clamp(1rem, 5vw, 1.4rem) !important;
    line-height: 1.2 !important;
    margin-bottom: 16px !important;
  }
  /* Show button on 640px breakpoint too */
  .page-hero-content .btn-chevron {
    display: inline-flex !important;
    width: 100% !important;
    max-width: 280px !important;
    justify-content: center !important;
    background: var(--gold) !important;
    color: var(--black) !important;
    border: none !important;
    border-radius: var(--radius) !important;
    font-size: .9rem !important;
    font-weight: 700 !important;
    padding: 13px 20px !important;
  }
}
