/* ══════════════════════════════════════════════
   MasterHub – main.css
   ══════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:       #1681C4;
  --pink-dark:  #1268a1;
  --purple:     #0d5a8a;
  --purple-dark:#0a4570;
  --gradient:   linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  --dark:       #1a1a2e;
  --dark-soft:  #16213e;
  --text:       #2c2c3e;
  --text-muted: #6b7280;
  --border:     #e5e7eb;
  --bg-light:   #f8f9fc;
  --white:      #ffffff;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.15);
  --radius:     10px;
  --radius-lg:  16px;
  --transition: .22s ease;
  --font: 'Inter', system-ui, sans-serif;
  --navbar-h:   52px;
  --header-h:   80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 3px; }

/* ══════════════════════════════════════════════
   PROMO BAR
   ══════════════════════════════════════════════ */
.promo-bar {
  background: var(--dark);
  color: var(--white);
  font-size: 13px;
  position: relative;
  z-index: 100;
}
.promo-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 9px 48px 9px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.promo-bar__left  { color: #adb5c7; white-space: nowrap; }
.promo-bar__right { color: #adb5c7; white-space: nowrap; }
.promo-bar__center {
  text-align: center;
  flex: 1;
}
.promo-code {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(22,129,196,.25);
  border: 1px dashed var(--pink);
  color: #bde0f7;
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
}
.promo-code:hover { background: rgba(22,129,196,.4); }
.promo-bar__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #adb5c7;
  font-size: 14px;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color var(--transition);
}
.promo-bar__close:hover { color: var(--white); }

/* ══════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════ */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: var(--shadow-sm);
}
.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.header__logo img { height: 48px; width: auto; flex-shrink: 0; }

/* Search */
.header__search {
  flex: 1;
  max-width: 420px;
  display: flex;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.header__search:focus-within {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(22,129,196,.12);
}
.header__search input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0 14px;
  font-size: 14px;
  color: var(--text);
  outline: none;
}
.header__search input::placeholder { color: var(--text-muted); }
.header__search button {
  background: var(--gradient);
  color: var(--white);
  padding: 0 16px;
  font-size: 15px;
  transition: opacity var(--transition);
}
.header__search button:hover { opacity: .85; }

/* Meta (CTA + top links) */
.header__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  margin-left: auto;
}
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gradient);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: opacity var(--transition), transform var(--transition);
}
.btn-contact:hover { opacity: .88; transform: translateY(-1px); }

.btn-app {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(236, 72, 153, .08);
  color: var(--pink) !important;
  border: 1.5px solid var(--pink);
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13.5px;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-app:hover { background: var(--pink); color: var(--white) !important; transform: translateY(-1px); }

.header__toplinks {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
}
.header__toplinks a { color: var(--text-muted); transition: color var(--transition); }
.header__toplinks a:hover { color: var(--pink); }
.header__toplinks span { color: var(--border); }

/* Icons */
.header__icons {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--text);
  font-size: 18px;
  transition: background var(--transition), color var(--transition);
}
.icon-btn:hover { background: var(--bg-light); color: var(--pink); }
.badge {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--pink);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}

/* Account dropdown */
.account-btn { position: relative; }
.account-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 230px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  z-index: 200;
}
/* Pont invisible pour éviter la fermeture lors du passage de la souris */
.account-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}
.account-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  font-size: 14px;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.account-dropdown a:hover { background: var(--bg-light); color: var(--pink); }
.account-dropdown hr { border: none; border-top: 1px solid var(--border); margin: 6px 0; }
.account-dropdown a i { width: 16px; color: var(--text-muted); }
.account-btn:hover .account-dropdown,
.account-btn:focus-within .account-dropdown { display: block; }

/* Cart button */
.cart-btn { font-size: 19px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   NAVBAR / CATEGORY BAR
   ══════════════════════════════════════════════ */
.navbar {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: var(--header-h);
  z-index: 80;
}
.navbar__inner {
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

/* All-products button */
.navbar__all {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--gradient);
  white-space: nowrap;
  transition: opacity var(--transition);
  flex-shrink: 0;
}
.navbar__all:hover { opacity: .9; }
.navbar__all i { font-size: 16px; }

/* Category list */
.navbar__list {
  display: flex;
  align-items: stretch;
  height: 100%;
  flex: 1;
  overflow: visible;
}

.navbar__list > li {
  position: relative;
  display: flex;
  align-items: stretch;
}
.navbar__list > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  transition: color var(--transition), background var(--transition);
  border-bottom: 3px solid transparent;
  position: relative;
  top: 2px;
}
.navbar__list > li > a:hover,
.navbar__list > li:hover > a {
  color: var(--pink);
  border-bottom-color: var(--pink);
  background: rgba(22,129,196,.04);
}

/* NEW tag */
.tag-new {
  font-size: 9px;
  font-weight: 700;
  background: var(--pink);
  color: var(--white);
  padding: 1px 5px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: .04em;
  vertical-align: middle;
}

/* Phone */
.navbar__phone {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 0 0 16px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--transition);
}
.navbar__phone:hover { color: var(--pink); }
.navbar__phone i { color: var(--pink); }

/* ── Dropdown ── */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 580px;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--pink);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  gap: 24px;
  z-index: 300;
  flex-wrap: wrap;
}
.has-dropdown:hover .dropdown { display: flex; }

.dropdown__col {
  flex: 1;
  min-width: 140px;
}
.dropdown__col h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}
.dropdown__col a {
  display: block;
  font-size: 13.5px;
  color: var(--text);
  padding: 5px 0;
  transition: color var(--transition), padding-left var(--transition);
}
.dropdown__col a:hover { color: var(--pink); padding-left: 6px; }

.dropdown__promo {
  background: linear-gradient(135deg, #f0f7fd 0%, #e8f4fb 100%);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  min-width: 160px;
  max-width: 180px;
  flex: 0 0 auto;
}
.badge-new {
  font-size: 10px;
  font-weight: 700;
  background: var(--gradient);
  color: var(--white);
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .05em;
}
.dropdown__promo p { font-size: 13px; color: var(--text); }
.btn-sm {
  display: inline-block;
  background: var(--gradient);
  color: var(--white) !important;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
  transition: opacity var(--transition);
}
.btn-sm:hover { opacity: .88; }

/* ── Mega Menu ── */
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 3px solid var(--pink);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 300;
}
.mega-menu.open { display: block; }
.mega-menu__inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  padding: 24px 20px;
}
.mega-menu__section {
  padding: 0 16px 0 0;
  border-right: 1px solid var(--border);
}
.mega-menu__section:last-child { border-right: none; }
.mega-menu__section h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--pink);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.mega-menu__section a {
  display: block;
  font-size: 13px;
  color: var(--text);
  padding: 5px 0;
  transition: color var(--transition), padding-left var(--transition);
}
.mega-menu__section a:hover { color: var(--pink); padding-left: 6px; }

/* ══════════════════════════════════════════════
   MOBILE DRAWER
   ══════════════════════════════════════════════ */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background: var(--white);
  z-index: 500;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  transition: left .3s ease;
  overflow-y: auto;
}
.mobile-drawer.open { left: 0; }
.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.mobile-drawer__header img { height: 36px; }
.mobile-drawer__header button { font-size: 20px; color: var(--text-muted); }

.mobile-drawer__list { flex: 1; padding: 12px 0; }
.mobile-drawer__list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid #f3f4f6;
  transition: background var(--transition), color var(--transition);
}
.mobile-drawer__list li a:hover { background: var(--bg-light); color: var(--pink); }
.mobile-drawer__list li a i { width: 20px; color: var(--pink); }

.mobile-drawer__footer {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
}

.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 400;
  backdrop-filter: blur(2px);
}
.overlay.open { display: block; }

/* ══════════════════════════════════════════════
   BUTTONS (global)
   ══════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gradient);
  color: var(--white);
  padding: 11px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}
.btn-primary:hover { opacity: .88; transform: translateY(-1px); color: var(--white); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--pink);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--pink);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-outline:hover { background: var(--pink); color: var(--white); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  color: var(--white);
  padding: 11px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid rgba(255,255,255,.4);
  cursor: pointer;
  transition: background var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,.2); }

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--white);
  color: var(--pink);
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  transition: opacity var(--transition), transform var(--transition);
}
.btn-white:hover { opacity: .9; transform: translateY(-1px); }

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 11px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid rgba(255,255,255,.6);
  transition: background var(--transition);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.15); }

.btn-sm-block {
  width: 100%;
  padding: 9px 16px;
  font-size: 13px;
  margin-top: 12px;
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  height: 480px;
}
.hero__slides { width: 100%; height: 100%; position: relative; }

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--bg, var(--dark));
  display: flex;
  align-items: center;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.04);
  transition: opacity 800ms cubic-bezier(.4, 0, .2, 1),
              transform 1200ms cubic-bezier(.4, 0, .2, 1),
              visibility 0s linear 800ms;
}
.hero__slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  transition: opacity 800ms cubic-bezier(.4, 0, .2, 1),
              transform 1200ms cubic-bezier(.4, 0, .2, 1),
              visibility 0s linear 0s;
  z-index: 1;
}
.hero__slide.active .hero__content > * {
  animation: heroSlideIn 900ms cubic-bezier(.22, 1, .36, 1) both;
}
.hero__slide.active .hero__tag        { animation-delay: 120ms; }
.hero__slide.active h1                { animation-delay: 220ms; }
.hero__slide.active p                 { animation-delay: 320ms; }
.hero__slide.active .hero__actions    { animation-delay: 420ms; }
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide,
  .hero__slide.active,
  .hero__slide.active .hero__content > * {
    transition-duration: 0ms !important;
    animation: none !important;
    transform: none !important;
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 40px 20px;
  max-width: 560px;
}
.hero__tag {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.hero__content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero__content h1 span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__content p {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero__content p strong { color: var(--white); }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__image {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: .15;
}
.hero__shape--1 {
  width: 500px; height: 500px;
  background: var(--gradient);
  top: -100px; right: -100px;
}
.hero__shape--2 {
  width: 300px; height: 300px;
  background: var(--pink);
  bottom: -80px; right: 120px;
  opacity: .08;
}
.hero__mockup {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Controls */
.hero__prev, .hero__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px; height: 42px;
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-radius: 50%;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  transition: background var(--transition);
}
.hero__prev:hover, .hero__next:hover { background: rgba(255,255,255,.3); }
.hero__prev { left: 20px; }
.hero__next { right: 20px; }

.hero__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero__dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: background var(--transition), width var(--transition);
}
.hero__dots button.active { background: var(--white); width: 24px; border-radius: 4px; }

/* ══════════════════════════════════════════════
   ADVANTAGES BAR
   ══════════════════════════════════════════════ */
.advantages {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.advantages__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  flex-wrap: wrap;
}
.advantage {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  flex: 1;
  min-width: 200px;
  border-right: 1px solid var(--border);
}
.advantage:last-child { border-right: none; }
.advantage > i {
  font-size: 28px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.advantage div { display: flex; flex-direction: column; line-height: 1.3; }
.advantage strong { font-size: 14px; font-weight: 700; color: var(--dark); }
.advantage span { font-size: 12px; color: var(--text-muted); }

/* ══════════════════════════════════════════════
   SECTION BASE
   ══════════════════════════════════════════════ */
.section { padding: 64px 0; }
.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.section__header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  position: relative;
  padding-bottom: 12px;
}
.section__header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}
.see-all {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}
.see-all:hover { gap: 9px; }

/* ══════════════════════════════════════════════
   PRODUCTS GRID
   ══════════════════════════════════════════════ */
.products-section { background: var(--bg-light); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.product-card--highlight { border-color: transparent; box-shadow: 0 0 0 2px var(--pink); }

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .06em;
  z-index: 2;
}
.badge--hot { background: var(--pink); color: var(--white); }
.badge--new { background: var(--purple); color: var(--white); }

.product-card__img {
  height: 140px;
  background: linear-gradient(135deg, #f0f7fd 0%, #e8f4fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.product-card__img i {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.product-card__body { padding: 16px; }
.product-card__body h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.product-card__body p { font-size: 12.5px; color: var(--text-muted); margin-bottom: 10px; line-height: 1.5; }
.product-card__price { font-size: 13px; color: var(--text-muted); }
.product-card__price strong { font-size: 18px; font-weight: 800; color: var(--pink); }

/* ══════════════════════════════════════════════
   CATEGORIES GRID
   ══════════════════════════════════════════════ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px 12px;
  border-radius: var(--radius-lg);
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--white);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: var(--white); }
.cat-card i { font-size: 2.4rem; }
.cat-card--dtf     { background: linear-gradient(135deg, #1681C4, #1268a1); }
.cat-card--panel   { background: linear-gradient(135deg, #0d5a8a, #0a4570); }
.cat-card--adhesif { background: linear-gradient(135deg, #1268a1, #1681C4); }
.cat-card--signal  { background: linear-gradient(135deg, #0a4570, #0d5a8a); }
.cat-card--print   { background: linear-gradient(135deg, #1681C4, #0d5a8a); }
.cat-card--textile { background: linear-gradient(135deg, #0d5a8a, #1681C4); }

/* ══════════════════════════════════════════════
   WHY SECTION
   ══════════════════════════════════════════════ */
.why-section { background: var(--bg-light); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-card__icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f0f7fd 0%, #e8f4fb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.why-card__icon i {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.why-card p  { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════ */
.testimonials-section { background: var(--white); }
.rating-global {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #f59e0b;
}
.rating-global strong { color: var(--dark); margin-left: 4px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow var(--transition);
}
.testimonial:hover { box-shadow: var(--shadow-md); }
.testimonial__stars { color: #f59e0b; font-size: 14px; margin-bottom: 12px; }
.testimonial p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 18px;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial__author strong { font-size: 14px; color: var(--dark); }
.testimonial__author small { font-size: 12px; color: var(--text-muted); }

/* ══════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════ */
.cta-banner {
  background: var(--gradient);
  padding: 60px 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.cta-banner p { font-size: 15px; color: rgba(255,255,255,.85); }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding-top: 60px;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__logo { height: 44px; margin-bottom: 16px; }
.footer__brand p { font-size: 13.5px; line-height: 1.7; max-width: 280px; }
.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer__socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition);
}
.footer__socials a:hover { background: var(--pink); color: var(--white); }

.footer__links h4, .footer__contact h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__links a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  padding: 4px 0;
  transition: color var(--transition), padding-left var(--transition);
}
.footer__links a:hover { color: var(--pink); padding-left: 5px; }

.footer__contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  margin-bottom: 6px;
}
.footer__contact p i { color: var(--pink); width: 16px; }
.footer__contact small { font-size: 12px; color: rgba(255,255,255,.45); }

/* Lignes contact alignées proprement (icône + bloc texte multi-lignes) */
.footer__contact-line {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  font-size: 13.5px;
  line-height: 1.55;
  margin-bottom: 12px !important;
  color: rgba(255,255,255,.78);
}
.footer__contact-line > i {
  flex: 0 0 16px;
  width: 16px;
  margin-top: 4px;
  color: var(--pink);
  text-align: center;
}
.footer__contact-line > span,
.footer__contact-line > a { min-width: 0; word-break: break-word; }
.footer__contact-line a { color: rgba(255,255,255,.85); transition: color var(--transition); }
.footer__contact-line a:hover { color: var(--pink); }
.footer__contact-line--address { color: rgba(255,255,255,.7); }
.footer__cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 13px;
}
.footer__copyright { margin: 0; line-height: 1.6; }
.footer__copyright a {
  color: rgba(255,255,255,.7);
  border-bottom: 1px dashed rgba(255,255,255,.25);
  transition: color var(--transition), border-color var(--transition);
}
.footer__copyright a:hover { color: var(--pink); border-color: var(--pink); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 10px;
}
.footer__legal { display: flex; gap: 16px; }
.footer__legal a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer__legal a:hover { color: var(--pink); }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .products-grid     { grid-template-columns: repeat(3, 1fr); }
  .categories-grid   { grid-template-columns: repeat(3, 1fr); }
  .why-grid          { grid-template-columns: repeat(2, 1fr); }
  .footer__top       { grid-template-columns: 1fr 1fr 1fr; }
  .mega-menu__inner  { grid-template-columns: repeat(3, 1fr); }
  .header__toplinks  { display: none; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .header__meta .btn-contact span { display: none; }
  .header__meta .btn-app span { display: none; }
  .header__meta .btn-app { padding: 8px 12px; }
  .navbar__list > li > a { padding: 0 10px; font-size: 13px; }
  .navbar__phone span { display: none; }
  .products-grid     { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top       { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger     { display: flex; }
  .header__search { max-width: none; flex: 1; }
  .header__meta  { display: none; }
  .header__toplinks { display: none; }
  .navbar        { display: none; }
  .hero          { height: 380px; }
  .hero__image   { display: none; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: 1fr 1fr; }
  .promo-bar__left, .promo-bar__right { display: none; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__actions { justify-content: center; }
  .mega-menu__inner { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; }
  .footer__legal { flex-wrap: wrap; justify-content: center; }
}

/* ── Footer centré sur mobile ── */
@media (max-width: 768px) {
  .footer__top { text-align: center; }
  .footer__brand,
  .footer__links,
  .footer__contact { display: flex; flex-direction: column; align-items: center; }
  .footer__brand p { max-width: 420px; }
  .footer__contact-line {
    justify-content: center;
    text-align: left;
    width: 100%;
    max-width: 320px;
  }
  .footer__contact-line--address span { text-align: left; }
  .footer__cta { margin-left: auto; margin-right: auto; }
}

@media (max-width: 520px) {
  .products-grid   { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__content h1 { font-size: 2rem; }
  .advantage       { min-width: 50%; flex: 0 0 50%; }
}

/* ══════════════════════════════════════════════
   BREADCRUMB BAR
   ══════════════════════════════════════════════ */
.breadcrumb-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb i.fa-chevron-right { font-size: 9px; color: var(--border); }
.breadcrumb span { color: var(--text); font-weight: 500; }

/* ══════════════════════════════════════════════
   NAVBAR ACTIVE CATEGORY
   ══════════════════════════════════════════════ */
.navbar__list > li.active-cat > a {
  color: var(--pink);
  border-bottom-color: var(--pink);
  font-weight: 600;
}

/* ══════════════════════════════════════════════
   PRODUCT MAIN SECTION
   ══════════════════════════════════════════════ */
.product-main {
  padding: 40px 0 56px;
  background: var(--white);
}

.product-layout {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Gallery ── */
.product-gallery {
  position: sticky;
  top: calc(var(--header-h) + var(--navbar-h) + 16px);
}

.product-gallery__main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #f0f7fd 0%, #e8f4fb 100%);
  border: 1px solid var(--border);
  margin-bottom: 12px;
}

.product-gallery__visual {
  padding: 40px 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  min-height: 340px;
}

/* DTF Roll Mockup */
.dtf-roll-mockup {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 24px rgba(22,129,196,.25));
}

.dtf-roll__core {
  position: absolute;
  width: 60px;
  height: 180px;
  background: linear-gradient(180deg, #c8d8e8 0%, #a0b8cc 40%, #7896a8 100%);
  border-radius: 6px 6px 4px 4px;
  top: 10px;
  z-index: 2;
  box-shadow: inset -4px 0 8px rgba(0,0,0,.15), 2px 0 6px rgba(0,0,0,.1);
}

.dtf-roll__film {
  position: absolute;
  width: 160px;
  height: 200px;
  border-radius: 80px / 50px;
  background: linear-gradient(160deg, var(--film-color-1, #e8f4fb) 0%, var(--film-color-2, #b8d8ef) 50%, var(--film-color-3, #88b8d8) 100%);
  z-index: 1;
  box-shadow: 4px 0 16px rgba(0,0,0,.12), -2px 0 8px rgba(0,0,0,.06);
  transition: background .3s ease;
}

/* Finition color variations */
.dtf-roll__film.fin-mat {
  --film-color-1: #e8f0f8;
  --film-color-2: #c8d8e8;
  --film-color-3: #a0b8cc;
  background: linear-gradient(160deg, #e8f0f8 0%, #c8d8e8 50%, #a0b8cc 100%);
}
.dtf-roll__film.fin-brillant {
  background: linear-gradient(160deg, #d0eaff 0%, #88c4f4 40%, #4499d8 100%);
  box-shadow: 4px 0 16px rgba(22,129,196,.3), -2px 0 8px rgba(22,129,196,.1),
              inset 2px 4px 12px rgba(255,255,255,.5);
}
.dtf-roll__film.fin-satin {
  background: linear-gradient(160deg, #dde8f4 0%, #b0c8e0 40%, #8aacc8 70%, #c8dcea 100%);
  box-shadow: 4px 0 16px rgba(22,129,196,.2), -2px 0 8px rgba(0,0,0,.08),
              inset 1px 2px 8px rgba(255,255,255,.35);
}

.dtf-roll__label {
  position: absolute;
  bottom: -28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  z-index: 3;
}
.dtf-roll__laize {
  font-size: 11px;
  font-weight: 700;
  color: var(--pink);
  background: rgba(22,129,196,.1);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: .04em;
}
.dtf-roll__finish {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.product-gallery__specs-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}
.product-gallery__specs-pills span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--pink);
  background: rgba(22,129,196,.08);
  border: 1px solid rgba(22,129,196,.2);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Thumbnails */
.product-gallery__thumbs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.product-thumb {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 8px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
.product-thumb:hover { border-color: var(--pink); color: var(--pink); }
.product-thumb.active {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 0 0 3px rgba(22,129,196,.15);
}

.thumb-swatch {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,.08);
}
.thumb-swatch--mat      { background: linear-gradient(135deg, #e0ecf8, #b8cedd); }
.thumb-swatch--brillant { background: linear-gradient(135deg, #b0daff, #3a9ad8); box-shadow: inset 2px 2px 6px rgba(255,255,255,.5); }
.thumb-swatch--satin    { background: linear-gradient(135deg, #cce0f4, #90b4d0, #d4e4f4); }

/* Technical specs box */
.product-tech-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.product-tech-box h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.product-tech-box h4 i { color: var(--pink); }
.product-tech-box ul { list-style: none; }
.product-tech-box ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.product-tech-box ul li:last-child { border-bottom: none; }
.product-tech-box ul li span { color: var(--text-muted); }
.product-tech-box ul li strong { color: var(--dark); font-weight: 600; }

/* ── Product Info (right col) ── */
.product-info__head { margin-bottom: 20px; }

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.product-badge--hot { background: var(--gradient); color: var(--white); }

.product-info__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 6px;
}

.product-info__subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.product-info__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.stars { color: #f59e0b; font-size: 14px; }
.rating-score { font-weight: 700; font-size: 15px; color: var(--dark); }
.rating-count { font-size: 13px; color: var(--pink); }
.rating-sep { color: var(--border); }
.rating-ref { font-size: 12px; color: var(--text-muted); }

/* Price display */
.product-price-display {
  background: linear-gradient(135deg, #f0f7fd 0%, #e8f4fb 100%);
  border: 1px solid rgba(22,129,196,.2);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 24px;
}
.price-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}
.price-from { font-size: 13px; color: var(--text-muted); }
.price-unit {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
  transition: all .2s ease;
}
.price-total-line {
  font-size: 14px;
  color: var(--text-muted);
}
.price-total-line strong {
  color: var(--dark);
  font-size: 16px;
  font-weight: 700;
}
.price-ht { font-size: 12px; }
.price-vat { font-size: 11px; color: var(--text-muted); }
.price-saving {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #16a34a;
  background: #f0fdf4;
  border-radius: 6px;
  padding: 5px 10px;
}

/* ── Configurator ── */
.configurator { display: flex; flex-direction: column; gap: 20px; }

.config-step { display: flex; flex-direction: column; gap: 12px; }

.config-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.config-step-num {
  width: 22px;
  height: 22px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.config-current {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--pink);
  background: rgba(22,129,196,.1);
  padding: 2px 10px;
  border-radius: 20px;
}
.config-hint { font-size: 12px; font-weight: 400; color: var(--text-muted); margin-left: 2px; }

/* Finition buttons */
.finition-btns { display: flex; gap: 10px; }

.finition-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.finition-btn:hover { border-color: var(--pink); }
.finition-btn.active {
  border-color: var(--pink);
  background: rgba(22,129,196,.04);
  box-shadow: 0 0 0 3px rgba(22,129,196,.15);
}
.finition-swatch {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,.08);
  flex-shrink: 0;
}
.finition-swatch--mat      { background: linear-gradient(135deg, #e0ecf8, #b8cedd); }
.finition-swatch--brillant { background: linear-gradient(135deg, #b0daff, #3a9ad8); box-shadow: inset 2px 2px 8px rgba(255,255,255,.6); }
.finition-swatch--satin    { background: linear-gradient(135deg, #cce0f4, #90b4d0, #d4e4f4); }
.finition-name { font-size: 13px; font-weight: 600; color: var(--dark); }
.finition-price { font-size: 11px; color: var(--text-muted); }
.finition-btn.active .finition-name { color: var(--pink); }
.finition-btn.active .finition-price { color: var(--pink); }

/* Quantity control */
.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
  transition: border-color var(--transition);
}
.qty-control:focus-within { border-color: var(--pink); }

.qty-btn {
  width: 44px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  background: var(--bg-light);
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.qty-btn:hover { background: rgba(22,129,196,.08); color: var(--pink); }

.qty-input-wrap {
  display: flex;
  align-items: center;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.qty-input-wrap input {
  width: 80px;
  height: 48px;
  border: none;
  outline: none;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font);
}
.qty-unit {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  padding-right: 12px;
}

.qty-presets {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.qty-preset {
  padding: 5px 12px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.qty-preset:hover { border-color: var(--pink); color: var(--pink); background: rgba(22,129,196,.04); }
.qty-preset.active { border-color: var(--pink); color: var(--pink); background: rgba(22,129,196,.08); }

/* Price recap */
.config-recap {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.recap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
}
.recap-row strong { font-size: 16px; font-weight: 700; color: var(--dark); }
.recap-row--tier { font-size: 13px; }
.tier-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(22,129,196,.12);
  color: var(--pink);
}
.recap-next {
  font-size: 12px;
  color: #16a34a;
  font-weight: 500;
}

/* CTA */
.product-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-cta-main {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  justify-content: center;
}
.btn-cta-quote {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  justify-content: center;
}

/* Trust signals */
.product-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.trust-item > i {
  width: 32px;
  height: 32px;
  background: rgba(22,129,196,.1);
  color: var(--pink);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.trust-item div { display: flex; flex-direction: column; line-height: 1.3; }
.trust-item strong { font-size: 13px; color: var(--dark); }
.trust-item span { font-size: 12px; color: var(--text-muted); }

/* ══════════════════════════════════════════════
   PRODUCT TABS
   ══════════════════════════════════════════════ */
.product-tabs-section {
  background: var(--bg-light);
  padding: 0 0 64px;
}

.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  background: var(--white);
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
}
.tab-btn:hover { color: var(--pink); }
.tab-btn.active { color: var(--pink); border-bottom-color: var(--pink); }

.tab-panel {
  display: none;
  padding: 40px 0 0;
}
.tab-panel.active { display: block; }

/* Tab: Description */
.tab-content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.tab-text h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.tab-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin: 24px 0 12px;
}
.tab-text p {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 14px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.feature-list li i { color: var(--pink); margin-top: 2px; flex-shrink: 0; }

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}
.info-card h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.info-card h4 i { color: var(--pink); }
.info-card p { font-size: 13px; color: var(--text-muted); line-height: 1.65; }
.info-card--tip { border-color: rgba(22,129,196,.25); background: rgba(22,129,196,.03); }
.info-card--tip h4 i { color: #f59e0b; }

/* Tab: Specs */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.specs-group {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.specs-group h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--white);
  background: var(--gradient);
  padding: 10px 16px;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 9px 16px; color: var(--text-muted); vertical-align: middle; }
.specs-table td:first-child { width: 55%; }
.specs-table td strong { color: var(--dark); font-weight: 600; }

.swatch {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,.1);
  vertical-align: middle;
  margin-right: 6px;
}
.swatch--mat      { background: linear-gradient(135deg, #e0ecf8, #b8cedd); }
.swatch--brillant { background: linear-gradient(135deg, #b0daff, #3a9ad8); }
.swatch--satin    { background: linear-gradient(135deg, #cce0f4, #90b4d0); }

/* Tab: Guide */
.guide-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}
.guide-steps h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 28px;
}
.guide-step {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.guide-step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.guide-step__content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.guide-step__content p {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.65;
}

.guide-warning, .guide-tip, .guide-download {
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.guide-warning {
  background: #fff7ed;
  border: 1px solid #fcd9a0;
}
.guide-warning > i { color: #f59e0b; font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.guide-tip {
  background: rgba(22,129,196,.05);
  border: 1px solid rgba(22,129,196,.2);
}
.guide-tip > i { color: var(--pink); font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.guide-download {
  background: var(--white);
  border: 1px solid var(--border);
}
.guide-download > i { color: #e53e3e; font-size: 24px; flex-shrink: 0; }
.guide-warning div strong,
.guide-tip div strong,
.guide-download div strong {
  font-size: 13.5px;
  color: var(--dark);
  display: block;
  margin-bottom: 5px;
}
.guide-warning div p,
.guide-tip div p,
.guide-download div p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Tab: Price table */
.price-table-section { padding: 0; }
.price-table-section h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.price-table-intro { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.price-tables-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 16px; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.price-table caption {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--white);
  background: var(--gradient);
  padding: 10px 16px;
  text-align: left;
  caption-side: top;
}
.price-table thead tr { background: var(--bg-light); }
.price-table th {
  padding: 10px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.price-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table td strong { color: var(--dark); font-weight: 700; font-size: 15px; }
.saving-pct { color: #16a34a; font-weight: 700; font-size: 13px; }
.price-tier.active-tier {
  background: rgba(22,129,196,.08);
}
.price-tier.active-tier td:first-child {
  border-left: 3px solid var(--pink);
  font-weight: 700;
  color: var(--dark);
}
.price-note {
  font-size: 12.5px;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.6;
}
.price-note i { color: var(--pink); margin-top: 2px; flex-shrink: 0; }

/* Tab: Reviews */
.reviews-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.reviews-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  position: sticky;
  top: calc(var(--header-h) + var(--navbar-h) + 16px);
}
.reviews-score { margin-bottom: 20px; }
.score-big {
  display: block;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}
.score-stars { color: #f59e0b; font-size: 18px; margin-bottom: 4px; }
.score-count { font-size: 13px; color: var(--text-muted); }

.review-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.review-bar .bar {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.review-bar .bar div {
  height: 100%;
  background: #f59e0b;
  border-radius: 4px;
}
.review-bar span:first-child { width: 28px; text-align: right; flex-shrink: 0; }
.review-bar span:last-child  { width: 32px; flex-shrink: 0; }

.reviews-list { display: flex; flex-direction: column; gap: 18px; }

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-header strong { font-size: 14px; color: var(--dark); }
.review-stars { color: #f59e0b; font-size: 13px; }
.review-date { margin-left: auto; font-size: 12px; color: var(--text-muted); }
.review-card p { font-size: 13.5px; color: var(--text); line-height: 1.65; margin-bottom: 10px; }
.review-verified {
  font-size: 11.5px;
  color: #16a34a;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ══════════════════════════════════════════════
   RELATED PRODUCTS
   ══════════════════════════════════════════════ */
.related-section { background: var(--white); }
.products-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ══════════════════════════════════════════════
   PRODUCT PAGE RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .product-layout { grid-template-columns: 400px 1fr; gap: 32px; }
  .tab-content-grid { grid-template-columns: 1fr 280px; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-layout { grid-template-columns: 240px 1fr; }
}

@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
  .guide-layout { grid-template-columns: 1fr; }
  .tab-content-grid { grid-template-columns: 1fr; }
  .price-tables-wrap { grid-template-columns: 1fr; }
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-summary { position: static; }
  .products-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .specs-grid { grid-template-columns: 1fr; }
  .tabs-nav .tab-btn { padding: 14px 16px; font-size: 13px; }
  .products-grid--4 { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════
   GANGSHET PROMO CARD (left gallery)
   ══════════════════════════════════════════════ */
.gangshet-promo-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #0d5a8a 0%, #1681C4 100%);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 20px;
  color: var(--white);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gangshet-promo-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,129,196,.35); }
.gangshet-promo-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.gangshet-promo-card > div { flex: 1; }
.gangshet-promo-card strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.gangshet-promo-card p { font-size: 12px; color: rgba(255,255,255,.8); line-height: 1.4; margin: 0; }
.gangshet-promo-card .btn-primary {
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 13px;
  background: rgba(255,255,255,.2);
  border: 1.5px solid rgba(255,255,255,.5);
}
.gangshet-promo-card .btn-primary:hover { background: rgba(255,255,255,.35); }

/* ══════════════════════════════════════════════
   GANGSHET BUTTON (configurator CTA)
   ══════════════════════════════════════════════ */
.btn-gangshet {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px 20px;
  background: linear-gradient(135deg, #0d5a8a 0%, #1681C4 100%);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.btn-gangshet::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.08) 0%, transparent 60%);
  pointer-events: none;
}
.btn-gangshet:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22,129,196,.4);
}
.btn-gangshet > i:first-child {
  font-size: 22px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn-gangshet > span {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.btn-gangshet strong { font-size: 15px; font-weight: 700; }
.btn-gangshet small  { font-size: 12px; color: rgba(255,255,255,.75); }
.btn-gangshet__arrow { font-size: 14px; color: rgba(255,255,255,.6); flex-shrink: 0; }

/* ══════════════════════════════════════════════
   GANGSHET MODAL
   ══════════════════════════════════════════════ */
.gangshet-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.gangshet-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.gangshet-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 35, .7);
  backdrop-filter: blur(4px);
}

.gangshet-modal__panel {
  position: relative;
  z-index: 1;
  width: calc(100% - 32px);
  max-width: 1320px;
  height: calc(100vh - 48px);
  margin-top: 24px;
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 -4px 40px rgba(0,0,0,.25);
  transform: translateY(40px);
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.gangshet-modal.open .gangshet-modal__panel {
  transform: translateY(0);
}

.gangshet-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 2px solid var(--border);
  background: var(--white);
  flex-shrink: 0;
}

.gangshet-modal__title {
  display: flex;
  align-items: center;
  gap: 12px;
}
.gangshet-modal__title > i {
  font-size: 22px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gangshet-modal__title strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}
.gangshet-modal__title span {
  font-size: 12.5px;
  color: var(--text-muted);
}

.gangshet-modal__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gangshet-modal__ext {
  font-size: 13px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.gangshet-modal__close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background var(--transition), color var(--transition);
  border: 1px solid var(--border);
  cursor: pointer;
}
.gangshet-modal__close:hover { background: #fee2e2; color: #dc2626; }

.gangshet-modal__body {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.gangshet-modal__iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Fallback (si iframe bloqué par X-Frame-Options) */
.gangshet-modal__fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
  text-align: center;
  padding: 40px;
  background: var(--bg-light);
}
.gangshet-modal__fallback.visible { display: flex; }
.gangshet-modal__fallback > i {
  font-size: 3rem;
  color: var(--text-muted);
}
.gangshet-modal__fallback h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
}
.gangshet-modal__fallback p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.gangshet-modal__fallback .btn-primary {
  margin-top: 8px;
  padding: 14px 28px;
  font-size: 15px;
}

/* Prevent body scroll when modal open */
body.gangshet-open { overflow: hidden; }

@media (max-width: 768px) {
  .gangshet-modal__panel {
    width: 100%;
    margin-top: 0;
    height: 100vh;
    border-radius: 0;
  }
  .gangshet-modal__ext { display: none; }
  .gangshet-promo-card { flex-wrap: wrap; }
}

/* ══════════════════════════════════════════════
   GANGSHET — Inline (dans le configurateur)
   ══════════════════════════════════════════════ */
.gs-inline {
  margin-bottom: 20px;
}
.gs-inline .gs-dropzone {
  padding: 32px 20px 28px;
}
.gs-inline .gs-calc-cta {
  margin-top: 14px;
}
.gs-inline .gs-calc-btn {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 15px;
}

/* ── Drop zone ── */
.gs-dropzone {
  border: 2px dashed #b0bdc8;
  border-radius: 14px;
  padding: 52px 32px 44px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  position: relative;
  background: var(--white);
}
.gs-dropzone:hover,
.gs-dropzone.drag-over {
  border-color: var(--pink);
  background: #f0f8ff;
}
.gs-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.gs-dropzone__icon {
  margin-bottom: 18px;
  color: #94a3b8;
}
.gs-dropzone__icon svg { display: block; margin: 0 auto; }
.gs-dropzone__main {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}
.gs-dropzone__sub {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.gs-dropzone__hint {
  display: block;
  font-size: 12px;
  color: #b0bbc8;
}

/* ── File list ── */
.gs-file-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gs-file-list:empty { display: none; }
.gs-file-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--dark);
}
.gs-file-item i { color: var(--pink); font-size: 15px; flex-shrink: 0; }
.gs-file-item__name { flex: 1; font-weight: 500; }
.gs-file-item__size { color: var(--text-muted); font-size: 12px; }
.gs-file-item__remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  padding: 4px;
  border-radius: 4px;
  transition: color .15s, background .15s;
}
.gs-file-item__remove:hover { color: #ef4444; background: #fee2e2; }

/* ── Calc CTA ── */
.gs-calc-cta {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.gs-calc-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(22,129,196,.3);
}
.gs-calc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(22,129,196,.45);
  color: var(--white);
}
.gs-calc-btn__arrow { transition: transform .2s; }
.gs-calc-btn:hover .gs-calc-btn__arrow { transform: translateX(4px); }

@media (max-width: 640px) {
  .gs-dropzone { padding: 36px 16px 28px; }
  .gs-calc-btn { padding: 14px 28px; font-size: 14px; }
}

/* ══════════════════════════════════════════════
   PRIX MASQUÉS (utilisateur non connecté)
   Les tarifs sont personnalisés par compte chez MasterHub. Quand le
   client n'est pas connecté, on masque purement les éléments [data-price]
   via JS (display:none). Aucun badge de remplacement → layout préservé.
   ══════════════════════════════════════════════ */

/* Notice optionnelle "Tarifs sur compte" (utilisable via [data-guest-only])
   pour informer le visiteur que les prix sont réservés aux pros connectés. */
.tarif-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(22, 129, 196, 0.08);
  color: var(--purple);
  border: 1px solid rgba(22, 129, 196, 0.18);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}
.tarif-notice i {
  color: var(--pink);
  font-size: 13px;
}
.tarif-notice:hover {
  background: var(--pink);
  color: var(--white);
  border-color: transparent;
}
.tarif-notice:hover i { color: var(--white); }
.tarif-notice.center { display: flex; justify-content: center; }

/* Page connexion / inscription / dashboard compte : layout minimaliste */
.account-page {
  min-height: calc(100vh - var(--header-h) - var(--navbar-h));
  background: var(--bg-light);
  padding: 56px 0 72px;
}
.account-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}
.account-card--wide {
  max-width: 880px;
  padding: 32px;
}
.account-card__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 6px;
  text-align: center;
}
.account-card__sub {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 28px;
  text-align: center;
}
.account-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.account-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.account-form input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: inherit;
  transition: var(--transition);
}
.account-form input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(22, 129, 196, 0.12);
}
.account-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.account-form .btn-primary {
  margin-top: 8px;
  justify-content: center;
}
.account-divider {
  text-align: center;
  margin: 18px 0;
  color: var(--text-muted);
  font-size: 13px;
  position: relative;
}
.account-divider::before,
.account-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--border);
}
.account-divider::before { left: 0; }
.account-divider::after  { right: 0; }
.account-link {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
}
.account-link a {
  color: var(--pink);
  font-weight: 600;
  text-decoration: none;
}
.account-link a:hover { text-decoration: underline; }

/* Page placeholder simple (mes-devis, mes-favoris…) */
.placeholder-empty {
  text-align: center;
  padding: 32px 16px;
  color: var(--text-muted);
}
.placeholder-empty i {
  font-size: 64px;
  color: var(--pink);
  opacity: .4;
  margin-bottom: 16px;
}
.placeholder-empty h3 {
  font-size: 20px;
  color: var(--dark);
  margin: 0 0 8px;
}
.placeholder-empty p {
  font-size: 14px;
  margin: 0 0 20px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* ══════════════════════════════════════════════
   PAGE MON COMPTE (mon-compte.html)
   ══════════════════════════════════════════════ */
.mc-welcome {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}
.mc-welcome__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.mc-welcome__info { flex: 1; min-width: 0; }
.mc-welcome__info h2 { margin: 0 0 4px; font-size: 18px; font-weight: 700; color: var(--dark); }
.mc-welcome__info p  { margin: 0; font-size: 13px; color: var(--text-muted); }
.mc-welcome__tier {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}
.mc-welcome__tier small { font-size: 11.5px; color: var(--text-muted); }

.mc-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7c948, #d4a017);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  white-space: nowrap;
}
.mc-tier-badge--lg { font-size: 13px; padding: 8px 16px; }

.mc-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.mc-shortcut {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--dark);
  transition: var(--transition);
}
.mc-shortcut:hover { border-color: var(--pink); transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--dark); }
.mc-shortcut i { font-size: 20px; color: var(--pink); margin-bottom: 4px; }
.mc-shortcut strong { font-size: 14px; font-weight: 700; }
.mc-shortcut span { font-size: 12px; color: var(--text-muted); }

.mc-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-bottom: 18px;
}
.mc-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.mc-section__head h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}
.mc-section__head h3 i { color: var(--pink); width: 20px; }
.mc-edit-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
}
.mc-edit-btn:hover { background: var(--pink); color: #fff; border-color: var(--pink); }

.mc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
}
.mc-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.mc-field label {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .4px;
}
.mc-field span {
  font-size: 14px;
  color: var(--dark);
  word-break: break-word;
}

.mc-addr-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.mc-addr-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--bg-light);
}
.mc-addr-card strong { font-size: 14px; color: var(--dark); }
.mc-addr-card p { margin: 0; font-size: 13px; color: var(--text-muted); line-height: 1.55; }
.mc-addr-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  align-self: flex-start;
}
.mc-addr-tag--primary { background: rgba(22, 129, 196, 0.14); color: var(--pink); }
.mc-addr-tag--ship    { background: rgba(34, 197, 94, 0.14); color: #16a34a; }
.mc-addr-actions { display: flex; gap: 12px; margin-top: 4px; }

.mc-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: none;
  border: none;
  color: var(--pink);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}
.mc-link-btn:hover { text-decoration: underline; }
.mc-link-btn--danger { color: #dc2626; }

.mc-tier { display: flex; flex-direction: column; gap: 14px; }
.mc-tier__current p { margin: 8px 0 0; font-size: 13.5px; color: var(--text-muted); }
.mc-tier__bar {
  width: 100%;
  height: 8px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
}
.mc-tier__bar span {
  display: block;
  height: 100%;
  background: var(--gradient);
  border-radius: 999px;
}
.mc-tier__legend {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 12.5px;
  color: var(--text-muted);
}

.mc-pref-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.mc-pref-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mc-pref-list li:last-child { border-bottom: none; }
.mc-pref-list li > div { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.mc-pref-list li strong { font-size: 14px; color: var(--dark); }
.mc-pref-list li small { font-size: 12.5px; color: var(--text-muted); }

.mc-switch { position: relative; display: inline-block; width: 42px; height: 24px; flex-shrink: 0; }
.mc-switch input { opacity: 0; width: 0; height: 0; }
.mc-switch span {
  position: absolute;
  inset: 0;
  background: #d1d5db;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition);
}
.mc-switch span::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.mc-switch input:checked + span { background: var(--pink); }
.mc-switch input:checked + span::before { transform: translateX(18px); }

.mc-select {
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13.5px;
  font-family: inherit;
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
}
.mc-select:focus { outline: none; border-color: var(--pink); }

.mc-section--danger { border-color: #fde2e2; background: #fffafa; }
.mc-danger-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.mc-danger-row:last-child { border-bottom: none; }
.mc-danger-row > div { flex: 1; min-width: 0; }
.mc-danger-row strong { display: block; font-size: 14px; color: var(--dark); margin-bottom: 2px; }
.mc-danger-row p { margin: 0; font-size: 12.5px; color: var(--text-muted); }
.mc-danger-row--critical strong { color: #dc2626; }

.mc-btn-danger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #fff;
  color: #dc2626;
  border: 1.5px solid #dc2626;
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.mc-btn-danger:hover { background: #dc2626; color: #fff; }

@media (max-width: 900px) {
  .mc-shortcuts { grid-template-columns: repeat(2, 1fr); }
  .mc-grid { grid-template-columns: 1fr; }
  .mc-addr-grid { grid-template-columns: 1fr; }
  .mc-welcome { flex-wrap: wrap; }
  .mc-welcome__tier { align-items: flex-start; text-align: left; }
}
@media (max-width: 600px) {
  .mc-shortcuts { grid-template-columns: 1fr; }
  .mc-tier__legend { flex-direction: column; gap: 4px; }
  .mc-danger-row { flex-direction: column; align-items: flex-start; }
}

/* Compactage des boutons "Se connecter" / login (un peu moins hauts) */
.account-form .btn-primary,
.placeholder-empty .btn-primary,
.placeholder-empty .btn-outline,
.mobile-drawer__footer .btn-primary,
.mobile-drawer__footer .btn-outline {
  padding-top: 8px;
  padding-bottom: 8px;
}

/* Page info (FAQ, à propos, services, contact, blog) */
.info-page {
  padding: 56px 0 72px;
  background: var(--bg-light);
  min-height: calc(100vh - var(--header-h) - var(--navbar-h));
}
.info-page__container {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.info-page__container h1 {
  font-size: 30px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 12px;
}
.info-page__container .intro {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 32px;
}
.info-page__container h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 12px;
}
.info-page__container p,
.info-page__container li {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.7;
}
.info-page__container ul {
  padding-left: 20px;
  margin: 8px 0 16px;
}
.info-page__container ul li {
  list-style: disc;
  margin-bottom: 6px;
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  font-weight: 700;
  color: var(--dark);
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  color: var(--pink);
  transition: transform .2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(180deg);
}
.faq-item p {
  margin-top: 10px;
  color: var(--text-muted);
}

/* Mobile drawer : surlignage du lien de la page courante */
.mobile-drawer__list a.active {
  background: rgba(22, 129, 196, 0.12);
  color: var(--pink);
  font-weight: 700;
}

/* Responsive : pages account / info / faq */
@media (max-width: 768px) {
  .account-page,
  .info-page { padding: 32px 0 48px; }
  .account-card { padding: 28px 20px; margin: 0 12px; }
  .account-card--wide { padding: 24px 18px; }
  .account-card__title,
  .info-page__container h1 { font-size: 22px; }
  .info-page__container { padding: 28px 20px; margin: 0 12px; }
  .info-page__container h2 { font-size: 18px; }
  .placeholder-empty i { font-size: 48px; }
  .placeholder-empty h3 { font-size: 18px; }
}
@media (max-width: 480px) {
  .tarif-notice { font-size: 12px; padding: 6px 12px; }
}

/* Bandeau "tarifs sur compte" sous le hero d'une catégorie */
.cat-tarif-banner {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.cat-tarif-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
  flex-wrap: wrap;
  text-align: center;
}
.cat-tarif-banner__inner i {
  color: var(--pink);
  font-size: 14px;
}
.cat-tarif-banner__inner strong { color: var(--dark); font-weight: 700; }
.cat-tarif-banner__inner a {
  color: var(--pink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
}
.cat-tarif-banner__inner a:hover { color: var(--purple-dark); }

/* ══════════════════════════════════════════════
   AUTH STATE — V2
   Masquage des prix pour les invités + bandeau
   "produit prochainement disponible" (verrouillage par catégorie)
   ══════════════════════════════════════════════ */

/* Par défaut on masque proprement les éléments tarifés aux invités.
   Les pages produits avec une UX dédiée (lien "Connectez-vous pour
   voir le tarif" via [data-guest-only]) gardent leur logique propre. */
body.is-guest [data-price]:not(.price-keep) {
  display: none !important;
}

/* Si on souhaite plutôt flouter au lieu de masquer, ajouter
   .price-blur sur le conteneur. */
body.is-guest [data-price].price-blur {
  display: inline-block !important;
  filter: blur(6px);
  user-select: none;
  pointer-events: none;
}

/* ── Bandeau "Vous pourrez prochainement commander…" ── */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  max-width: 720px;
  margin: 48px auto;
  padding: 40px 32px;
  background: linear-gradient(135deg, #fff 0%, #fdf6f9 100%);
  border: 1px dashed var(--pink);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(15, 23, 42, .04);
}
.coming-soon__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink) 0%, #c2185b 100%);
  color: #fff;
  font-size: 26px;
}
.coming-soon__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
  line-height: 1.25;
}
.coming-soon__text {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
  max-width: 540px;
  line-height: 1.55;
}
.coming-soon__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
.coming-soon__note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 6px;
}
.coming-soon__note i { color: var(--pink); margin-right: 4px; }

/* Quand un produit est verrouillé pour le client : on cache la zone
   workspace et on affiche le bandeau coming-soon à la place. */
body.product-locked [data-product-unlocked] { display: none !important; }
body.product-unlocked [data-product-locked] { display: none !important; }

/* ══════════════════════════════════════════════
   HOMEPAGE SECTIONS — pillars / audience / process
   ══════════════════════════════════════════════ */
.section__header--center { text-align: center; max-width: 760px; margin: 0 auto 56px; display: block; }
.section__header--center h2 {
  margin: 0 0 16px;
  font-size: clamp(1.85rem, 3.6vw, 2.5rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.01em;
  padding-bottom: 0;
  background: linear-gradient(135deg, var(--dark, #1a1a2e) 0%, var(--dark, #1a1a2e) 60%, var(--pink, #ec4899) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section__header--center h2::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 2px;
  background: var(--gradient, linear-gradient(135deg, #6366f1, #ec4899));
  position: static;
}
.see-all--center {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(99, 102, 241, .08);
  color: var(--primary, #6366f1);
  font-weight: 600;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.see-all--center:hover { background: rgba(99, 102, 241, .14); transform: translateY(-1px); }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent, var(--pink));
  margin-bottom: 14px;
}
.section__lead { color: var(--text-muted); font-size: 16px; line-height: 1.7; }

/* Pillars (problèmes / réponses) */
.pillars { background: var(--bg-soft, #f8f9fb); }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pillar {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px rgba(15, 23, 42, .25);
  border-color: transparent;
}
.pillar__num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .1em;
}
.pillar__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, .12), rgba(236, 72, 153, .12));
  color: var(--accent, var(--pink));
  font-size: 22px;
  margin-bottom: 6px;
}
.pillar__icon--accent {
  background: var(--gradient);
  color: var(--white);
}
.pillar h3 { font-size: 18px; font-weight: 700; margin: 0; }
.pillar p { color: var(--text-muted); font-size: 14.5px; line-height: 1.65; margin: 0; }
.pillar__metric {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pillar__metric i { color: var(--accent, var(--pink)); }
.pillar--cta {
  background: linear-gradient(135deg, #1a1a2e, #16213e 60%, #0f3460);
  border-color: transparent;
  color: var(--white);
}
.pillar--cta h3 { color: var(--white); font-size: 19px; line-height: 1.35; }
.pillar--cta p { color: rgba(255, 255, 255, .78); }
.pillar--cta .btn-primary { margin-top: auto; align-self: flex-start; }

/* Audience */
.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.audience__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 26px;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.audience__card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(15,23,42,.25); }
.audience__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--gradient);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 24px;
}
.audience__card h3 { font-size: 18px; margin: 0 0 10px; }
.audience__card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.65; margin: 0; }

/* Process timeline */
.process { background: var(--bg-soft, #f8f9fb); }
.process__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
}
.process__steps::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--border) 8%, var(--border) 92%, transparent);
  z-index: 0;
}
.process__step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
}
.process__num {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--accent, var(--pink));
}
.process__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  display: grid; place-items: center;
  font-size: 20px;
  margin-bottom: 4px;
}
.process__step h3 { font-size: 16px; margin: 0; }
.process__step p { color: var(--text-muted); font-size: 13.5px; line-height: 1.6; margin: 0; }
.process__time {
  margin-top: auto;
  padding-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .04em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .pillars__grid    { grid-template-columns: repeat(2, 1fr); }
  .process__steps   { grid-template-columns: repeat(2, 1fr); }
  .process__steps::before { display: none; }
}
@media (max-width: 700px) {
  .pillars__grid    { grid-template-columns: 1fr; }
  .audience__grid   { grid-template-columns: 1fr; }
  .process__steps   { grid-template-columns: 1fr; }
}

/* ── Reveal on scroll (subtle fade-up) ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ──────────────────────────────────────
   Compte — Cards de redirection vers app
   ────────────────────────────────────── */
.account-card--redirect { text-align: center; }
.account-card--redirect .account-card__icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white); font-size: 26px;
}
.btn-primary--xl {
  font-size: 15px;
  padding: 14px 28px;
  width: 100%;
  justify-content: center;
}
.account-bullets {
  list-style: none;
  margin: 22px 0 4px;
  padding: 0;
  text-align: left;
  font-size: 14px;
  color: var(--text);
}
.account-bullets li {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0;
}
.account-bullets li i { color: var(--pink); font-size: 13px; }

/* ──────────────────────────────────────
   Pages légales (CGV, CGU, RGPD, Cookies, Mentions légales)
   ────────────────────────────────────── */
.legal-page {
  padding: 60px 0 80px;
  background: var(--bg-light);
  min-height: 60vh;
}
.legal-page__container {
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 56px;
  box-shadow: var(--shadow);
}
.legal-page__container h1 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--dark);
}
.legal-page__updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.legal-page__container h2 {
  font-size: 18px;
  margin: 28px 0 10px;
  color: var(--dark);
  font-weight: 700;
}
.legal-page__container h3 {
  font-size: 15px;
  margin: 18px 0 6px;
  color: var(--text);
  font-weight: 600;
}
.legal-page__container p,
.legal-page__container li {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
}
.legal-page__container p { margin-bottom: 10px; }
.legal-page__container ul,
.legal-page__container ol {
  padding-left: 22px;
  margin: 8px 0 14px;
}
.legal-page__container li { margin-bottom: 4px; }
.legal-page__container a { color: var(--pink); text-decoration: underline; }
.legal-page__container strong { color: var(--dark); }
.legal-toc {
  background: var(--bg-light);
  border-left: 3px solid var(--pink);
  padding: 14px 18px;
  margin: 0 0 28px;
  border-radius: 4px;
  font-size: 13.5px;
}
.legal-toc strong { display: block; margin-bottom: 6px; }
.legal-toc a { display: inline-block; margin-right: 14px; color: var(--text); text-decoration: none; }
.legal-toc a:hover { color: var(--pink); }

@media (max-width: 768px) {
  .legal-page__container { padding: 28px 22px; margin: 0 14px; }
  .legal-page__container h1 { font-size: 22px; }
}
