/* ================================================================
   PRODERMA — DERMOCOSMÉTIQUE
   Global Stylesheet · Liquid Glass · Premium Ecommerce
   ================================================================ */

/* ── 1. DESIGN TOKENS ───────────────────────────────────────────── */
:root {
  --blue:        #45a8e3;
  --blue-dark:   #2d8bc4;
  --blue-glass:  rgba(69, 168, 227, 0.1);
  --blue-light:  #e8f5fd;
  --navy:        #26215b;
  --navy-dark:   #1a1740;
  --navy-light:  rgba(38, 33, 91, 0.07);
  --dark:        #0F172A;
  --white:       #ffffff;
  --off-white:   #F8FAFC;
  --gray-50:     #f8fafc;
  --gray-100:    #f1f5f9;
  --gray-200:    #e2e8f0;
  --gray-300:    #cbd5e1;
  --gray-400:    #94a3b8;
  --gray-500:    #64748b;
  --gray-600:    #475569;
  --gray-700:    #374151;
  --gray-800:    #1e293b;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  --shadow-sm:   0 1px 4px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md:   0 4px 18px rgba(15,23,42,.09), 0 2px 6px rgba(15,23,42,.05);
  --shadow-lg:   0 12px 40px rgba(15,23,42,.12), 0 4px 14px rgba(15,23,42,.07);
  --shadow-xl:   0 24px 64px rgba(15,23,42,.15), 0 8px 26px rgba(15,23,42,.09);
  --shadow-blue: 0 8px 28px rgba(69,168,227,.35);
  --shadow-navy: 0 8px 28px rgba(38,33,91,.3);

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-elastic:cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast:   150ms;
  --duration-base:   250ms;
  --duration-slow:   400ms;
  --duration-slower: 700ms;

  --nav-h: 76px;
  --section-py: clamp(64px, 9vw, 128px);
  --container-px: clamp(16px, 5vw, 56px);
}

/* ── 2. RESET ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.18; color: var(--navy); }

/* ── 3. TYPOGRAPHY ───────────────────────────────────────────────── */
.display-xl  { font-size: clamp(3rem,   6vw, 5.5rem);  font-weight: 700; letter-spacing: -.025em; }
.display-lg  { font-size: clamp(2.25rem,4vw, 3.75rem); font-weight: 700; letter-spacing: -.02em;  }
.display-md  { font-size: clamp(1.75rem,3vw, 2.75rem); font-weight: 600; letter-spacing: -.015em; }
.display-sm  { font-size: clamp(1.375rem,2vw,2rem);    font-weight: 600; letter-spacing: -.01em;  }
.overline {
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--blue);
}
.lead { font-size: clamp(1rem,1.4vw,1.125rem); line-height: 1.8; color: var(--gray-600); }
.text-gradient {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.word-wrap { display: inline-block; overflow: hidden; vertical-align: bottom; }

/* ── 4. LAYOUT ────────────────────────────────────────────────────── */
.container {
  width: 100%; max-width: 1340px;
  margin: 0 auto; padding: 0 var(--container-px);
}
.section      { padding: var(--section-py) 0; }
.section-sm   { padding: calc(var(--section-py) * .6) 0; }

.grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ── 5. NAVBAR ────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 14px var(--container-px);
  transition: padding var(--duration-base) var(--ease-out);
}
.navbar.scrolled { padding: 8px var(--container-px); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: var(--radius-full);
  padding: 10px 12px 10px 24px;
  box-shadow: 0 4px 28px rgba(15,23,42,.09), inset 0 0 0 1px rgba(255,255,255,.7);
  max-width: 1340px; margin: 0 auto;
  transition: box-shadow var(--duration-base) var(--ease-out);
}
.navbar.scrolled .nav-inner { box-shadow: 0 8px 36px rgba(15,23,42,.13); }

.nav-logo img { height: 68px; width: auto; display: block; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: .875rem; font-weight: 500; color: var(--gray-700);
  padding: 8px 16px; border-radius: var(--radius-full);
  transition: color var(--duration-fast), background var(--duration-fast);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--navy); background: var(--navy-light);
}

.nav-actions { display: flex; align-items: center; gap: 2px; }
.nav-icon {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--radius-full);
  color: var(--gray-500); cursor: pointer; position: relative;
  transition: background var(--duration-fast), color var(--duration-fast);
}
.nav-icon:hover { background: var(--gray-100); color: var(--navy); }
.nav-icon svg { width: 20px; height: 20px; stroke-width: 1.6; }

.cart-badge {
  position: absolute; top: 5px; right: 5px;
  width: 16px; height: 16px;
  background: var(--blue); color: #fff;
  font-size: .6rem; font-weight: 800;
  border-radius: 50%; display: none;
  align-items: center; justify-content: center;
  border: 2px solid white;
}

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--duration-base); }

/* ── 6. MOBILE MENU ──────────────────────────────────────────────── */
.mobile-menu {
  position: fixed; inset: 0; background: white; z-index: 200;
  display: flex; flex-direction: column;
  padding: 20px clamp(20px,5vw,40px);
  transform: translateX(110%);
  transition: transform var(--duration-slow) var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.mobile-menu-close {
  width: 42px; height: 42px; background: var(--gray-100);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.mobile-menu-close svg { width: 20px; height: 20px; stroke: var(--navy); }
.mobile-nav-links { display: flex; flex-direction: column; }
.mobile-nav-link {
  font-family: var(--font-heading); font-size: clamp(2rem,5vw,3rem); font-weight: 700;
  color: var(--navy); padding: 16px 0; border-bottom: 1px solid var(--gray-100);
  transition: color var(--duration-fast), padding-left var(--duration-fast);
}
.mobile-nav-link:hover { color: var(--blue); padding-left: 12px; }
.mobile-menu-actions { margin-top: 40px; display: flex; gap: 12px; }

/* ── 7. BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 30px;
  border-radius: var(--radius-full);
  font-size: .875rem; font-weight: 600; letter-spacing: .015em;
  transition: all var(--duration-base) var(--ease-out);
  cursor: pointer; white-space: nowrap; line-height: 1;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-sm  { padding: 10px 22px; font-size: .8125rem; }
.btn-lg  { padding: 18px 40px; font-size: 1rem; }

.btn-primary {
  background: var(--blue); color: white;
  box-shadow: 0 4px 18px rgba(69,168,227,.42);
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 8px 28px rgba(69,168,227,.55);
  transform: translateY(-2px);
}
.btn-primary:active { transform: translateY(0); }

.btn-navy {
  background: var(--navy); color: white;
  box-shadow: 0 4px 18px rgba(38,33,91,.32);
}
.btn-navy:hover {
  background: var(--navy-dark);
  box-shadow: 0 8px 28px rgba(38,33,91,.42);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--gray-300);
}
.btn-outline:hover { border-color: var(--navy); background: var(--navy-light); }

.btn-ghost { background: transparent; color: var(--navy); }
.btn-ghost:hover { background: var(--gray-100); }

.btn-white { background: white; color: var(--navy); box-shadow: var(--shadow-md); }
.btn-white:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

/* ── 8. BADGES ────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: .72rem; font-weight: 700; letter-spacing: .05em;
}
.badge-blue  { background: var(--blue-glass); color: var(--blue-dark); }
.badge-navy  { background: var(--navy-light); color: var(--navy); }
.badge-white { background: white; color: var(--navy); box-shadow: var(--shadow-sm); }
.badge-new   { background: #ecfdf5; color: #059669; }
.badge-promo { background: #fff7ed; color: #ea580c; }

/* ── 9. SECTION HEADER ───────────────────────────────────────────── */
.section-header {
  text-align: center; margin-bottom: clamp(40px,6vw,80px);
  max-width: 660px; margin-left: auto; margin-right: auto;
}
.section-header .overline { display: block; margin-bottom: 14px; }
.section-header h2 { margin-bottom: 18px; }
.section-header p { color: var(--gray-600); font-size: 1.0625rem; line-height: 1.75; }

/* ── 10. HERO ─────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh; padding-top: var(--nav-h);
  display: flex; align-items: center; position: relative; overflow: hidden;
  background: linear-gradient(155deg, #f8fafc 0%, #eaf6fd 38%, #eeedf8 100%);
}
.hero-blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none; will-change: transform;
}
.hero-blob-1 {
  width: clamp(400px,55vw,700px); height: clamp(400px,55vw,700px);
  background: radial-gradient(circle, rgba(69,168,227,.2) 0%, transparent 70%);
  top: -120px; right: -80px;
}
.hero-blob-2 {
  width: clamp(300px,35vw,480px); height: clamp(300px,35vw,480px);
  background: radial-gradient(circle, rgba(38,33,91,.13) 0%, transparent 70%);
  bottom: -60px; left: 5%;
}
.hero-blob-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(69,168,227,.1) 0%, transparent 70%);
  top: 40%; left: 40%;
}
.hero-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px,6vw,100px); align-items: center;
  position: relative; z-index: 2; padding: 72px 0 80px;
}
.hero-overline {
  display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
}
.hero-line { width: 36px; height: 2px; background: var(--blue); flex-shrink: 0; }
.hero-title { margin-bottom: 26px; }
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle { margin-bottom: 40px; max-width: 480px; }
.hero-ctas { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-trust {
  display: flex; align-items: center; gap: 28px;
  margin-top: 52px; padding-top: 36px; border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}
.hero-trust-item { display: flex; flex-direction: column; gap: 2px; }
.hero-trust-num { font-family: var(--font-heading); font-size: 1.625rem; font-weight: 700; color: var(--navy); line-height: 1; }
.hero-trust-lbl { font-size: .75rem; color: var(--gray-500); }
.hero-divider { width: 1px; height: 44px; background: var(--gray-200); flex-shrink: 0; }

/* Hero visual */
.hero-visual {
  position: relative; display: flex;
  align-items: center; justify-content: center;
}
.hero-shape-wrap {
  width: clamp(280px,38vw,420px); height: clamp(280px,38vw,420px);
  position: relative;
}
.hero-shape {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #b8e4f8 0%, #7bc8ef 30%, #45a8e3 60%, #26215b 100%);
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  animation: morphBlob 9s ease-in-out infinite;
  position: relative; overflow: hidden;
  box-shadow: 0 32px 80px rgba(38,33,91,.25), 0 8px 24px rgba(69,168,227,.3);
}
.hero-shape::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(220deg, rgba(255,255,255,.35) 0%, transparent 60%);
}
@keyframes morphBlob {
  0%,100% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
  25%      { border-radius: 55% 45% 40% 60% / 50% 60% 40% 50%; }
  50%      { border-radius: 45% 55% 60% 40% / 60% 40% 60% 40%; }
  75%      { border-radius: 60% 40% 45% 55% / 40% 60% 50% 60%; }
}

/* Floating cards on hero */
.hero-float {
  position: absolute; background: white;
  border-radius: var(--radius-md); padding: 14px 18px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.95);
  animation: floatBob 4s ease-in-out infinite;
  z-index: 3;
}
.hero-float-1 { top: 12%; right: -18px; animation-delay: 0s; }
.hero-float-2 { bottom: 14%; left: -24px; animation-delay: 2s; }
.hero-float-3 { top: 50%; right: -30px; animation-delay: 1s; }
@keyframes floatBob {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}
.hero-float-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-400); margin-bottom: 3px; }
.hero-float-value { font-weight: 700; font-size: .9375rem; color: var(--navy); }
.hero-float-sub   { font-size: .72rem; color: var(--gray-500); margin-top: 2px; }
.hero-float-dot   { width: 8px; height: 8px; background: #10b981; border-radius: 50%; display: inline-block; margin-right: 5px; }

/* ── 11. MARQUEE STRIP ───────────────────────────────────────────── */
.strip {
  background: var(--navy); padding: 18px 0; overflow: hidden;
}
.strip-track {
  display: flex; flex-wrap: nowrap; width: max-content;
  animation: marquee 28s linear infinite;
}
.strip-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.strip-item {
  display: inline-flex; align-items: center; gap: 14px; flex-shrink: 0;
  padding: 0 32px; color: rgba(255,255,255,.8);
  font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  white-space: nowrap;
}
.strip-sep { width: 5px; height: 5px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }

/* ── 12. PRODUCT CARDS ───────────────────────────────────────────── */
.product-card {
  background: white; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100); overflow: hidden;
  transition: transform var(--duration-slow) var(--ease-out),
              box-shadow var(--duration-slow) var(--ease-out),
              border-color var(--duration-slow);
  cursor: pointer; position: relative;
  perspective: 800px;
}
.product-card:hover {
  box-shadow: var(--shadow-xl); transform: translateY(-7px);
  border-color: transparent;
}

.product-img-wrap {
  position: relative; aspect-ratio: 1; overflow: hidden;
}
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--duration-slow) var(--ease-out);
}
.product-card:hover .product-img-placeholder { transform: scale(1.06); }
.product-card:hover .product-img-wrap img    { transform: scale(1.06); }
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

/* Gradient swatches */
.grad-1  { background: linear-gradient(145deg,#e8f5fd,#9fd6f0,#45a8e3); }
.grad-2  { background: linear-gradient(145deg,#f0effe,#bdb8e5,#26215b); }
.grad-3  { background: linear-gradient(145deg,#fdf8e8,#f5e0a0,#d4a030); }
.grad-4  { background: linear-gradient(145deg,#e8fdf5,#9fe8c5,#10b981); }
.grad-5  { background: linear-gradient(145deg,#fde8e8,#f8b4b4,#ef4444); }
.grad-6  { background: linear-gradient(145deg,#fdeee8,#fed7c3,#f97316); }
.grad-7  { background: linear-gradient(145deg,#e8f5fd,#60c0e8,#26215b); }
.grad-8  { background: linear-gradient(145deg,#f0effe,#60c0e8,#10b981); }
.grad-9  { background: linear-gradient(145deg,#fdf8e8,#e8f5fd,#45a8e3); }
.grad-10 { background: linear-gradient(145deg,#e8fdf5,#bdb8e5,#26215b); }
.grad-11 { background: linear-gradient(145deg,#f8f8ff,#d0d8e8,#475569); }
.grad-12 { background: linear-gradient(145deg,#45a8e3,#26215b,#0F172A); }

.product-badges {
  position: absolute; top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px; z-index: 2;
}
.product-wish {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); opacity: 0; z-index: 2;
  transition: opacity var(--duration-base), background var(--duration-fast);
  cursor: pointer;
}
.product-card:hover .product-wish { opacity: 1; }
.product-wish:hover { background: #fef2f2; }
.product-wish svg { width: 16px; height: 16px; stroke: var(--gray-500); stroke-width: 1.5; }

.product-info { padding: 20px; }
.product-cat  { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 7px; }
.product-name { font-family: var(--font-heading); font-size: 1.0625rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; line-height: 1.3; }
.product-desc { font-size: .8125rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 18px; }
.product-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.product-price     { font-weight: 800; font-size: 1.125rem; color: var(--navy); }
.product-price-old { font-size: .875rem; color: var(--gray-400); text-decoration: line-through; margin-left: 7px; font-weight: 400; }

.product-add {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--navy); color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--duration-base), transform var(--duration-fast) var(--ease-elastic), box-shadow var(--duration-base);
}
.product-add:hover { background: var(--blue); transform: scale(1.1); box-shadow: var(--shadow-blue); }
.product-add svg { width: 18px; height: 18px; stroke-width: 2; }

/* ── 13. PACK CARDS ──────────────────────────────────────────────── */
.pack-card {
  background: linear-gradient(140deg, var(--navy) 0%, #1c1846 100%);
  border-radius: var(--radius-xl); padding: clamp(28px,4vw,48px);
  color: white; position: relative; overflow: hidden; cursor: pointer;
  transition: transform var(--duration-slow) var(--ease-out), box-shadow var(--duration-slow);
}
.pack-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }
.pack-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(69,168,227,.18) 0%, transparent 55%);
  pointer-events: none;
}
.pack-card.accent { background: linear-gradient(140deg, var(--blue-dark) 0%, var(--navy) 100%); }
.pack-blob-bg {
  position: absolute; width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(69,168,227,.25) 0%, transparent 70%);
  right: -60px; bottom: -60px; pointer-events: none;
}
.pack-eyebrow { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.pack-title   { font-family: var(--font-heading); font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 700; color: white; margin-bottom: 14px; line-height: 1.2; }
.pack-desc    { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.65; margin-bottom: 22px; }
.pack-tags    { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.pack-tag     {
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-full); padding: 4px 13px;
  font-size: .72rem; color: rgba(255,255,255,.88);
}
.pack-prices  { display: flex; align-items: flex-end; gap: 14px; margin-bottom: 28px; }
.pack-price-new { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: white; line-height: 1; }
.pack-price-old { font-size: .9375rem; color: rgba(255,255,255,.45); text-decoration: line-through; padding-bottom: 4px; }
.pack-save    {
  background: rgba(16,185,129,.18); border: 1px solid rgba(16,185,129,.35);
  color: #6ee7b7; padding: 4px 11px; border-radius: var(--radius-full);
  font-size: .72rem; font-weight: 700; padding-bottom: 6px;
}

/* ── 14. TESTIMONIALS ────────────────────────────────────────────── */
.testi-card {
  background: white; border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 28px;
  transition: transform var(--duration-slow) var(--ease-out),
              box-shadow var(--duration-slow), border-color var(--duration-slow);
}
.testi-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent;
}
.testi-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.testi-stars svg { width: 16px; height: 16px; fill: #f59e0b; stroke: none; }
.testi-text { font-size: .9375rem; line-height: 1.75; color: var(--gray-700); font-style: italic; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: white;
}
.testi-name { font-weight: 700; font-size: .875rem; color: var(--navy); }
.testi-loc  { font-size: .75rem; color: var(--gray-400); margin-top: 1px; }

/* ── 15. NEWSLETTER ──────────────────────────────────────────────── */
.newsletter-wrap {
  background: linear-gradient(140deg, var(--navy) 0%, var(--dark) 100%);
  border-radius: var(--radius-xl);
  padding: clamp(48px,6vw,88px) clamp(28px,5vw,88px);
  position: relative; overflow: hidden;
  margin: 0 clamp(0px,2vw,24px);
}
.newsletter-wrap::before {
  content: ''; position: absolute; pointer-events: none;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(69,168,227,.18) 0%, transparent 70%);
  top: -150px; right: 5%;
}
.newsletter-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; flex-wrap: wrap;
}
.newsletter-text h2 { color: white; font-size: clamp(1.5rem,3vw,2.5rem); margin-bottom: 12px; }
.newsletter-text p  { color: rgba(255,255,255,.6); font-size: 1rem; }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-input {
  padding: 14px 22px; min-width: 0; flex: 1;
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.18);
  border-radius: var(--radius-full); color: white; font-size: .9375rem;
  outline: none; transition: border-color var(--duration-fast), background var(--duration-fast);
}
.newsletter-input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-input:focus { border-color: var(--blue); background: rgba(255,255,255,.15); }

/* ── 16. FOOTER ───────────────────────────────────────────────────── */
.footer {
  background: var(--dark); color: white;
  padding: clamp(60px,8vw,100px) 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo img { height: 34px; filter: brightness(0) invert(1); opacity: .88; margin-bottom: 18px; }
.footer-desc { font-size: .875rem; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; background: rgba(255,255,255,.07); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); transition: background var(--duration-base), color var(--duration-base);
}
.footer-social a:hover { background: var(--blue); color: white; }
.footer-social a svg { width: 16px; height: 16px; }
.footer-col-title { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.88); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.45); transition: color var(--duration-fast); }
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; font-size: .8rem; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 16px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.3); transition: color var(--duration-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.65); }

/* ── 17. PAGE HERO ───────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 56px) 0 60px;
  background: linear-gradient(155deg, #f8fafc 0%, #e8f5fd 60%, #eeedf8 100%);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; pointer-events: none;
  width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, rgba(69,168,227,.13) 0%, transparent 70%);
  right: -120px; top: -120px;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2rem,4.5vw,3.75rem); color: var(--navy); margin-bottom: 16px; }
.page-hero p  { font-size: 1.0625rem; color: var(--gray-600); max-width: 520px; }

/* ── 18. BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .8125rem; color: var(--gray-400); margin-bottom: 32px; }
.breadcrumb a { color: var(--gray-500); transition: color var(--duration-fast); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb svg { width: 14px; height: 14px; }

/* ── 19. FILTER BAR ──────────────────────────────────────────────── */
.filter-bar { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 22px; border-radius: var(--radius-full);
  font-size: .8125rem; font-weight: 600; color: var(--gray-600);
  background: white; border: 1.5px solid var(--gray-200);
  transition: all var(--duration-fast); cursor: pointer;
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue); }
.filter-btn.active { background: var(--navy); color: white; border-color: var(--navy); }

/* ── 20. CART PAGE ───────────────────────────────────────────────── */
.cart-item {
  display: flex; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid var(--gray-100);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img  {
  width: 100px; height: 100px; flex-shrink: 0;
  border-radius: var(--radius-md); overflow: hidden;
}
.cart-item-name { font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.cart-item-cat  { font-size: .8125rem; color: var(--gray-400); margin-bottom: 16px; }
.qty-ctrl       { display: flex; align-items: center; gap: 6px; }
.qty-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.125rem; color: var(--navy);
  transition: background var(--duration-fast), color var(--duration-fast);
}
.qty-btn:hover { background: var(--navy); color: white; }
.qty-val { width: 36px; text-align: center; font-weight: 700; }
.cart-remove { font-size: .8125rem; color: var(--gray-400); cursor: pointer; transition: color var(--duration-fast); }
.cart-remove:hover { color: #ef4444; }
.cart-item-price { font-weight: 800; font-size: 1.125rem; color: var(--navy); white-space: nowrap; }

/* ── 21. ORDER SUMMARY ───────────────────────────────────────────── */
.order-card {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px; position: sticky; top: 96px;
}
.order-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 0; border-bottom: 1px solid var(--gray-100); font-size: .9375rem;
}
.order-row:last-child { border-bottom: none; }
.order-row span:first-child { color: var(--gray-600); }
.order-row span:last-child  { font-weight: 600; color: var(--navy); }
.order-row.total { margin-top: 6px; padding-top: 18px; }
.order-row.total span:first-child { font-weight: 800; font-size: 1rem; color: var(--navy); }
.order-row.total span:last-child  { font-weight: 900; font-size: 1.375rem; color: var(--blue); }

/* ── 22. FORMS ────────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .8125rem; font-weight: 700; color: var(--gray-700); margin-bottom: 7px; }
.form-input {
  width: 100%; padding: 13px 18px;
  background: white; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md); font-size: .9375rem; color: var(--dark);
  outline: none; transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(69,168,227,.12); }
.form-input::placeholder { color: var(--gray-400); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px; cursor: pointer; }

/* ── 23. CHECKOUT STEPS ──────────────────────────────────────────── */
.checkout-steps { display: flex; align-items: center; gap: 0; margin-bottom: 48px; }
.step { display: flex; align-items: center; gap: 12px; }
.step-num {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; font-weight: 800;
  transition: all var(--duration-base);
}
.step.active .step-num { background: var(--blue); color: white; box-shadow: 0 4px 14px rgba(69,168,227,.45); }
.step.done .step-num   { background: #10b981; color: white; }
.step.pending .step-num{ background: var(--gray-100); color: var(--gray-400); }
.step-lbl { font-size: .8125rem; font-weight: 700; }
.step.active .step-lbl  { color: var(--navy); }
.step.done .step-lbl    { color: #10b981; }
.step.pending .step-lbl { color: var(--gray-400); }
.step-connector { flex: 1; height: 1px; background: var(--gray-200); margin: 0 12px; }

/* ── 24. ACCOUNT ──────────────────────────────────────────────────── */
.account-sidebar { background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; }
.account-nav-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px; border-bottom: 1px solid var(--gray-100);
  font-size: .9375rem; color: var(--gray-600); cursor: pointer;
  transition: background var(--duration-fast), color var(--duration-fast);
}
.account-nav-item:last-child { border-bottom: none; }
.account-nav-item:hover, .account-nav-item.active { background: var(--blue-light); color: var(--navy); }
.account-nav-item svg { width: 18px; height: 18px; color: var(--gray-400); flex-shrink: 0; }
.account-nav-item.active svg { color: var(--blue); }

/* Auth tabs */
.auth-tabs { display: flex; border-bottom: 1px solid var(--gray-200); margin-bottom: 28px; }
.auth-tab {
  padding: 13px 24px; font-size: .9375rem; font-weight: 600;
  color: var(--gray-500); border-bottom: 2px solid transparent; margin-bottom: -1px;
  cursor: pointer; transition: color var(--duration-fast), border-color var(--duration-fast);
}
.auth-tab.active { color: var(--navy); border-bottom-color: var(--blue); }

/* ── 25. PRODUCT DETAIL ──────────────────────────────────────────── */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.gallery-main { aspect-ratio: 1; border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 16px; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.gallery-thumb {
  aspect-ratio: 1; border-radius: var(--radius-md); overflow: hidden;
  cursor: pointer; border: 2px solid transparent;
  transition: border-color var(--duration-fast);
}
.gallery-thumb.active { border-color: var(--blue); }
.detail-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.detail-rating svg { width: 16px; height: 16px; fill: #f59e0b; stroke: none; }
.detail-name  { font-size: clamp(1.75rem,3vw,2.5rem); margin-bottom: 16px; }
.detail-price { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 700; color: var(--navy); margin-bottom: 28px; }
.detail-qty   { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.product-tabs { display: flex; border-bottom: 1px solid var(--gray-200); margin-bottom: 24px; }
.product-tab  {
  padding: 12px 22px; font-size: .875rem; font-weight: 600; color: var(--gray-500);
  border-bottom: 2px solid transparent; margin-bottom: -1px; cursor: pointer;
  transition: color var(--duration-fast), border-color var(--duration-fast);
}
.product-tab.active  { color: var(--navy); border-bottom-color: var(--blue); }
.product-tab-panel   { display: none; }
.product-tab-panel.active { display: block; }

/* ── 26. VALUE CARDS (About) ─────────────────────────────────────── */
.value-card {
  background: white; border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 36px 28px; text-align: center;
  transition: transform var(--duration-slow) var(--ease-out), box-shadow var(--duration-slow);
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); }
.value-icon {
  width: 64px; height: 64px; background: var(--blue-glass);
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px;
}
.value-icon svg { width: 28px; height: 28px; color: var(--blue); stroke-width: 1.5; }
.value-title { font-family: var(--font-heading); font-size: 1.25rem; color: var(--navy); margin-bottom: 12px; }
.value-desc  { font-size: .9375rem; color: var(--gray-500); line-height: 1.7; }

/* ── 27. CONTACT ──────────────────────────────────────────────────── */
.contact-info-item { display: flex; gap: 20px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--gray-100); }
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 50px; height: 50px; background: var(--blue-glass);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--blue); stroke-width: 1.5; }
.contact-lbl { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gray-400); margin-bottom: 5px; }
.contact-val { font-size: 1rem; color: var(--navy); font-weight: 600; }

/* ── 28. CUSTOM CURSOR ───────────────────────────────────────────── */
.c-dot {
  position: fixed; width: 8px; height: 8px; background: var(--blue);
  border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
}
.c-ring {
  position: fixed; width: 34px; height: 34px;
  border: 1.5px solid rgba(69,168,227,.55); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
}
.c-dot.hovered { width: 14px; height: 14px; background: var(--navy); }

/* ── 29. TOAST ───────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 28px; left: 50%; z-index: 9990;
  transform: translateX(-50%) translateY(16px);
  background: var(--navy); color: white;
  padding: 14px 26px; border-radius: var(--radius-full);
  font-size: .875rem; font-weight: 600;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg); opacity: 0; white-space: nowrap;
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.toast svg { width: 16px; height: 16px; stroke: #10b981; flex-shrink: 0; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── 30. UTILS ───────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-2  { margin-top: 8px;  }  .mt-4 { margin-top: 16px; }
.mt-6  { margin-top: 24px; }  .mt-8 { margin-top: 32px; }
.mb-2  { margin-bottom: 8px;  } .mb-4 { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; } .mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.w-full  { width: 100%; } .hidden { display: none !important; }
.bg-off  { background: var(--off-white); }
.bg-dark { background: var(--dark); color: white; }

/* ── 31. RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: repeat(2,1fr); gap: 36px; }
  .grid-4 { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .hero-content { gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-visual  { display: none; }
  .hero-trust   { gap: 18px; }
  .grid-2, .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-4       { grid-template-columns: repeat(2,1fr); }
  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-inner    { flex-direction: column; }
  .newsletter-input    { min-width: 0; width: 100%; }
  .form-grid-2  { grid-template-columns: 1fr; }
  .checkout-steps { display: none; }
  .footer-grid  { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .c-dot, .c-ring { display: none; }
}
@media (max-width: 520px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4  { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas   { flex-direction: column; align-items: flex-start; }
}

/* ── 32. REDUCED MOTION ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .strip-track { animation: none; }
}

/* ================================================================
   ADDONS — Responsive 250px · Dual Blobs · Glass Placeholder · Footer
   ================================================================ */

/* ── 33. DUAL HERO BLOBS ─────────────────────────────────────────── */
.hero-shape-wrap {
  position: relative;
  width: clamp(260px, 38vw, 420px);
  height: clamp(260px, 38vw, 420px);
}
.hero-shape {
  position: absolute;
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  box-shadow: 0 32px 80px rgba(15,23,42,.2);
}
.hero-shape-blue {
  width: 100%; height: 100%;
  top: 0; left: 0;
  background: linear-gradient(135deg, #c8eaf8 0%, #7bc8ef 35%, #45a8e3 100%);
  animation: morphBlobBlue 9s ease-in-out infinite;
  box-shadow: 0 32px 80px rgba(69,168,227,.35), 0 0 60px rgba(69,168,227,.2);
  z-index: 1;
}
.hero-shape-navy {
  width: 78%; height: 78%;
  bottom: -14px; right: -14px;
  background: linear-gradient(135deg, #4e47a0 0%, #26215b 55%, #1a1740 100%);
  animation: morphBlobNavy 7s ease-in-out infinite;
  animation-delay: -2.5s;
  box-shadow: 0 24px 60px rgba(38,33,91,.45);
  z-index: 2;
}
/* Glass overlay on top of navy blob */
.hero-shape-navy::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(220deg, rgba(255,255,255,.18) 0%, transparent 55%);
  border-radius: inherit;
}
.hero-shape-blue::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(220deg, rgba(255,255,255,.25) 0%, transparent 55%);
  border-radius: inherit;
}

@keyframes morphBlobBlue {
  0%,100% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
  25%      { border-radius: 55% 45% 40% 60% / 50% 60% 40% 50%; }
  50%      { border-radius: 45% 55% 60% 40% / 60% 40% 60% 40%; }
  75%      { border-radius: 60% 40% 45% 55% / 40% 60% 50% 60%; }
}
@keyframes morphBlobNavy {
  0%,100% { border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%; }
  25%      { border-radius: 45% 55% 60% 40% / 50% 40% 60% 50%; }
  50%      { border-radius: 55% 45% 40% 60% / 40% 60% 40% 60%; }
  75%      { border-radius: 40% 60% 55% 45% / 60% 40% 60% 40%; }
}

/* ── 34. IMAGE PLACEHOLDER GLASS OVERLAY ────────────────────────── */
/* The gradient IS the "bubble" — visible through a frosted overlay  */
.product-img-placeholder {
  position: relative;
  overflow: hidden;
}
.product-img-placeholder::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.17);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.55)' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='7' width='20' height='14' rx='2' ry='2'/%3E%3Ccircle cx='12' cy='14' r='3'/%3E%3Cpath d='M16 7l-1.5-3h-5L8 7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 48px 48px;
  transition: background-color var(--duration-slow);
}
.product-card:hover .product-img-placeholder::after {
  background-color: rgba(255, 255, 255, 0.22);
}
/* Don't overlay real images */
.product-img-placeholder img ~ *,
.product-img-placeholder:has(img)::after { display: none; }

/* ── 35. REDESIGNED FOOTER ───────────────────────────────────────── */
.footer {
  background: linear-gradient(170deg, #0d1020 0%, #0F172A 45%, #181530 100%);
  color: white;
  padding: 0;
  position: relative;
  overflow: hidden;
}
/* Gradient top border */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%, #45a8e3 25%, #26215b 50%, #45a8e3 75%, transparent 100%);
  z-index: 3;
}
.footer-glow {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
}
.footer-glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(69,168,227,.09) 0%, transparent 70%);
  top: -100px; left: -120px;
}
.footer-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(38,33,91,.2) 0%, transparent 70%);
  bottom: -60px; right: 5%;
}
.footer-glow-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(69,168,227,.06) 0%, transparent 70%);
  top: 40%; right: 30%;
}
.footer-inner { position: relative; z-index: 1; }

/* Brand strip */
.footer-brand {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  padding: clamp(48px,7vw,80px) 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand-logo {
  height: 38px; filter: brightness(0) invert(1); opacity: .9; margin-bottom: 14px;
}
.footer-tagline {
  font-family: var(--font-heading); font-style: italic;
  font-size: clamp(1rem,1.8vw,1.375rem); color: rgba(255,255,255,.4);
}
.footer-contact-block { display: flex; flex-direction: column; align-items: flex-end; gap: 16px; }
.footer-phone-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: clamp(1.125rem,2vw,1.5rem); font-weight: 800; color: var(--blue);
  transition: color var(--duration-fast);
}
.footer-phone-link:hover { color: #7cc5ee; }
.footer-phone-link svg { width: 22px; height: 22px; stroke-width: 1.5; }
.footer-social {
  display: flex; gap: 10px;
}
.footer-social a {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  border: 1.5px solid rgba(255,255,255,.12);
  transition: all var(--duration-base) var(--ease-out);
}
.footer-social a:hover {
  background: var(--blue); color: white; border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(69,168,227,.35);
}
.footer-social a svg { width: 18px; height: 18px; }

/* Links grid */
.footer-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px; padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-col-title {
  font-size: .72rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: .9375rem; color: rgba(255,255,255,.55);
  display: flex; align-items: center; gap: 0;
  transition: color var(--duration-base), gap var(--duration-base);
}
.footer-col a::before {
  content: '';
  width: 0; height: 1.5px; background: var(--blue);
  transition: width var(--duration-base);
  flex-shrink: 0; margin-right: 0;
}
.footer-col a:hover {
  color: white; gap: 8px;
}
.footer-col a:hover::before { width: 16px; }

/* Bottom bar */
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; gap: 14px; flex-wrap: wrap;
  font-size: .8rem; color: rgba(255,255,255,.25);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.25); transition: color var(--duration-fast); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.65); }

/* ── 36. ULTRA-SMALL RESPONSIVE (≤ 350px) ───────────────────────── */
@media (max-width: 350px) {
  :root { --container-px: 12px; --section-py: 44px; }
  .display-xl { font-size: clamp(1.75rem, 10vw, 2.5rem); }
  .display-lg { font-size: clamp(1.5rem, 8vw, 2rem); }
  .display-md { font-size: clamp(1.375rem, 7vw, 1.75rem); }
  .display-sm { font-size: 1.25rem; }
  .hero-content { padding: 48px 0 56px; }
  .hero-trust { gap: 12px; }
  .hero-divider { display: none; }
  .hero-trust-num { font-size: 1.25rem; }
  .hero-ctas .btn-lg { padding: 13px 20px; font-size: .875rem; width: 100%; justify-content: center; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 16px; }
  .pack-prices { flex-direction: column; gap: 6px; align-items: flex-start; }
  .pack-card { padding: 24px 18px; }
  .pack-price-new { font-size: 1.75rem; }
  .btn { padding: 12px 18px; font-size: .875rem; }
  .btn-lg { padding: 14px 22px; }
  .nav-inner { padding: 8px 10px 8px 14px; }
  .nav-logo img { height: 56px; }
  .nav-icon { width: 36px; height: 36px; }
  .nav-icon svg { width: 18px; height: 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand { flex-direction: column; align-items: flex-start; }
  .footer-contact-block { align-items: flex-start; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 28px; }
  .newsletter-input { min-width: 0; width: 100%; }
  .newsletter-form { flex-direction: column; }
  .checkout-steps { display: none; }
  .cart-item { gap: 12px; }
  .cart-item-img { width: 72px; height: 72px; }
  .product-detail-grid { gap: 24px; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 24px; }
  .testi-card { padding: 20px 16px; }
  .value-card { padding: 24px 18px; }
  .order-card { padding: 18px; }
}

/* ── 37. MICRO-SMALL (≤ 280px) ──────────────────────────────────── */
@media (max-width: 280px) {
  :root { --container-px: 8px; }
  .display-xl { font-size: 1.625rem; }
  .btn { padding: 10px 14px; font-size: .8125rem; }
  .nav-logo img { height: 48px; }
  .nav-inner { padding: 8px; }
  .product-price { font-size: 1rem; }
  .gallery-thumbs { grid-template-columns: repeat(3, 1fr); }
  .footer-phone-link { font-size: 1.125rem; }
  .pack-title { font-size: 1.25rem; }
  .hero-float { display: none; }
  .mobile-nav-link { font-size: 1.5rem; }
}

/* ── 38. BOUTIQUE PACKS BANNER ───────────────────────────────────── */
.packs-promo-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a1740 100%);
  border-radius: var(--radius-xl);
  padding: clamp(28px,4vw,48px);
  position: relative; overflow: hidden;
  margin-bottom: 48px;
}
.packs-promo-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(69,168,227,.15) 0%, transparent 50%);
  pointer-events: none;
}
.packs-banner-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(69,168,227,.2) 0%, transparent 70%);
  width: 300px; height: 300px;
  right: -60px; top: -60px;
}
.packs-banner-header {
  position: relative; z-index: 2;
  text-align: center; margin-bottom: 32px;
}
.packs-banner-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-full); padding: 6px 18px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.85);
  margin-bottom: 16px;
}
.packs-banner-eyebrow span { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; }
.packs-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem); color: white; font-weight: 700;
}

/* ── 39. ORDER TRACKING WIDGET ───────────────────────────────────── */
.tracking-widget {
  background: white; border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: clamp(24px,4vw,40px);
  box-shadow: var(--shadow-sm);
}
.tracking-result {
  display: none; margin-top: 24px;
  border-top: 1px solid var(--gray-100); padding-top: 24px;
}
.tracking-result.show { display: block; }
.tracking-steps { display: flex; flex-direction: column; gap: 0; margin-top: 20px; }
.tracking-step {
  display: flex; gap: 18px; align-items: flex-start;
  position: relative; padding-bottom: 28px;
}
.tracking-step:last-child { padding-bottom: 0; }
.tracking-step-icon {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.tracking-step-icon.done  { background: var(--blue); }
.tracking-step-icon.active{ background: var(--navy); }
.tracking-step-icon.pending{ background: var(--gray-100); }
.tracking-step-icon svg { width: 18px; height: 18px; }
.tracking-step-icon.done svg, .tracking-step-icon.active svg { stroke: white; }
.tracking-step-icon.pending svg { stroke: var(--gray-400); }
.tracking-step::before {
  content: '';
  position: absolute; left: 19px; top: 40px;
  width: 2px; height: calc(100% - 40px);
  background: var(--gray-200); z-index: 0;
}
.tracking-step:last-child::before { display: none; }
.tracking-step-label { font-weight: 700; font-size: .9375rem; color: var(--navy); margin-bottom: 3px; }
.tracking-step-date  { font-size: .8125rem; color: var(--gray-400); }

/* ── 40. RESPONSIVE FOOTER OVERRIDES ────────────────────────────── */
@media (max-width: 768px) {
  .footer-brand { flex-direction: column; align-items: flex-start; }
  .footer-contact-block { align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 350px) {
  .footer-brand-logo { height: 30px; }
  .footer-tagline { font-size: .9375rem; }
}

/* ── 41. PACKS NOTICE STRIP (compact) ───────────────────────────── */
.packs-notice {
  background: linear-gradient(135deg, var(--navy) 0%, #1a1740 100%);
  border-radius: var(--radius-xl);
  padding: clamp(16px,3vw,28px) clamp(16px,3vw,32px);
  position: relative; overflow: hidden;
  margin: clamp(24px,4vw,48px) var(--container-px) 40px;
}
.ppb-notice-row {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: clamp(16px,3vw,32px);
  flex-wrap: wrap;
}
.ppb-notice-left { display: flex; flex-direction: column; gap: 5px; flex-shrink: 0; }
.ppb-notice-text { font-size: .875rem; color: rgba(255,255,255,.55); margin: 0; }
.ppb-notice-packs {
  display: flex; align-items: center; gap: 20px; flex: 1;
  flex-wrap: wrap; min-width: 0;
}
.ppb-notice-sep {
  width: 1px; height: 40px; background: rgba(255,255,255,.15); flex-shrink: 0;
}
.ppb-mini-pack { display: flex; flex-direction: column; gap: 2px; }
.ppb-mini-season {
  font-size: .7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}
.ppb-mini-price {
  font-family: var(--font-heading); font-size: 1.0625rem;
  font-weight: 700; color: white;
}
.ppb-mini-old {
  font-size: .75rem; color: rgba(255,255,255,.3);
  text-decoration: line-through; font-family: var(--font-body); font-weight: 400;
}
.ppb-mini-save {
  font-size: .7rem; font-weight: 800; color: #4ade80; letter-spacing: .04em;
}
/* responsive géré entièrement en section 44c */

/* ── 42. RESPONSIVE OVERFLOW GLOBAL FIXES ────────────────────────── */
html { overflow-x: hidden; }

/* Stats band — collapse to 2 cols at tablet */
@media (max-width: 768px) {
  .stats-band { grid-template-columns: repeat(2,1fr) !important; gap: 28px !important; }
}

/* Navbar — remove double padding at small sizes */
@media (max-width: 480px) {
  .navbar { padding: 10px 12px; }
  .nav-inner { padding: 8px 10px 8px 16px; }
}

/* Buttons — control size at mid-small viewport */
@media (max-width: 520px) {
  .btn-lg { padding: 14px 26px; font-size: .9375rem; }
  .hero-ctas { gap: 10px; }
  .pack-price-new { font-size: 2rem; }
}

/* Footer phone — don't overflow */
@media (max-width: 400px) {
  .footer-phone-link { font-size: 1.125rem; }
  .footer-contact-block { width: 100%; }
}

/* Newsletter form — always stacks, never overflows */
@media (max-width: 600px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-input { width: 100%; }
}

/* Grids — collapse at narrower breakpoints */
@media (max-width: 480px) {
  .grid-2 { grid-template-columns: 1fr; }
}

/* Ensure nothing breaks container */
* { min-width: 0; }
img, svg { max-width: 100%; }

/* ── OLD: PPB helpers (kept for compat) ────────────────────────── */
.ppb-blob {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(69,168,227,.22) 0%, transparent 70%);
  width: 360px; height: 360px;
  right: -80px; top: -80px;
}
.ppb-eyebrow {
  position: relative; z-index: 2;
  text-align: center; margin-bottom: 16px;
}
.ppb-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-full); padding: 7px 20px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.9);
}
.ppb-title {
  position: relative; z-index: 2;
  font-family: var(--font-heading);
  font-size: clamp(1.625rem, 3vw, 2.5rem); font-weight: 700;
  color: white; text-align: center; margin-bottom: 10px;
}
.ppb-sub {
  position: relative; z-index: 2;
  font-size: clamp(.875rem, 1.5vw, 1rem); color: rgba(255,255,255,.6);
  text-align: center; max-width: 520px; margin: 0 auto;
}

/* ── 42. TRACKING WIDGET — full style ───────────────────────────── */
.tracking-form { margin-bottom: 0; }
.tracking-label {
  display: block; font-weight: 700; font-size: .875rem;
  color: var(--navy); margin-bottom: 10px;
}
.tracking-input-row {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.tracking-input {
  flex: 1; min-width: 0;
  padding: 13px 18px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md); font-size: .9375rem;
  color: var(--dark); outline: none;
  transition: border-color var(--duration-fast);
  font-family: var(--font-body);
}
.tracking-input:focus { border-color: var(--blue); }
.tracking-btn { flex-shrink: 0; }
.tracking-hint {
  font-size: .8rem; color: var(--gray-400); margin-top: 10px;
}
.tracking-order-ref {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.tracking-ref-label {
  font-size: .72rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gray-400);
}
.tracking-ref-val {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 1.125rem; color: var(--navy);
}
/* Step element override for new HTML structure */
.tracking-step-dot {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 1; border: 2px solid var(--gray-200);
  background: white;
}
.tracking-step.done .tracking-step-dot {
  background: var(--blue); border-color: var(--blue);
}
.tracking-step.done .tracking-step-dot svg { stroke: white; }
.tracking-step.active .tracking-step-dot {
  background: var(--navy); border-color: var(--navy);
}
.tracking-step.active .tracking-step-dot svg { stroke: white; }
.tracking-step.pending .tracking-step-dot {
  background: var(--gray-100); border-color: var(--gray-200);
}
.tracking-step-line {
  position: absolute; left: 18px; top: 40px;
  width: 2px; height: calc(100% - 40px);
  background: var(--gray-200); z-index: 0;
}
.tracking-step.done .tracking-step-line { background: var(--blue); }
.tracking-step-info { padding-top: 6px; }
.tracking-step-title {
  font-weight: 700; font-size: .9375rem; color: var(--navy); margin-bottom: 3px;
}
.tracking-step.pending .tracking-step-title { color: var(--gray-400); }
.tracking-step-desc {
  font-size: .8125rem; color: var(--gray-500); line-height: 1.5;
}
.tracking-not-found {
  text-align: center; padding: clamp(20px,4vw,40px);
  border-top: 1px solid var(--gray-100); margin-top: 24px;
  display: flex; flex-direction: column; align-items: center;
}
@media (max-width: 480px) {
  .tracking-input-row { flex-direction: column; }
  .tracking-btn { width: 100%; justify-content: center; }
}

/* ── 43. STAT ICON (engagements band SVG icons) ─────────────────── */
.stat-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blue-glass);
  border: 1.5px solid rgba(69,168,227,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-bottom: 12px;
  color: var(--blue);
  transition: background var(--duration-base), transform var(--duration-base);
}
.stat-icon svg {
  width: 22px; height: 22px;
  stroke: var(--blue);
  display: block;
}
.stat-item:hover .stat-icon {
  background: rgba(69,168,227,.18);
  transform: scale(1.08);
}
/* stat-item layout adjustment with icon */
.stat-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}

/* ── 44. MISC FIXES ──────────────────────────────────────────────── */

/* 44a. Qty button — guaranteed perfect circle */
.qty-btn {
  flex-shrink: 0 !important;
  min-width: 34px !important;
  min-height: 34px !important;
  aspect-ratio: 1 !important;
  border-radius: 50% !important;
  padding: 0 !important;
}

/* 44b. Product card homepage — 1 column at ≤480px for readability */
@media (max-width: 480px) {
  #bestsellers-grid { grid-template-columns: 1fr !important; }
}

/* 44c. Packs notice strip — responsive complet (tous niveaux) ────────
   Structure HTML :
     .ppb-notice-row
       .ppb-notice-left   (badge + sous-titre)
       .ppb-notice-packs  (Pack Été | sep | Pack Hiver)
       .btn               (CTA "Voir les packs")
────────────────────────────────────────────────────────────────────── */

/* ≥ 1024px — rangée unique, confort max (défaut base CSS) */

/* 900px – 1023px : rangée unique plus serrée, séparateur masqué */
@media (max-width: 1023px) {
  .ppb-notice-row   { gap: 18px; }
  .ppb-notice-packs { gap: 16px; }
  .ppb-notice-sep   { display: none; }
}

/* 899px – 768px : 2 lignes
   Ligne 1 → badge+texte (flex:1) + bouton
   Ligne 2 → les deux packs (pleine largeur) */
@media (max-width: 899px) {
  .ppb-notice-row   { gap: 12px 18px; align-items: flex-start; }
  .ppb-notice-left  { flex: 1 1 auto; order: 1; }
  .ppb-notice-row > .btn { order: 2; align-self: center; flex-shrink: 0; }
  .ppb-notice-packs { order: 3; flex: 0 0 100%; gap: 20px; margin-top: 4px; }
  .ppb-notice-sep   { display: none; }
}

/* 767px : même 2-lignes, typographie légèrement compressée */
@media (max-width: 767px) {
  .ppb-notice-row   { gap: 10px 14px; }
  .ppb-mini-price   { font-size: .9375rem; }
  .packs-notice     { border-radius: var(--radius-lg); }
}

/* 639px – 480px : le label passe pleine largeur ligne 1,
   les packs restent côte-à-côte sur ligne 2, bouton pleine largeur ligne 3 */
@media (max-width: 639px) {
  .ppb-notice-row   { gap: 10px; }
  .ppb-notice-left  { flex: 0 0 100%; order: 1; }
  .ppb-notice-packs { order: 2; flex: 0 0 100%; gap: 16px; margin-top: 0; }
  .ppb-notice-row > .btn {
    order: 3;
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* 479px – 380px : padding réduit, packs toujours côte-à-côte */
@media (max-width: 479px) {
  .packs-notice       { padding: 16px 14px; }
  .ppb-notice-packs   { gap: 12px; }
  .ppb-mini-price     { font-size: .875rem; }
  .ppb-mini-season    { font-size: .65rem; }
  .ppb-notice-text    { font-size: .8125rem; }
}

/* < 380px : les deux packs s'empilent verticalement */
@media (max-width: 379px) {
  .packs-notice       { padding: 14px 12px; border-radius: var(--radius-md); }
  .ppb-notice-packs   { flex-direction: column; gap: 8px; }
  .ppb-mini-price     { font-size: .8125rem; }
  .ppb-mini-pack      { flex-direction: row; align-items: center; gap: 10px; }
  .ppb-mini-pack > .ppb-mini-save { margin-left: auto; }
}

/* 44d. Values grid */
.values-section-wrapper { background: var(--off-white); }
.values-header-area {
  background: var(--off-white);
  padding-top: clamp(40px,5vw,64px) !important;
  padding-bottom: 0 !important;
}
.values-header-area .section-header { margin-bottom: clamp(16px,2vw,24px); }

.values-grid-area {
  background: var(--off-white);
  padding: clamp(24px,3vw,40px) 0 clamp(48px,6vw,80px);
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (min-width: 1100px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
}

.value-card {
  background: white;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: clamp(24px,3vw,32px);
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow var(--duration-slow), transform var(--duration-slow);
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.value-card-icon {
  width: 52px; height: 52px;
  background: var(--blue-glass);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-card-icon svg { width: 24px; height: 24px; color: var(--blue); }
.value-card h3 { font-weight: 700; color: var(--navy); font-size: 1rem; margin: 0; }
.value-card p  { font-size: .9375rem; color: var(--gray-600); line-height: 1.7; margin: 0; }

/* 44e. FAQ accordion */
.faq-box {
  background: var(--off-white); border-radius: var(--radius-lg); padding: 28px;
}
.faq-title { font-weight: 700; color: var(--navy); margin-bottom: 16px; font-size: .9375rem; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; padding: 14px 0; font-size: .875rem; color: var(--navy);
  font-weight: 600; text-align: left; cursor: pointer;
  background: none; border: none; font-family: var(--font-body);
}
.faq-chevron { width: 16px; height: 16px; flex-shrink: 0; transition: transform .25s var(--ease-out); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .35s var(--ease-out); }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { font-size: .8125rem; color: var(--gray-600); line-height: 1.75; padding-bottom: 16px; margin: 0; }

/* 44f. Checkout navbar — logo left, retour right */
.navbar-checkout .nav-inner {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}
.checkout-nav-back {
  font-size: .875rem; color: var(--blue); font-weight: 600;
  display: flex; align-items: center; gap: 6px; white-space: nowrap;
  text-decoration: none;
}
.checkout-nav-back:hover { color: var(--blue-dark); }

/* 44g. Confirm button — prevent text overflow on mobile */
@media (max-width: 520px) {
  [data-step-next].btn-primary { font-size: clamp(.75rem, 3.5vw, .9rem); padding: 13px 14px; }
  [data-step-prev] { flex: 0 0 auto !important; padding: 13px 16px; }
}
