/* ==========================================================================
   AZURYA — Design system (converti depuis l'export statique)
   Marque : robots de piscine premium · FR
   N'utilise QUE du CSS standard → 100% compatible Elementor Free / WooCommerce
   ========================================================================== */

:root{
  --az-navy:#0A2342;        /* texte / fond foncé principal */
  --az-deep:#061A33;        /* fond très foncé (footer, hero) */
  --az-blue:#3DB8FF;        /* accent principal */
  --az-blue-2:#1E8FD6;      /* accent foncé (icônes, liens) */
  --az-ink:#33465c;         /* texte courant foncé */
  --az-muted:#5B6B7F;       /* texte secondaire */
  --az-muted-2:#7e8ea2;     /* texte tertiaire */
  --az-bg:#FFFFFF;
  --az-bg-soft:#F7F9FC;     /* sections claires alternées */
  --az-line:#EAF0F7;        /* bordures claires */
  --az-line-2:#E2EAF3;      /* bordures inputs */
  --az-green:#1E8F5B;       /* succès */
  --az-green-soft:#E9F8EF;
  --az-radius:22px;
  --az-radius-sm:14px;
  --az-shadow-card:0 18px 50px -30px rgba(10,35,66,.30);
  --az-shadow-lift:0 40px 70px -36px rgba(10,35,66,.45);
  --az-serif:'Playfair Display', Georgia, serif;
  --az-sans:'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --az-maxw:1280px;
}

/* ---- Reset léger limité au canvas AZURYA -------------------------------- */
.az * { box-sizing:border-box; }
.az{
  font-family:var(--az-sans);
  color:var(--az-navy);
  background:var(--az-bg);
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}
.az img{ max-width:100%; display:block; }
.az a{ color:inherit; }
html{ scroll-behavior:smooth; }
.az ::selection{ background:var(--az-blue); color:var(--az-deep); }

/* ---- Layout ------------------------------------------------------------- */
.az-wrap{ max-width:var(--az-maxw); margin:0 auto; padding-left:24px; padding-right:24px; }
.az-wrap--sm{ max-width:1080px; }
.az-wrap--xs{ max-width:880px; }
.az-section{ padding-top:clamp(80px,9vw,128px); padding-bottom:clamp(80px,9vw,128px); }
.az-section--tight{ padding-top:clamp(64px,7vw,96px); padding-bottom:clamp(64px,7vw,96px); }
.az-bg-soft{ background:var(--az-bg-soft); }
.az-bg-navy{ background:var(--az-navy); color:#fff; }
.az-bg-deep{ background:var(--az-deep); color:#fff; }
.az-border-top{ border-top:1px solid #EEF3F9; }

/* ---- Typo --------------------------------------------------------------- */
.az-eyebrow{ font-size:12.5px; font-weight:600; letter-spacing:.16em; text-transform:uppercase; color:var(--az-blue); margin-bottom:16px; }
.az-h1{ font-family:var(--az-serif); font-weight:700; font-size:clamp(42px,6vw,82px); line-height:1.04; letter-spacing:-.01em; margin:0 0 22px; }
.az-h2{ font-family:var(--az-serif); font-weight:700; font-size:clamp(30px,4vw,50px); line-height:1.1; letter-spacing:-.01em; margin:0; }
.az-h3{ font-family:var(--az-serif); font-weight:600; font-size:22px; margin:0 0 10px; }
.az-lead{ font-size:clamp(16px,1.4vw,19px); line-height:1.65; color:var(--az-muted); }
.az-p{ font-size:14.5px; line-height:1.65; color:var(--az-muted); margin:0; }
.az-center{ text-align:center; }
.az-italic-blue{ color:var(--az-blue); font-style:italic; font-weight:500; }
.az-head-block{ max-width:720px; margin:0 auto clamp(48px,5vw,64px); }

/* ---- Boutons ------------------------------------------------------------ */
.az-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  text-decoration:none; cursor:pointer; border:none; font-family:inherit;
  font-weight:600; font-size:15.5px; padding:16px 30px; border-radius:999px;
  transition:transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.az-btn--primary{ background:var(--az-blue); color:var(--az-deep); box-shadow:0 14px 40px -12px rgba(61,184,255,.7); }
.az-btn--primary:hover{ transform:translateY(-2px); box-shadow:0 22px 50px -12px rgba(61,184,255,.85); }
.az-btn--dark{ background:var(--az-navy); color:#fff; }
.az-btn--dark:hover{ background:#13315c; transform:translateY(-1px); }
.az-btn--ghost{ background:rgba(255,255,255,.06); color:#fff; border:1px solid rgba(255,255,255,.28); }
.az-btn--ghost:hover{ background:rgba(255,255,255,.14); }
.az-btn--soft{ background:#F0F6FD; color:var(--az-navy); font-size:13.5px; padding:10px 16px; }
.az-btn--soft:hover{ background:#e0eefb; }
.az-btn--sm{ font-size:14px; padding:11px 22px; }
.az-btn--block{ display:flex; width:100%; }

/* ---- Top bar + Nav ------------------------------------------------------ */
.az-topbar{ background:var(--az-navy); color:#cfe3f6; font-size:12.5px; letter-spacing:.02em; }
.az-topbar .az-wrap{ padding-top:9px; padding-bottom:9px; display:flex; flex-wrap:wrap; gap:26px; align-items:center; justify-content:center; }
.az-topbar span.az-ti{ display:inline-flex; align-items:center; gap:7px; }
.az-topbar .az-sep{ opacity:.25; }

.az-nav{
  position:sticky; top:0; z-index:60;
  background:rgba(255,255,255,.86);
  -webkit-backdrop-filter:saturate(160%) blur(14px); backdrop-filter:saturate(160%) blur(14px);
  border-bottom:1px solid var(--az-line);
  transition:box-shadow .3s ease, background .3s ease;
}
.az-nav.az-nav--scrolled{ box-shadow:0 10px 30px -16px rgba(10,35,66,.35); background:rgba(255,255,255,.96); }
.az-nav .az-wrap{ padding-top:13px; padding-bottom:13px; display:flex; align-items:center; gap:32px; }
.az-brand{ display:flex; align-items:center; gap:11px; text-decoration:none; flex-shrink:0; }
.az-brand img{ height:38px; width:auto; }
.az-brand span{ font-family:var(--az-serif); font-weight:700; font-size:25px; letter-spacing:.16em; color:var(--az-navy); }
.az-menu{ display:flex; gap:30px; margin-left:8px; flex:1; flex-wrap:wrap; }
.az-menu a{ text-decoration:none; color:#41546b; font-size:14.5px; font-weight:500; transition:color .2s ease; }
.az-menu a:hover, .az-menu a.az-active{ color:var(--az-navy); }
.az-nav-cart{ flex-shrink:0; display:inline-flex; align-items:center; gap:8px; text-decoration:none; color:var(--az-navy); font-size:14px; font-weight:600; padding:10px 16px; border:1px solid var(--az-line-2); border-radius:999px; background:#fff; }
.az-nav-cart .az-cart-count{ background:var(--az-blue); color:var(--az-deep); font-size:11px; font-weight:700; min-width:18px; height:18px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; padding:0 5px; }

/* ---- Hero --------------------------------------------------------------- */
.az-hero{ position:relative; min-height:92vh; display:flex; align-items:center; background:var(--az-deep); overflow:hidden; }
.az-hero__img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 38%; }
.az-hero__scrim{ position:absolute; inset:0; background:linear-gradient(90deg, rgba(6,26,51,.88) 0%, rgba(6,26,51,.62) 38%, rgba(6,26,51,.12) 66%, rgba(6,26,51,0) 100%); }
.az-hero__scrim-b{ position:absolute; inset:0; background:linear-gradient(0deg, rgba(6,26,51,.45) 0%, transparent 32%); }
.az-hero .az-wrap{ position:relative; padding-top:64px; padding-bottom:64px; width:100%; }
.az-hero__inner{ max-width:640px; }
.az-hero h1{ color:#fff; }
.az-hero .az-lead{ color:#c2d4e8; max-width:520px; margin:0 0 38px; }
.az-pill{ display:inline-flex; align-items:center; gap:8px; padding:7px 14px; border:1px solid rgba(61,184,255,.35); border-radius:999px; color:#8fd2ff; font-size:12.5px; font-weight:500; letter-spacing:.04em; margin-bottom:26px; }
.az-pill .dot{ width:7px; height:7px; border-radius:50%; background:var(--az-blue); box-shadow:0 0 0 4px rgba(61,184,255,.2); }
.az-hero__cta{ display:flex; flex-wrap:wrap; gap:14px; }
.az-stars{ color:var(--az-blue); letter-spacing:1px; }
.az-hero__rating{ display:flex; align-items:center; gap:18px; margin-top:40px; color:#9fb6d0; font-size:13.5px; }
.az-hero__rating strong{ color:#fff; }
.az-scroll-cue{ position:absolute; bottom:26px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; color:rgba(207,227,246,.6); font-size:11px; letter-spacing:.18em; }
.az-scroll-cue span{ width:1px; height:34px; background:linear-gradient(var(--az-blue), transparent); }

/* ---- Bandeau preuve sociale -------------------------------------------- */
.az-proof{ background:#fff; border-bottom:1px solid #EEF3F9; }
.az-proof .az-wrap{ padding-top:34px; padding-bottom:34px; display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:28px; }
.az-paytag{ font-family:ui-monospace,monospace; font-weight:700; font-size:13px; letter-spacing:.06em; color:var(--az-navy); background:#F7F9FC; border:1px solid #E8EEF5; border-radius:7px; padding:8px 13px; }

/* ---- Grilles ------------------------------------------------------------ */
.az-grid{ display:grid; gap:24px; }
.az-grid--2{ grid-template-columns:repeat(2,1fr); }
.az-grid--3{ grid-template-columns:repeat(3,1fr); }
.az-grid--4{ grid-template-columns:repeat(4,1fr); gap:22px; }
.az-grid--6{ grid-template-columns:repeat(6,1fr); gap:20px; }

/* ---- Cartes problème / icônes ------------------------------------------ */
.az-card{ background:#fff; border:1px solid var(--az-line); border-radius:20px; padding:38px 32px; box-shadow:var(--az-shadow-card); }
.az-ico{ width:52px; height:52px; border-radius:14px; background:#F0F6FD; display:flex; align-items:center; justify-content:center; margin-bottom:22px; }
.az-ico--dark{ background:var(--az-navy); width:48px; height:48px; border-radius:12px; flex-shrink:0; }

/* ---- Solution (feature rows) ------------------------------------------- */
.az-split{ display:grid; grid-template-columns:1.15fr 1fr; gap:56px; align-items:center; }
.az-media{ position:relative; aspect-ratio:4/3.4; border-radius:26px; overflow:hidden; background:var(--az-navy); border:1px solid var(--az-line); box-shadow:0 40px 90px -40px rgba(10,35,66,.55); }
.az-media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.az-featlist{ display:flex; flex-direction:column; gap:14px; }
.az-feat{ display:flex; gap:20px; padding:24px; border-radius:18px; border:1px solid var(--az-line); background:#FBFDFF; transition:border-color .25s ease, transform .25s ease; }
.az-feat:hover{ border-color:#cfe6fb; transform:translateX(4px); }
.az-feat h3{ font-family:var(--az-serif); font-weight:600; font-size:20px; margin:0 0 6px; }
.az-feat p{ font-size:14px; line-height:1.6; color:var(--az-muted); margin:0; }

/* ---- Cartes produit (collection) --------------------------------------- */
.az-prod{ background:#fff; border:1px solid var(--az-line); border-radius:22px; overflow:hidden; display:flex; flex-direction:column; transition:transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease; text-decoration:none; color:inherit; }
.az-prod:hover{ transform:translateY(-8px); box-shadow:var(--az-shadow-lift); }
.az-prod--feature{ border:2px solid var(--az-blue); box-shadow:0 30px 70px -38px rgba(61,184,255,.6); position:relative; }
.az-prod__media{ position:relative; aspect-ratio:1/1; background:radial-gradient(120% 110% at 50% 25%, #f1f7fd, #e3eef8); display:flex; align-items:center; justify-content:center; }
.az-prod__media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.az-prod__body{ padding:26px 24px 28px; display:flex; flex-direction:column; flex:1; }
.az-prod__body h3{ font-family:var(--az-serif); font-weight:600; font-size:23px; margin:0 0 4px; }
.az-prod__sub{ font-size:13.5px; color:var(--az-muted); margin:0 0 18px; }
.az-prod__feats{ display:flex; flex-direction:column; gap:8px; font-size:13px; color:#41546b; margin-bottom:22px; }
.az-prod__feats span{ display:flex; gap:8px; align-items:center; }
.az-prod__foot{ margin-top:auto; display:flex; align-items:flex-end; justify-content:space-between; }
.az-price-label{ font-size:11px; color:#9aaabd; }
.az-price{ font-family:var(--az-serif); font-weight:700; font-size:27px; color:var(--az-navy); }
.az-badge{ position:absolute; top:14px; right:14px; z-index:2; background:var(--az-blue); color:var(--az-deep); font-size:11px; font-weight:700; letter-spacing:.04em; padding:6px 12px; border-radius:999px; }

/* ---- Comparatif --------------------------------------------------------- */
.az-compare-sec{ position:relative; overflow:hidden; }
.az-compare-glow{ position:absolute; inset:0; background:radial-gradient(70% 60% at 85% 0%, rgba(61,184,255,.16), transparent 60%); }
.az-compare{ background:rgba(255,255,255,.04); border:1px solid rgba(61,184,255,.18); border-radius:22px; overflow:hidden; }
.az-compare__row{ display:grid; grid-template-columns:1.4fr 1fr 1fr; border-top:1px solid rgba(255,255,255,.07); }
.az-compare__row:first-child{ border-top:none; }
.az-compare__row > div{ padding:24px 26px; }
.az-compare__row .lbl{ font-weight:600; font-size:15px; }
.az-compare__row .yes{ text-align:center; background:rgba(61,184,255,.06); color:#bfe6ff; font-weight:600; }
.az-compare__row .no{ text-align:center; color:#8ea6c2; }
.az-compare__head .yes{ background:rgba(61,184,255,.12); }
.az-compare__head .yes span{ font-family:var(--az-serif); font-weight:700; font-size:19px; letter-spacing:.1em; }

/* ---- Étapes ------------------------------------------------------------- */
.az-step{ text-align:center; }
.az-step__media{ position:relative; aspect-ratio:4/3; border-radius:20px; overflow:hidden; background:linear-gradient(160deg,#eaf4fd,#dcebf8); margin-bottom:24px; display:flex; align-items:center; justify-content:center; }
.az-step__media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.az-step__num{ display:inline-flex; align-items:center; justify-content:center; width:34px; height:34px; border-radius:50%; background:var(--az-navy); color:var(--az-blue); font-weight:700; font-size:14px; margin-bottom:14px; }
.az-step h3{ font-family:var(--az-serif); font-weight:600; font-size:21px; margin:0 0 8px; }
.az-step p{ font-size:14px; line-height:1.6; color:var(--az-muted); margin:0 auto; max-width:300px; }
.az-orb{ border-radius:50%; background:radial-gradient(circle at 38% 32%, #6fcbff, #1f8ed8 60%, #0a4f87); }
.az-float{ animation:azFloat 5s ease-in-out infinite; }

/* ---- Témoignages -------------------------------------------------------- */
.az-rev{ background:#fff; border:1px solid var(--az-line); border-radius:18px; overflow:hidden; display:flex; flex-direction:column; }
.az-rev__top{ position:relative; height:130px; background:repeating-linear-gradient(120deg,#dcebf8 0 12px,#e7f1fa 12px 24px); display:flex; align-items:flex-end; }
.az-rev__top span{ font-family:ui-monospace,monospace; font-size:10px; color:#8aa3bd; padding:8px 12px; }
.az-rev__body{ padding:22px 24px 26px; }
.az-rev__body p{ font-size:14.5px; line-height:1.65; color:var(--az-ink); margin:0 0 18px; }
.az-rev__author{ display:flex; align-items:center; gap:11px; }
.az-avatar{ width:38px; height:38px; border-radius:50%; background:linear-gradient(135deg,var(--az-blue),var(--az-navy)); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:600; font-size:14px; }
.az-rev__name{ font-weight:600; font-size:13.5px; color:var(--az-navy); }
.az-rev__meta{ font-size:12px; color:#8295ab; display:flex; align-items:center; gap:5px; }

/* ---- Avant / Après (slider) -------------------------------------------- */
.az-ba{ position:relative; aspect-ratio:16/8.4; border-radius:24px; overflow:hidden; cursor:ew-resize; user-select:none; box-shadow:0 40px 90px -44px rgba(10,35,66,.5); border:1px solid var(--az-line); }
.az-ba__layer{ position:absolute; inset:0; overflow:hidden; }
.az-ba__layer img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.az-ba__top{ clip-path:inset(0 50% 0 0); }
.az-ba__tag{ position:absolute; bottom:16px; font-size:12px; font-weight:600; letter-spacing:.04em; padding:7px 14px; border-radius:999px; }
.az-ba__tag--after{ right:18px; background:rgba(6,32,63,.62); color:#eaf6ff; }
.az-ba__tag--before{ left:18px; background:rgba(20,25,10,.62); color:#e9ecdf; }
.az-ba__handle{ position:absolute; top:0; bottom:0; left:50%; width:2px; background:#fff; transform:translateX(-1px); box-shadow:0 0 16px rgba(0,0,0,.25); }
.az-ba__knob{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:46px; height:46px; border-radius:50%; background:#fff; box-shadow:0 8px 24px -6px rgba(10,35,66,.5); display:flex; align-items:center; justify-content:center; cursor:ew-resize; }

/* ---- FAQ accordéon ------------------------------------------------------ */
.az-faq{ display:flex; flex-direction:column; gap:12px; }
.az-faq__item{ background:#fff; border:1px solid var(--az-line); border-radius:14px; overflow:hidden; }
.az-faq__q{ width:100%; text-align:left; background:none; border:none; cursor:pointer; padding:20px 24px; display:flex; justify-content:space-between; align-items:center; gap:16px; font-family:inherit; font-size:16px; font-weight:600; color:var(--az-navy); transition:color .2s ease; }
.az-faq__item[data-open="1"] .az-faq__q{ color:var(--az-blue-2); }
.az-faq__icon{ flex-shrink:0; transition:transform .35s cubic-bezier(.22,.61,.36,1); }
.az-faq__item[data-open="1"] .az-faq__icon{ transform:rotate(45deg); }
.az-faq__a{ max-height:0; opacity:0; overflow:hidden; transition:max-height .4s cubic-bezier(.22,.61,.36,1), opacity .3s ease; }
.az-faq__a > div{ padding:0 24px 22px; font-size:14.5px; line-height:1.65; color:var(--az-muted); }

/* ---- Marque (bloc sombre) ---------------------------------------------- */
.az-brandblock{ display:grid; grid-template-columns:1fr 1.05fr; gap:60px; align-items:center; background:linear-gradient(150deg,var(--az-navy),var(--az-deep)); border-radius:30px; padding:clamp(40px,5vw,72px); position:relative; overflow:hidden; color:#fff; }
.az-brandblock__glow{ position:absolute; right:-60px; top:-60px; width:340px; height:340px; border-radius:50%; background:radial-gradient(circle at 35% 35%, rgba(61,184,255,.35), transparent 65%); }
.az-chip{ display:flex; align-items:center; gap:9px; color:#bfe6ff; font-size:14px; }

/* ---- Réassurance -------------------------------------------------------- */
.az-reassure{ text-align:center; padding:14px; }
.az-reassure__ic{ width:52px; height:52px; margin:0 auto 16px; border-radius:14px; background:#fff; border:1px solid var(--az-line); display:flex; align-items:center; justify-content:center; }
.az-reassure__t{ font-weight:600; font-size:14px; color:var(--az-navy); margin-bottom:4px; }
.az-reassure__d{ font-size:12.5px; color:#7e8ea2; line-height:1.5; }

/* ---- CTA finale --------------------------------------------------------- */
.az-cta{ position:relative; overflow:hidden; border-radius:30px; background:radial-gradient(120% 140% at 80% 10%, #14406f, var(--az-navy) 55%, var(--az-deep)); padding:clamp(48px,6vw,84px); text-align:center; color:#fff; }
.az-cta__grain{ position:absolute; inset:0; background:repeating-linear-gradient(125deg, rgba(61,184,255,.08) 0 2px, transparent 2px 28px); }
.az-cta h2{ color:#fff; margin:0 0 18px; }
.az-cta p{ font-size:16px; line-height:1.6; color:#bcd0e6; margin:0 0 34px; }

/* ---- Footer ------------------------------------------------------------- */
.az-footer{ background:var(--az-deep); color:#a9c0da; }
.az-footer__grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:40px; padding:72px 24px 36px; max-width:var(--az-maxw); margin:0 auto; }
.az-footer h4{ color:#fff; font-weight:600; font-size:14px; margin:0 0 16px; letter-spacing:.02em; }
.az-footer__links{ display:flex; flex-direction:column; gap:11px; font-size:13.5px; }
.az-footer__links a{ color:#a9c0da; text-decoration:none; }
.az-footer__links a:hover{ color:#fff; }
.az-footer p{ font-size:14px; line-height:1.7; color:#8fa8c4; max-width:320px; margin:0 0 22px; }
.az-footer__pay span{ font-family:ui-monospace,monospace; font-size:11px; color:#7e98b6; border:1px solid #1d3a5c; border-radius:6px; padding:7px 10px; }
.az-footer__bottom{ border-top:1px solid #15304f; }
.az-footer__bottom .az-wrap{ padding-top:20px; padding-bottom:20px; display:flex; flex-wrap:wrap; gap:14px; align-items:center; justify-content:space-between; font-size:12.5px; color:#7e98b6; }
.az-footer__legal{ display:flex; gap:20px; }
.az-footer__legal a{ color:#7e98b6; text-decoration:none; }

/* ---- Page header (collection / suivi) ---------------------------------- */
.az-pagehead{ background:linear-gradient(150deg,var(--az-navy),var(--az-deep)); color:#fff; position:relative; overflow:hidden; }
.az-pagehead .az-wrap{ padding-top:clamp(48px,6vw,76px); padding-bottom:clamp(48px,6vw,76px); position:relative; }
.az-pagehead h1{ font-family:var(--az-serif); font-weight:700; font-size:clamp(34px,5vw,60px); line-height:1.05; letter-spacing:-.01em; margin:0 0 16px; color:#fff; }
.az-pagehead p{ font-size:16px; line-height:1.6; color:#bcd0e6; max-width:560px; }

/* ---- Formulaire (suivi / inputs génériques) ---------------------------- */
.az-field{ display:flex; flex-direction:column; gap:7px; }
.az-field span{ font-size:12.5px; font-weight:600; color:var(--az-muted); }
.az-input, .az input[type=text], .az input[type=email]{ padding:13px 15px; border:1px solid var(--az-line-2); border-radius:12px; font-size:14.5px; color:var(--az-navy); background:#fff; font-family:inherit; }
.az-input:focus{ outline:none; border-color:var(--az-blue); box-shadow:0 0 0 3px rgba(61,184,255,.18); }
.az-card-soft{ background:#fff; border:1px solid var(--az-line); border-radius:18px; padding:26px; box-shadow:var(--az-shadow-card); }

/* =========================================================================
   WOOCOMMERCE — habillage premium AZURYA (boutons, panier, checkout, fiche)
   ========================================================================= */

/* Conteneur global des pages standards & WooCommerce (header.php / footer.php) */
.az-shell{ max-width:var(--az-maxw); margin:0 auto; padding:48px 24px 90px; min-height:46vh; }
.az-shell .woocommerce-breadcrumb{ margin-bottom:22px; }

/* Titre de page / boutique */
.az-shell h1.entry-title, .az-shell .page-title, .woocommerce-products-header__title{
  font-family:var(--az-serif); font-weight:700; color:var(--az-navy);
  font-size:clamp(30px,4vw,46px); line-height:1.1; margin:0 0 28px;
}

/* Fiche produit : 2 colonnes confortables */
.woocommerce div.product div.images, .woocommerce div.product div.summary{ margin-bottom:30px; }
.woocommerce div.product div.images img{ border-radius:22px; border:1px solid var(--az-line); }
.woocommerce div.product .summary .product_title{ margin-top:0; }
.woocommerce-tabs .panel{ background:#fff; border:1px solid var(--az-line); border-radius:16px; padding:24px; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active{ border-bottom-color:var(--az-blue); }
.woocommerce .related.products, .woocommerce .upsells.products{ border-top:1px solid var(--az-line); padding-top:32px; }

.woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce #respond input#submit,
.woocommerce .single_add_to_cart_button, .wc-block-components-button{
  background:var(--az-blue)!important; color:var(--az-deep)!important;
  font-family:var(--az-sans)!important; font-weight:600!important;
  border-radius:999px!important; border:none!important;
  padding:14px 28px!important; letter-spacing:0!important;
  box-shadow:0 14px 40px -14px rgba(61,184,255,.7);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover,
.woocommerce .single_add_to_cart_button:hover, .wc-block-components-button:hover{
  transform:translateY(-2px); box-shadow:0 22px 50px -14px rgba(61,184,255,.85);
  background:var(--az-blue)!important;
}
.woocommerce #place_order, .woocommerce-checkout #place_order,
.wc-block-components-checkout-place-order-button{
  background:var(--az-navy)!important; color:#fff!important;
  border-radius:999px!important; padding:17px 28px!important; font-weight:600!important;
  width:100%; font-size:15.5px!important;
}
.woocommerce #place_order:hover{ background:#13315c!important; }

/* prix */
.woocommerce div.product p.price, .woocommerce div.product span.price{
  color:var(--az-navy); font-family:var(--az-serif); font-weight:700; font-size:34px;
}
.woocommerce div.product p.price del{ color:#9aaabd; font-size:18px; }

/* fiche produit : titres */
.woocommerce div.product .product_title{ font-family:var(--az-serif); font-weight:700; color:var(--az-navy); }
.woocommerce .star-rating span{ color:var(--az-blue); }

/* quantité */
.woocommerce .quantity .qty{ border:1px solid var(--az-line-2); border-radius:999px; padding:10px; font-family:inherit; }

/* notices / promos */
.woocommerce-message, .woocommerce-info, .woocommerce-error{
  border-top-color:var(--az-blue)!important; border-radius:12px;
}
.woocommerce span.onsale{
  background:var(--az-blue); color:var(--az-deep); border-radius:999px;
  font-weight:700; min-height:auto; min-width:auto; padding:6px 12px; line-height:1;
}

/* grille boutique */
.woocommerce ul.products li.product{ border:1px solid var(--az-line); border-radius:22px; overflow:hidden; padding:0 0 22px; text-align:left; transition:transform .3s ease, box-shadow .3s ease; }
.woocommerce ul.products li.product:hover{ transform:translateY(-8px); box-shadow:var(--az-shadow-lift); }
.woocommerce ul.products li.product img{ margin:0 0 14px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title{ font-family:var(--az-serif); font-weight:600; padding:0 20px; color:var(--az-navy); }
.woocommerce ul.products li.product .price{ padding:0 20px; display:block; font-family:var(--az-serif); }
.woocommerce ul.products li.product .button{ margin:14px 20px 0; }

/* checkout / cart : champs */
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea,
.woocommerce-checkout input[type=text], .woocommerce-checkout input[type=email],
.woocommerce-checkout input[type=tel], .woocommerce-checkout .select2-selection{
  border:1px solid var(--az-line-2)!important; border-radius:11px!important; padding:12px 14px!important; font-family:inherit;
}
.woocommerce-checkout #payment, .woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout .woocommerce-checkout-review-order{
  background:#F7F9FC; border:1px solid var(--az-line); border-radius:18px; padding:24px;
}
.woocommerce-cart table.cart, .woocommerce table.shop_table{ border-radius:16px; border-color:var(--az-line); }

/* fil d'ariane woo */
.woocommerce .woocommerce-breadcrumb{ color:#8295ab; font-size:13px; }
.woocommerce .woocommerce-breadcrumb a{ color:#8295ab; }

/* =========================================================================
   CHECKOUT AZURYA (header slim + stepper + 2 colonnes + récap sticky)
   ========================================================================= */
body.woocommerce-checkout{ background:var(--az-bg-soft); }

/* header slim */
.az-co-header{ background:#fff; border-bottom:1px solid var(--az-line); }
.az-co-header__in{ max-width:1180px; margin:0 auto; padding:16px 24px; display:flex; align-items:center; justify-content:space-between; gap:16px; }
.az-co-header .az-brand span{ font-size:23px; }
.az-co-secure{ display:flex; align-items:center; gap:9px; font-size:13px; color:var(--az-muted); }
.az-co-back{ font-size:13.5px; color:var(--az-blue-2); text-decoration:none; font-weight:600; white-space:nowrap; }

/* stepper */
.az-co-stepper{ background:#fff; border-bottom:1px solid var(--az-line); }
.az-co-stepper__in{ max-width:1180px; margin:0 auto; padding:18px 24px; display:flex; gap:8px; align-items:center; justify-content:center; flex-wrap:wrap; }
.az-co-step__num{ width:26px; height:26px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; font-size:13px; font-weight:700; background:#E8EEF5; color:#9aaabd; }
.az-co-step__num.is-active{ background:var(--az-navy); color:#fff; }
.az-co-step__label{ font-size:13.5px; font-weight:600; margin-left:8px; color:#9aaabd; }
.az-co-step__label.is-active{ color:var(--az-navy); }
.az-co-step__sep{ width:30px; height:1px; background:var(--az-line-2); margin:0 6px; }

/* conteneur checkout */
.az-shell--checkout{ max-width:1180px; padding:36px 24px 80px; }

/* grille 2 colonnes */
.woocommerce .az-checkout, .woocommerce-page .az-checkout{ display:grid; grid-template-columns:1.5fr 1fr; gap:36px; align-items:start; }
.az-checkout__left{ display:flex; flex-direction:column; gap:20px; min-width:0; }

/* Annule les largeurs/flottants par défaut de WooCommerce (48% → 100%)
   qui créaient un grand vide entre les colonnes. */
.woocommerce .az-checkout__left .col2-set,
.woocommerce .az-checkout__left #customer_details,
.woocommerce .az-checkout__left .col-1,
.woocommerce .az-checkout__left .col-2,
.woocommerce-page .az-checkout__left .col-1,
.woocommerce-page .az-checkout__left .col-2{
  width:100% !important; max-width:100% !important; float:none !important; margin:0 !important;
}
.az-checkout__left .col2-set{ display:flex; flex-direction:column; gap:20px; }
.woocommerce .az-checkout__right #order_review,
.woocommerce-page .az-checkout__right #order_review{
  width:100% !important; float:none !important;
}

/* cartes blanches autour des sections de formulaire */
.az-checkout__left .col-1, .az-checkout__left .col-2,
.az-checkout__left .woocommerce-additional-fields{
  background:#fff; border:1px solid var(--az-line); border-radius:20px; padding:28px;
}
/* masque une colonne « livraison » vide (adresse différente non cochée) */
.az-checkout__left .col-2:empty{ display:none; }
.az-checkout__left h3{ font-family:var(--az-serif); font-weight:700; font-size:21px; margin:0 0 18px; color:var(--az-navy); }
.woocommerce form .form-row label{ font-size:12.5px; font-weight:500; color:var(--az-muted); }

/* colonne droite : récap sticky */
.az-checkout__right{ position:sticky; top:24px; }
.woocommerce .az-checkout__right #order_review,
.woocommerce-page .az-checkout__right #order_review{
  background:#fff; border:1px solid var(--az-line); border-radius:20px; padding:28px;
  box-shadow:0 24px 60px -40px rgba(10,35,66,.4);
}
.az-checkout__right #order_review_heading{ font-family:var(--az-serif); font-weight:700; font-size:20px; margin:0 0 16px; color:var(--az-navy); }
.woocommerce-checkout #order_review .shop_table{ border:none; }
.woocommerce-checkout #order_review .shop_table th,
.woocommerce-checkout #order_review .shop_table td{ border:none; padding:10px 0; font-size:14px; }
.woocommerce-checkout #order_review .order-total .amount{ font-family:var(--az-serif); font-size:26px; color:var(--az-navy); }
.woocommerce-checkout #payment{ background:transparent; border:none; padding:0; border-radius:0; }
.woocommerce-checkout #payment ul.payment_methods{ border:1px solid var(--az-line); border-radius:14px; background:#FBFDFF; }

/* badges de confiance sous le bouton */
.az-co-secureline{ display:flex; align-items:center; justify-content:center; gap:8px; font-size:12px; color:var(--az-muted-2); margin:12px 0 14px; }
.az-co-trust{ display:flex; flex-direction:column; gap:9px; padding-top:16px; border-top:1px solid #F0F4F9; }
.az-co-trust span{ display:flex; gap:9px; align-items:center; font-size:12.5px; color:var(--az-muted); }

/* page de remerciement (commande reçue) */
.woocommerce-order{ max-width:640px; margin:30px auto; background:#fff; border:1px solid var(--az-line); border-radius:24px; padding:48px; box-shadow:0 30px 70px -40px rgba(10,35,66,.4); }
.woocommerce-order .woocommerce-notice--success{ font-family:var(--az-serif); font-size:26px; color:var(--az-navy); border:none; }

/* =========================================================================
   ANIMATIONS
   ========================================================================= */
@keyframes azFloat{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-14px);} }
@keyframes azWave{ 0%{ background-position:0 0;} 100%{ background-position:-1200px 0;} }
@keyframes azPulse{ 0%,100%{ opacity:.5; transform:scale(1);} 50%{ opacity:1; transform:scale(1.12);} }
@keyframes azMarquee{ 0%{ transform:translateX(0);} 100%{ transform:translateX(-50%);} }

/* reveal au scroll (piloté par azurya.js) */
.az [data-reveal]{ opacity:0; transform:translateY(26px); transition:opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1); }
.az [data-reveal].az-in{ opacity:1; transform:none; }
@media (prefers-reduced-motion:reduce){
  .az [data-reveal]{ opacity:1!important; transform:none!important; }
  .az-float{ animation:none; }
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width:1024px){
  .az-grid--4{ grid-template-columns:repeat(2,1fr); }
  .az-grid--6{ grid-template-columns:repeat(3,1fr); }
  .az-split, .az-brandblock{ grid-template-columns:1fr; gap:36px; }
  .az-menu{ display:none; } /* nav simplifiée en tablette/mobile */
}
@media (max-width:760px){
  .az-grid--2, .az-grid--3, .az-grid--4{ grid-template-columns:1fr; }
  .az-grid--6{ grid-template-columns:repeat(2,1fr); }
  .az-hero{ min-height:auto; padding-top:24px; padding-bottom:48px; }
  .az-hero__scrim{ background:linear-gradient(0deg, rgba(6,26,51,.92) 10%, rgba(6,26,51,.55) 100%); }
  .az-compare__row{ grid-template-columns:1.3fr .85fr .85fr; }
  .az-compare__row > div{ padding:16px 12px; font-size:13px; }
  .az-footer__grid{ grid-template-columns:1fr 1fr; gap:28px; }
  .az-proof .az-wrap{ justify-content:center; }
  .az-ba{ aspect-ratio:16/11; }
  .az-nav .az-wrap{ gap:12px; }
  .az-brand span{ font-size:21px; }
  .woocommerce .az-checkout, .woocommerce-page .az-checkout{ grid-template-columns:1fr; gap:20px; }
  .az-checkout__right{ position:static; }
  .az-co-header__in{ flex-wrap:wrap; gap:10px; }
  .az-co-secure{ order:3; width:100%; justify-content:center; }
}
@media (max-width:440px){
  .az-footer__grid{ grid-template-columns:1fr; }
  .az-grid--6{ grid-template-columns:1fr 1fr; }
}
