/*
Theme Name: Vélina-DV
Theme URI: https://velina-dv.fr
Author: Vélina-DV
Author URI: https://velina-dv.fr
Description: Thème WordPress custom pour Vélina-DV — boutique de véhicules pour enfants. Design fun et coloré, optimisé pour WooCommerce.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: velina-dv
Tags: e-commerce, woocommerce, custom, kids, fun
*/

/* ============================================================
   1. DESIGN TOKENS — palette, typo, espacements, ombres, rayons
   ============================================================ */
:root {
  /* Couleurs primaires (fun/kids) */
  --vd-blue: #3D5AFE;          /* primary — boutons, liens */
  --vd-blue-dark: #2540D8;
  --vd-blue-light: #E8ECFF;

  --vd-yellow: #FFD600;         /* accent soleil */
  --vd-yellow-dark: #F7C600;

  --vd-red: #FF1744;            /* hot CTA, sale, error */
  --vd-red-dark: #D50032;

  --vd-green: #00C853;          /* success, in stock */
  --vd-pink: #FF4081;           /* accent fun */

  /* Neutres */
  --vd-dark: #1A1A2E;
  --vd-text: #2D3142;
  --vd-muted: #6B7280;
  --vd-border: #E5E7FF;
  --vd-light: #FFFCF5;
  --vd-bg: #FFFFFF;

  /* Typographie */
  --vd-font-heading: 'Fredoka', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --vd-font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --vd-fs-xs: 0.75rem;
  --vd-fs-sm: 0.875rem;
  --vd-fs-base: 1rem;
  --vd-fs-lg: 1.125rem;
  --vd-fs-xl: 1.25rem;
  --vd-fs-2xl: 1.5rem;
  --vd-fs-3xl: 2rem;
  --vd-fs-4xl: 2.75rem;
  --vd-fs-5xl: 3.5rem;
  --vd-fs-6xl: 4.5rem;

  --vd-lh-tight: 1.1;
  --vd-lh-snug: 1.3;
  --vd-lh-base: 1.55;

  /* Espacements */
  --vd-space-1: 0.25rem;
  --vd-space-2: 0.5rem;
  --vd-space-3: 0.75rem;
  --vd-space-4: 1rem;
  --vd-space-5: 1.5rem;
  --vd-space-6: 2rem;
  --vd-space-7: 3rem;
  --vd-space-8: 4rem;
  --vd-space-9: 6rem;
  --vd-space-10: 8rem;

  /* Rayons (rounded = kids friendly) */
  --vd-radius-sm: 8px;
  --vd-radius-md: 16px;
  --vd-radius-lg: 24px;
  --vd-radius-xl: 32px;
  --vd-radius-pill: 999px;

  /* Ombres soft */
  --vd-shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.06);
  --vd-shadow-md: 0 8px 24px rgba(26, 26, 46, 0.08);
  --vd-shadow-lg: 0 16px 48px rgba(26, 26, 46, 0.12);
  --vd-shadow-pop: 0 12px 24px -4px rgba(61, 90, 254, 0.35);
  --vd-shadow-yellow: 0 12px 24px -4px rgba(255, 214, 0, 0.45);

  /* Container */
  --vd-container: 1240px;
  --vd-container-narrow: 920px;

  /* Animations */
  --vd-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --vd-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --vd-dur: 0.25s;
}

/* ============================================================
   2. RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--vd-font-body);
  font-size: var(--vd-fs-base);
  line-height: var(--vd-lh-base);
  color: var(--vd-text);
  background: var(--vd-bg);
  -webkit-font-smoothing: antialiased;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

a {
  color: var(--vd-blue);
  text-decoration: none;
  transition: color var(--vd-dur) var(--vd-ease);
}
a:hover { color: var(--vd-blue-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--vd-font-heading);
  font-weight: 600;
  line-height: var(--vd-lh-tight);
  color: var(--vd-dark);
  margin: 0 0 var(--vd-space-4);
}

h1 { font-size: clamp(var(--vd-fs-4xl), 5vw, var(--vd-fs-6xl)); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(var(--vd-fs-3xl), 3.5vw, var(--vd-fs-5xl)); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: var(--vd-fs-2xl); }
h4 { font-size: var(--vd-fs-xl); }

p { margin: 0 0 var(--vd-space-4); }
p:last-child { margin-bottom: 0; }

button { font-family: inherit; cursor: pointer; }

::selection { background: var(--vd-yellow); color: var(--vd-dark); }

/* ============================================================
   3. LAYOUT
   ============================================================ */
.vd-container {
  width: 100%;
  max-width: var(--vd-container);
  margin: 0 auto;
  padding: 0 var(--vd-space-5);
}
.vd-container--narrow { max-width: var(--vd-container-narrow); }

.vd-section {
  padding: var(--vd-space-9) 0;
}
@media (max-width: 768px) {
  .vd-section { padding: var(--vd-space-7) 0; }
}

.vd-grid { display: grid; gap: var(--vd-space-6); }
.vd-grid--2 { grid-template-columns: repeat(2, 1fr); }
.vd-grid--3 { grid-template-columns: repeat(3, 1fr); }
.vd-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
  .vd-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .vd-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .vd-grid--4, .vd-grid--3, .vd-grid--2 { grid-template-columns: 1fr; }
}

.vd-flex { display: flex; }
.vd-flex--center { align-items: center; justify-content: center; }
.vd-flex--between { justify-content: space-between; align-items: center; }
.vd-flex--gap { gap: var(--vd-space-4); }

/* ============================================================
   4. COMPOSANTS — Bouton
   ============================================================ */
.vd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--vd-space-2);
  padding: 0.875rem 1.75rem;
  font-family: var(--vd-font-heading);
  font-weight: 600;
  font-size: var(--vd-fs-base);
  border: 2px solid transparent;
  border-radius: var(--vd-radius-pill);
  cursor: pointer;
  transition: transform var(--vd-dur) var(--vd-bounce),
              box-shadow var(--vd-dur) var(--vd-ease),
              background var(--vd-dur) var(--vd-ease);
  text-decoration: none;
  white-space: nowrap;
}
.vd-btn:active { transform: translateY(1px); }

.vd-btn--primary {
  background: var(--vd-blue);
  color: #fff;
  box-shadow: var(--vd-shadow-pop);
}
.vd-btn--primary:hover {
  background: var(--vd-blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -4px rgba(61, 90, 254, 0.5);
}

.vd-btn--accent {
  background: var(--vd-yellow);
  color: var(--vd-dark);
  box-shadow: var(--vd-shadow-yellow);
}
.vd-btn--accent:hover {
  background: var(--vd-yellow-dark);
  color: var(--vd-dark);
  transform: translateY(-2px);
}

.vd-btn--hot {
  background: var(--vd-red);
  color: #fff;
}
.vd-btn--hot:hover { background: var(--vd-red-dark); color: #fff; transform: translateY(-2px); }

.vd-btn--ghost {
  background: transparent;
  color: var(--vd-dark);
  border-color: var(--vd-border);
}
.vd-btn--ghost:hover {
  border-color: var(--vd-blue);
  color: var(--vd-blue);
}

.vd-btn--lg { padding: 1.1rem 2.25rem; font-size: var(--vd-fs-lg); }
.vd-btn--sm { padding: 0.625rem 1.25rem; font-size: var(--vd-fs-sm); }

/* ============================================================
   5. COMPOSANTS — Badge / Pill
   ============================================================ */
.vd-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--vd-space-1);
  padding: 0.375rem 0.875rem;
  background: var(--vd-blue-light);
  color: var(--vd-blue-dark);
  font-family: var(--vd-font-heading);
  font-weight: 600;
  font-size: var(--vd-fs-xs);
  border-radius: var(--vd-radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.vd-badge--yellow { background: var(--vd-yellow); color: var(--vd-dark); }
.vd-badge--red    { background: var(--vd-red); color: #fff; }
.vd-badge--green  { background: var(--vd-green); color: #fff; }
.vd-badge--pink   { background: var(--vd-pink); color: #fff; }
.vd-badge--dark   { background: var(--vd-dark); color: #fff; }

/* ============================================================
   6. COMPOSANTS — Carte produit
   ============================================================ */
.vd-card {
  background: #fff;
  border-radius: var(--vd-radius-lg);
  overflow: hidden;
  box-shadow: var(--vd-shadow-sm);
  transition: transform var(--vd-dur) var(--vd-ease),
              box-shadow var(--vd-dur) var(--vd-ease);
  display: flex;
  flex-direction: column;
}
.vd-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--vd-shadow-lg);
}

.vd-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--vd-light);
  overflow: hidden;
}
.vd-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--vd-ease);
}
.vd-card:hover .vd-card__media img { transform: scale(1.05); }

.vd-card__badge {
  position: absolute;
  top: var(--vd-space-3);
  left: var(--vd-space-3);
}

.vd-card__body {
  padding: var(--vd-space-5);
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-2);
  flex: 1;
}

.vd-card__cat {
  font-family: var(--vd-font-heading);
  font-size: var(--vd-fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vd-blue);
  font-weight: 600;
}

.vd-card__title {
  font-family: var(--vd-font-heading);
  font-size: var(--vd-fs-lg);
  font-weight: 600;
  color: var(--vd-dark);
  margin: 0;
  line-height: var(--vd-lh-snug);
}

.vd-card__price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: var(--vd-space-2);
  font-family: var(--vd-font-heading);
}
.vd-card__price-now {
  font-size: var(--vd-fs-xl);
  font-weight: 700;
  color: var(--vd-dark);
}
.vd-card__price-old {
  font-size: var(--vd-fs-sm);
  color: var(--vd-muted);
  text-decoration: line-through;
}

.vd-card__cta {
  margin-top: var(--vd-space-3);
}

/* ============================================================
   7. HEADER
   ============================================================ */
.vd-topbar {
  background: var(--vd-dark);
  color: #fff;
  font-size: var(--vd-fs-sm);
  text-align: center;
  padding: var(--vd-space-2) var(--vd-space-4);
}
.vd-topbar strong { color: var(--vd-yellow); }

.vd-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--vd-border);
}

.vd-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vd-space-5);
  height: 80px;
}

.vd-logo {
  font-family: var(--vd-font-heading);
  font-weight: 700;
  font-size: var(--vd-fs-2xl);
  color: var(--vd-dark);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: var(--vd-space-2);
}
.vd-logo__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--vd-red);
  display: inline-block;
}
.vd-logo:hover { color: var(--vd-blue); }
.vd-logo img { max-height: 48px; width: auto; }

.vd-nav {
  display: flex;
  align-items: center;
  gap: var(--vd-space-5);
}
.vd-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--vd-space-5);
}
.vd-nav__link {
  font-family: var(--vd-font-heading);
  font-weight: 500;
  color: var(--vd-dark);
  font-size: var(--vd-fs-base);
  position: relative;
}
.vd-nav__link:hover { color: var(--vd-blue); }
.vd-nav__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 3px;
  background: var(--vd-yellow);
  border-radius: var(--vd-radius-pill);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--vd-dur) var(--vd-ease);
}
.vd-nav__link:hover::after,
.vd-nav__item.current-menu-item .vd-nav__link::after { transform: scaleX(1); }

.vd-header__actions {
  display: flex;
  align-items: center;
  gap: var(--vd-space-3);
}

.vd-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vd-light);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vd-dark);
  position: relative;
  transition: background var(--vd-dur) var(--vd-ease),
              transform var(--vd-dur) var(--vd-bounce);
  cursor: pointer;
}
.vd-icon-btn:hover { background: var(--vd-blue-light); transform: scale(1.08); }

.vd-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--vd-red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.vd-burger { display: none; }

@media (max-width: 1024px) {
  .vd-nav { display: none; }
  .vd-burger { display: flex; }
}

/* Menu mobile drawer */
.vd-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--vd-dark);
  color: #fff;
  display: none;
  padding: var(--vd-space-7) var(--vd-space-5);
}
.vd-mobile-nav.is-open { display: flex; flex-direction: column; }
.vd-mobile-nav .vd-nav__list { flex-direction: column; gap: var(--vd-space-4); }
.vd-mobile-nav .vd-nav__link { color: #fff; font-size: var(--vd-fs-2xl); }
.vd-mobile-nav__close {
  position: absolute;
  top: var(--vd-space-4);
  right: var(--vd-space-5);
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* ============================================================
   8. FRONT-PAGE — Hero
   ============================================================ */
.vd-hero {
  position: relative;
  background: linear-gradient(135deg, var(--vd-blue-light) 0%, #FFF1F4 100%);
  padding: var(--vd-space-9) 0;
  overflow: hidden;
}
.vd-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--vd-yellow);
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(60px);
  pointer-events: none;
}
.vd-hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: var(--vd-pink);
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(60px);
  pointer-events: none;
}

.vd-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--vd-space-7);
  align-items: center;
  z-index: 2;
}

.vd-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--vd-space-2);
  background: var(--vd-yellow);
  color: var(--vd-dark);
  padding: 0.5rem 1.25rem;
  border-radius: var(--vd-radius-pill);
  font-family: var(--vd-font-heading);
  font-weight: 600;
  font-size: var(--vd-fs-sm);
  margin-bottom: var(--vd-space-5);
}

.vd-hero__title {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--vd-space-5);
}
.vd-hero__title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--vd-blue) 0%, var(--vd-pink) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.vd-hero__lead {
  font-size: var(--vd-fs-xl);
  color: var(--vd-text);
  max-width: 480px;
  margin-bottom: var(--vd-space-6);
}

.vd-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--vd-space-3);
  margin-bottom: var(--vd-space-6);
}

.vd-hero__trust {
  display: flex;
  align-items: center;
  gap: var(--vd-space-3);
  color: var(--vd-text);
  font-size: var(--vd-fs-sm);
}
.vd-hero__avatars {
  display: flex;
}
.vd-hero__avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: var(--vd-blue);
  margin-left: -10px;
}
.vd-hero__avatars span:first-child { margin-left: 0; background: var(--vd-pink); }
.vd-hero__avatars span:nth-child(2) { background: var(--vd-yellow); }
.vd-hero__avatars span:nth-child(3) { background: var(--vd-green); }

.vd-hero__media {
  position: relative;
}
.vd-hero__media img {
  border-radius: var(--vd-radius-xl);
  box-shadow: var(--vd-shadow-lg);
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.vd-hero__sticker {
  position: absolute;
  background: var(--vd-yellow);
  color: var(--vd-dark);
  padding: var(--vd-space-3) var(--vd-space-5);
  border-radius: var(--vd-radius-md);
  font-family: var(--vd-font-heading);
  font-weight: 700;
  font-size: var(--vd-fs-lg);
  box-shadow: var(--vd-shadow-md);
  transform: rotate(-6deg);
}
.vd-hero__sticker--top { top: 24px; left: -24px; }
.vd-hero__sticker--bot { bottom: 24px; right: -16px; transform: rotate(6deg); background: var(--vd-pink); color: #fff; }

@media (max-width: 900px) {
  .vd-hero__inner { grid-template-columns: 1fr; }
  .vd-hero__media { order: -1; }
  .vd-hero__sticker--top { top: 12px; left: 12px; }
  .vd-hero__sticker--bot { bottom: 12px; right: 12px; }
}

/* ============================================================
   9. FRONT-PAGE — Catégories carousel
   ============================================================ */
.vd-cats {
  background: var(--vd-light);
}
.vd-cats__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: var(--vd-space-6);
  flex-wrap: wrap;
  gap: var(--vd-space-3);
}

.vd-cat-card {
  background: #fff;
  border-radius: var(--vd-radius-lg);
  padding: var(--vd-space-5);
  text-align: center;
  text-decoration: none;
  color: var(--vd-dark);
  transition: transform var(--vd-dur) var(--vd-bounce),
              box-shadow var(--vd-dur) var(--vd-ease);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--vd-space-3);
}
.vd-cat-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  border-color: var(--vd-yellow);
  box-shadow: var(--vd-shadow-md);
  color: var(--vd-blue);
}
.vd-cat-card__icon {
  width: 80px;
  height: 80px;
  border-radius: var(--vd-radius-lg);
  background: var(--vd-blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.vd-cat-card:nth-child(2n) .vd-cat-card__icon { background: #FFF1F4; }
.vd-cat-card:nth-child(3n) .vd-cat-card__icon { background: #FFF8DC; }
.vd-cat-card:nth-child(4n) .vd-cat-card__icon { background: #E8FFF1; }
.vd-cat-card__title {
  font-family: var(--vd-font-heading);
  font-weight: 600;
  font-size: var(--vd-fs-lg);
  margin: 0;
}
.vd-cat-card__count {
  font-size: var(--vd-fs-sm);
  color: var(--vd-muted);
}

/* ============================================================
   10. FRONT-PAGE — Bandeau argument / réassurance
   ============================================================ */
.vd-trust {
  background: var(--vd-dark);
  color: #fff;
  padding: var(--vd-space-6) 0;
}
.vd-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--vd-space-5);
}
.vd-trust__item {
  display: flex;
  align-items: center;
  gap: var(--vd-space-3);
}
.vd-trust__icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 214, 0, 0.15);
  color: var(--vd-yellow);
  border-radius: var(--vd-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vd-trust__title {
  font-family: var(--vd-font-heading);
  font-weight: 600;
  font-size: var(--vd-fs-base);
  margin: 0 0 4px;
}
.vd-trust__desc {
  font-size: var(--vd-fs-sm);
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}
@media (max-width: 768px) {
  .vd-trust__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .vd-trust__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   11. FRONT-PAGE — Témoignages
   ============================================================ */
.vd-testimonials {
  background: linear-gradient(180deg, #fff 0%, var(--vd-light) 100%);
}
.vd-testimonial {
  background: #fff;
  border-radius: var(--vd-radius-lg);
  padding: var(--vd-space-6);
  box-shadow: var(--vd-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--vd-space-4);
  height: 100%;
}
.vd-testimonial__stars { color: var(--vd-yellow); font-size: 1.1rem; letter-spacing: 2px; }
.vd-testimonial__text {
  font-size: var(--vd-fs-lg);
  color: var(--vd-dark);
  font-weight: 500;
  line-height: 1.5;
  flex: 1;
}
.vd-testimonial__author { display: flex; align-items: center; gap: var(--vd-space-3); }
.vd-testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--vd-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vd-font-heading);
  font-weight: 700;
}
.vd-testimonial__name { font-weight: 600; color: var(--vd-dark); }
.vd-testimonial__role { font-size: var(--vd-fs-sm); color: var(--vd-muted); }

/* ============================================================
   12. FRONT-PAGE — Newsletter CTA
   ============================================================ */
.vd-newsletter {
  background: var(--vd-blue);
  color: #fff;
  border-radius: var(--vd-radius-xl);
  padding: var(--vd-space-7);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.vd-newsletter::before,
.vd-newsletter::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
  pointer-events: none;
}
.vd-newsletter::before {
  width: 300px; height: 300px;
  background: var(--vd-yellow);
  top: -100px; left: -100px;
}
.vd-newsletter::after {
  width: 280px; height: 280px;
  background: var(--vd-pink);
  bottom: -120px; right: -100px;
}
.vd-newsletter__inner { position: relative; z-index: 1; }
.vd-newsletter h2 { color: #fff; }
.vd-newsletter__form {
  display: flex;
  gap: var(--vd-space-2);
  max-width: 480px;
  margin: var(--vd-space-5) auto 0;
}
.vd-newsletter__form input {
  flex: 1;
  padding: 1rem 1.5rem;
  font-family: var(--vd-font-body);
  font-size: var(--vd-fs-base);
  border: 0;
  border-radius: var(--vd-radius-pill);
  background: rgba(255,255,255,0.95);
  color: var(--vd-dark);
}
.vd-newsletter__form input::placeholder { color: var(--vd-muted); }
@media (max-width: 600px) {
  .vd-newsletter__form { flex-direction: column; }
  .vd-newsletter__form .vd-btn { width: 100%; }
}

/* ============================================================
   13. FOOTER
   ============================================================ */
.vd-footer {
  background: var(--vd-dark);
  color: rgba(255,255,255,0.85);
  padding: var(--vd-space-8) 0 var(--vd-space-5);
}
.vd-footer a { color: rgba(255,255,255,0.85); }
.vd-footer a:hover { color: var(--vd-yellow); }
.vd-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--vd-space-6);
  margin-bottom: var(--vd-space-7);
}
@media (max-width: 900px) {
  .vd-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .vd-footer__grid { grid-template-columns: 1fr; }
}
.vd-footer__brand .vd-logo { color: #fff; }
.vd-footer__about { font-size: var(--vd-fs-sm); margin-top: var(--vd-space-3); color: rgba(255,255,255,0.65); }
.vd-footer__title {
  font-family: var(--vd-font-heading);
  font-weight: 600;
  color: #fff;
  font-size: var(--vd-fs-base);
  margin: 0 0 var(--vd-space-4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.vd-footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--vd-space-2); font-size: var(--vd-fs-sm); }

.vd-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--vd-space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--vd-space-3);
  font-size: var(--vd-fs-sm);
  color: rgba(255,255,255,0.55);
}
.vd-footer__pay {
  display: flex;
  gap: var(--vd-space-2);
  align-items: center;
}
.vd-footer__pay span {
  background: rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: var(--vd-radius-sm);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ============================================================
   14. WOOCOMMERCE OVERRIDES (légers — surcharges fines)
   ============================================================ */
.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce-page a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--vd-blue) !important;
  color: #fff !important;
  font-family: var(--vd-font-heading);
  font-weight: 600;
  border-radius: var(--vd-radius-pill) !important;
  padding: 0.875rem 1.75rem !important;
  border: 0 !important;
  transition: transform var(--vd-dur) var(--vd-bounce), background var(--vd-dur) var(--vd-ease) !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--vd-blue-dark) !important;
  transform: translateY(-2px);
}

.woocommerce ul.products li.product .price {
  color: var(--vd-dark) !important;
  font-family: var(--vd-font-heading);
  font-weight: 700;
}

.woocommerce span.onsale {
  background: var(--vd-red) !important;
  color: #fff !important;
  border-radius: var(--vd-radius-pill) !important;
  font-family: var(--vd-font-heading);
  font-weight: 600;
}

/* ============================================================
   15. UTILS
   ============================================================ */
.text-center { text-align: center; }
.text-muted  { color: var(--vd-muted); }
.section-title { text-align: center; margin-bottom: var(--vd-space-6); }
.section-title small {
  display: block;
  color: var(--vd-blue);
  font-family: var(--vd-font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--vd-fs-sm);
  margin-bottom: var(--vd-space-2);
}

/* ============================================================
   16. ANIMATIONS
   ============================================================ */
@keyframes vd-float {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(-8px) rotate(-4deg); }
}
.vd-hero__sticker--top { animation: vd-float 4s ease-in-out infinite; }

@keyframes vd-pop {
  0%   { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1);   opacity: 1; }
}
