/* =====================================================================
   AMAZONE SECRETS — DESIGN SYSTEM PARTAGÉ
   Charte : crème + or + rose poudré. Playfair Display + Nunito.
   Porté depuis les pages de vente d'origine, nettoyé pour un site
   autonome (Cloudflare Pages) : sans les hacks Elementor.
   ===================================================================== */

/* =====================================================================
   ROOT + RESET
   ===================================================================== */
:root {
  --as-cream: #FAF5EE;
  --as-cream-dark: #F0E6D6;
  --as-white: #FFFFFF;
  --as-gold: #C9A06B;
  --as-gold-deep: #9C7A45;
  --as-gold-light: #E5D4B0;
  --as-pink: #E8B4B0;
  --as-pink-soft: #F4DCDA;
  --as-ink: #2A1F1A;
  --as-mute: #6B5D4F;
  --as-line: #E8DDD0;
  --as-dark: #1F1612;
  --as-wa: #25D366;
  --as-wa-dark: #1DA851;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--as-cream);
  color: var(--as-ink);
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

#ma-page {
  width: 100%;
  position: relative;
  background: var(--as-cream);
  color: var(--as-ink);
  min-height: 100vh;
}
#ma-page.has-bottombar { padding-bottom: 80px; }

#ma-page *,
#ma-page *::before,
#ma-page *::after { box-sizing: border-box; }
#ma-page p, #ma-page h1, #ma-page h2, #ma-page h3, #ma-page h4, #ma-page ul, #ma-page ol { margin: 0; padding: 0; }
#ma-page ul, #ma-page ol { list-style: none; }
#ma-page a { color: inherit; text-decoration: none; }
#ma-page img { display: block; max-width: 100%; height: auto; }

#ma-page h1, #ma-page h2, #ma-page h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--as-ink);
  text-align: center;
}
#ma-page h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
#ma-page h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
#ma-page h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }

#ma-page .as-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
#ma-page .as-wrap-wide { max-width: 1160px; }

#ma-page .as-eyebrow {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--as-gold-deep);
  padding: 8px 18px;
  border: 1px solid var(--as-gold);
  border-radius: 999px;
  background: rgba(201, 160, 107, 0.06);
}

/* =====================================================================
   NAV (barre de navigation du site)
   ===================================================================== */
#ma-page .as-promo {
  background: linear-gradient(90deg, var(--as-gold-deep), var(--as-gold), var(--as-gold-deep));
  color: var(--as-white);
  text-align: center;
  padding: 9px 16px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}
#ma-page .as-promo strong { font-weight: 800; }

#ma-page .as-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 245, 238, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--as-line);
  box-shadow: 0 2px 20px rgba(42, 31, 26, 0.04);
}
#ma-page .as-nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
#ma-page .as-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.32rem;
  letter-spacing: 0.02em;
  color: var(--as-ink);
  white-space: nowrap;
}
#ma-page .as-logo span { color: var(--as-gold-deep); }
#ma-page .as-logo small {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.52rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--as-mute);
  margin-left: 4px;
}
#ma-page .as-nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
#ma-page .as-nav-links a {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.96rem;
  color: var(--as-ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
#ma-page .as-nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--as-gold);
  transition: width 0.25s ease;
}
#ma-page .as-nav-links a:hover { color: var(--as-gold-deep); }
#ma-page .as-nav-links a:hover::after,
#ma-page .as-nav-links a.as-current::after { width: 100%; }
#ma-page .as-nav-links a.as-current { color: var(--as-gold-deep); }

#ma-page .as-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--as-ink);
  color: var(--as-cream);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
#ma-page .as-nav-cta:hover { transform: translateY(-2px); background: var(--as-gold-deep); }
#ma-page .as-nav-cta svg { width: 16px; height: 16px; fill: currentColor; }

#ma-page .as-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
#ma-page .as-burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--as-ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#ma-page .as-burger.as-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
#ma-page .as-burger.as-open span:nth-child(2) { opacity: 0; }
#ma-page .as-burger.as-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

#ma-page .as-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--as-cream);
  border-bottom: 1px solid var(--as-line);
  padding: 8px 24px 20px;
}
#ma-page .as-mobile-menu.as-open { display: flex; }
#ma-page .as-mobile-menu a {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--as-line);
}
#ma-page .as-mobile-menu a.as-current { color: var(--as-gold-deep); }
#ma-page .as-mobile-menu .as-nav-cta { margin-top: 16px; justify-content: center; }

/* =====================================================================
   CTA BUTTON
   ===================================================================== */
#ma-page .as-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  background: linear-gradient(135deg, var(--as-gold) 0%, var(--as-gold-deep) 100%);
  color: var(--as-white);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(156, 122, 69, 0.3), 0 2px 4px rgba(156, 122, 69, 0.2);
  overflow: hidden;
  text-align: center;
}
#ma-page .as-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s ease;
}
#ma-page .as-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(156, 122, 69, 0.4), 0 2px 4px rgba(156, 122, 69, 0.3);
}
#ma-page .as-cta:hover::before { left: 100%; }
#ma-page .as-cta-mini { padding: 14px 28px; font-size: 0.95rem; }
#ma-page .as-cta-ghost {
  background: transparent;
  color: var(--as-gold-deep);
  border: 1.5px solid var(--as-gold);
  box-shadow: none;
}
#ma-page .as-cta-ghost:hover { background: rgba(201, 160, 107, 0.08); box-shadow: none; }

/* =====================================================================
   HERO
   ===================================================================== */
#ma-page .as-hero {
  padding: 56px 0 80px;
  background:
    radial-gradient(circle at 80% 20%, rgba(232, 180, 176, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(201, 160, 107, 0.12) 0%, transparent 50%),
    var(--as-cream);
  position: relative;
  overflow: hidden;
}
#ma-page .as-hero::before {
  content: '';
  position: absolute;
  top: 8%;
  right: -80px;
  width: 280px;
  height: 280px;
  background: var(--as-gold-light);
  opacity: 0.3;
  border-radius: 50%;
  filter: blur(60px);
}
#ma-page .as-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
#ma-page .as-hero-text { text-align: left; }
#ma-page .as-hero-text h1 { text-align: left; margin: 18px 0 22px; }
#ma-page .as-hero-text h1 em {
  font-style: normal;
  color: var(--as-gold-deep);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
}
#ma-page .as-hero-sub {
  font-size: 1.12rem;
  color: var(--as-mute);
  margin-bottom: 28px;
  line-height: 1.55;
}
#ma-page .as-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
#ma-page .as-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--as-mute);
  font-weight: 600;
}
#ma-page .as-hero-trust span { display: inline-flex; align-items: center; gap: 6px; }
#ma-page .as-hero-trust .as-check { color: var(--as-gold-deep); font-weight: 800; }

#ma-page .as-hero-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--as-cream-dark), var(--as-pink-soft));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(42, 31, 26, 0.12);
}
#ma-page .as-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(201, 160, 107, 0.15), transparent 60%);
}
#ma-page .as-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
#ma-page .as-hero-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--as-ink);
  color: var(--as-white);
  padding: 14px 18px;
  border-radius: 999px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  z-index: 2;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transform: rotate(8deg);
}
#ma-page .as-hero-badge strong {
  display: block;
  font-size: 1.4rem;
  color: var(--as-gold-light);
  line-height: 1;
  margin-top: 2px;
}

/* =====================================================================
   SECTIONS
   ===================================================================== */
#ma-page .as-section { padding: 88px 0; position: relative; }
#ma-page .as-section-sm { padding: 64px 0; }
#ma-page .as-section-light { background: var(--as-white); }
#ma-page .as-section-cream { background: var(--as-cream); }
#ma-page .as-section-dark { background: var(--as-dark); color: var(--as-cream); }
#ma-page .as-section-dark h2 { color: var(--as-cream); }
#ma-page .as-section-dark p { color: rgba(250, 245, 238, 0.75); }

#ma-page .as-section-head { text-align: center; margin-bottom: 56px; }
#ma-page .as-section-head p {
  margin-top: 18px;
  font-size: 1.08rem;
  color: var(--as-mute);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

#ma-page .as-problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
#ma-page .as-problem-card {
  background: var(--as-cream);
  border: 1px solid var(--as-line);
  border-radius: 18px;
  padding: 28px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#ma-page .as-problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(42, 31, 26, 0.06);
}
#ma-page .as-problem-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--as-gold-light), var(--as-pink-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
#ma-page .as-problem-card h3 { text-align: left; font-size: 1.15rem; margin-bottom: 6px; }
#ma-page .as-problem-card p { color: var(--as-mute); font-size: 0.96rem; line-height: 1.5; }

/* =====================================================================
   EMPATHY
   ===================================================================== */
#ma-page .as-empathy { text-align: center; max-width: 720px; margin: 0 auto; }
#ma-page .as-empathy .as-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.4;
  color: var(--as-cream);
  margin-bottom: 28px;
}
#ma-page .as-empathy .as-quote::before { content: '« '; color: var(--as-gold); }
#ma-page .as-empathy .as-quote::after { content: ' »'; color: var(--as-gold); }
#ma-page .as-empathy p { font-size: 1.08rem; color: rgba(250, 245, 238, 0.8); line-height: 1.6; }

/* =====================================================================
   RANGE PRESENTATION + PRODUITS
   ===================================================================== */
#ma-page .as-range-hero {
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 56px;
  background: linear-gradient(135deg, var(--as-cream-dark), var(--as-pink-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(42, 31, 26, 0.1);
}
#ma-page .as-range-hero img { width: 100%; height: 100%; object-fit: cover; }

#ma-page .as-product-list { display: flex; flex-direction: column; gap: 28px; }
#ma-page .as-product {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
  background: var(--as-white);
  border: 1px solid var(--as-line);
  border-radius: 24px;
  padding: 32px;
  transition: box-shadow 0.4s ease;
}
#ma-page .as-product:hover { box-shadow: 0 20px 40px rgba(42, 31, 26, 0.08); }
#ma-page .as-product:nth-child(even) { grid-template-columns: 1.3fr 1fr; }
#ma-page .as-product:nth-child(even) .as-product-img-col { order: 2; }

#ma-page .as-product-img-col {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--as-cream), var(--as-cream-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#ma-page .as-product-img-col img { width: 100%; height: 100%; object-fit: cover; }
#ma-page .as-product-num {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  background: var(--as-ink);
  color: var(--as-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.1rem;
  z-index: 2;
}
#ma-page .as-product-info .as-product-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--as-gold-deep);
  margin-bottom: 12px;
}
#ma-page .as-product-info h3 { text-align: left; margin-bottom: 14px; font-size: clamp(1.3rem, 2.4vw, 1.65rem); }
#ma-page .as-product-info p { color: var(--as-mute); margin-bottom: 18px; line-height: 1.55; }
#ma-page .as-product-bullets { display: flex; flex-direction: column; gap: 10px; }
#ma-page .as-product-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.97rem;
  color: var(--as-ink);
  font-weight: 600;
}
#ma-page .as-product-bullets li::before {
  content: '✓';
  color: var(--as-gold-deep);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: -1px;
}
#ma-page .as-product-info .as-cta { margin-top: 22px; }

/* =====================================================================
   BOUTIQUE (grille de produits)
   ===================================================================== */
#ma-page .as-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
#ma-page .as-shop-grid.as-cols-2 { grid-template-columns: repeat(2, 1fr); }
#ma-page .as-shop-card {
  display: flex;
  flex-direction: column;
  background: var(--as-white);
  border: 1px solid var(--as-line);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#ma-page .as-shop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(42, 31, 26, 0.10);
}
#ma-page .as-shop-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--as-cream), var(--as-cream-dark));
  position: relative;
  overflow: hidden;
}
#ma-page .as-shop-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
#ma-page .as-shop-card:hover .as-shop-media img { transform: scale(1.05); }
#ma-page .as-shop-flag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--as-ink);
  color: var(--as-gold-light);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}
#ma-page .as-shop-flag.as-flag-pink { background: var(--as-pink); color: var(--as-ink); }
#ma-page .as-shop-body { padding: 24px 22px 26px; display: flex; flex-direction: column; flex: 1; }
#ma-page .as-shop-cat {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--as-gold-deep);
  margin-bottom: 8px;
}
#ma-page .as-shop-body h3 { text-align: left; font-size: 1.25rem; margin-bottom: 8px; }
#ma-page .as-shop-body p { color: var(--as-mute); font-size: 0.92rem; line-height: 1.5; margin-bottom: 18px; }
#ma-page .as-shop-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
#ma-page .as-shop-price {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--as-ink);
  line-height: 1;
}
#ma-page .as-shop-price small {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--as-mute);
  text-decoration: line-through;
  margin-top: 3px;
}
#ma-page .as-shop-price .as-cur { font-size: 0.62em; margin-left: 3px; color: var(--as-gold-deep); }
#ma-page .as-shop-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--as-gold-deep);
  white-space: nowrap;
}
#ma-page .as-shop-link::after { content: '→'; transition: transform 0.2s ease; }
#ma-page .as-shop-card:hover .as-shop-link::after { transform: translateX(4px); }

/* Bandeau catégories (accueil) */
#ma-page .as-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
#ma-page .as-cat-tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;
  color: var(--as-cream);
  box-shadow: 0 18px 40px rgba(42, 31, 26, 0.10);
}
#ma-page .as-cat-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
#ma-page .as-cat-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(31, 22, 18, 0.82) 100%);
}
#ma-page .as-cat-tile .as-cat-label {
  position: relative;
  z-index: 2;
  padding: 26px 24px;
  width: 100%;
}
#ma-page .as-cat-tile h3 { color: var(--as-cream); text-align: left; font-size: 1.35rem; }
#ma-page .as-cat-tile span {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--as-gold-light);
}

/* =====================================================================
   PAGE PRODUIT (fiche isolée)
   ===================================================================== */
#ma-page .as-pd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
#ma-page .as-pd-gallery { position: sticky; top: 92px; }
#ma-page .as-pd-main {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--as-cream-dark), var(--as-pink-soft));
  box-shadow: 0 30px 60px rgba(42, 31, 26, 0.12);
  position: relative;
}
#ma-page .as-pd-main img { width: 100%; height: 100%; object-fit: cover; }
#ma-page .as-pd-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--as-pink);
  color: var(--as-ink);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  padding: 9px 16px;
  border-radius: 999px;
  z-index: 2;
}
#ma-page .as-pd-info { text-align: left; }
#ma-page .as-pd-info .as-eyebrow { margin-bottom: 16px; }
#ma-page .as-pd-info h1 { text-align: left; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 8px; }
#ma-page .as-pd-vol { color: var(--as-mute); font-weight: 700; font-size: 0.95rem; margin-bottom: 20px; }
#ma-page .as-pd-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--as-mute);
  font-weight: 600;
}
#ma-page .as-stars { color: var(--as-gold); letter-spacing: 2px; font-size: 1rem; }
#ma-page .as-pd-lead { font-size: 1.1rem; color: var(--as-ink); line-height: 1.6; margin-bottom: 24px; }
#ma-page .as-pd-bullets { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
#ma-page .as-pd-bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--as-ink);
  font-weight: 600;
}
#ma-page .as-pd-bullets li::before {
  content: '✓';
  color: var(--as-white);
  background: var(--as-gold);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}
#ma-page .as-pd-buy {
  background: var(--as-white);
  border: 1px solid var(--as-line);
  border-radius: 20px;
  padding: 26px 26px 28px;
  box-shadow: 0 16px 40px rgba(42, 31, 26, 0.06);
}
#ma-page .as-pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
#ma-page .as-pd-price {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--as-ink);
  line-height: 1;
}
#ma-page .as-pd-price .as-cur { font-size: 0.42em; color: var(--as-gold-deep); margin-left: 4px; }
#ma-page .as-pd-old { font-size: 1rem; color: var(--as-mute); text-decoration: line-through; font-weight: 700; }
#ma-page .as-pd-save { color: var(--as-gold-deep); font-weight: 800; font-size: 0.9rem; margin-bottom: 20px; }
#ma-page .as-pd-buy .as-cta { width: 100%; }
#ma-page .as-pd-buy .as-pd-reassure {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--as-mute);
  text-align: center;
  line-height: 1.5;
}
#ma-page .as-pd-reassure strong { color: var(--as-ink); }

/* Étapes d'utilisation */
#ma-page .as-howto {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: as-howto;
}
#ma-page .as-howto-card {
  background: var(--as-white);
  border: 1px solid var(--as-line);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: left;
  counter-increment: as-howto;
  position: relative;
}
#ma-page .as-howto-card::before {
  content: counter(as-howto);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--as-gold-light), var(--as-pink-soft));
  color: var(--as-gold-deep);
  border-radius: 12px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.15rem;
}
#ma-page .as-howto-card h4 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; }
#ma-page .as-howto-card p { color: var(--as-mute); font-size: 0.94rem; line-height: 1.5; }

/* =====================================================================
   GIFTS
   ===================================================================== */
#ma-page .as-gifts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
#ma-page .as-gift-card {
  background: var(--as-cream);
  border-radius: 18px;
  padding: 26px 18px;
  text-align: center;
  border: 1px solid var(--as-line);
  transition: transform 0.3s ease;
}
#ma-page .as-gift-card:hover { transform: translateY(-3px); }
#ma-page .as-gift-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--as-pink-soft), var(--as-gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
#ma-page .as-gift-card h4 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
#ma-page .as-gift-card p { font-size: 0.82rem; color: var(--as-mute); line-height: 1.4; }
#ma-page .as-gifts-banner {
  margin-top: 32px;
  text-align: center;
  background: var(--as-ink);
  color: var(--as-cream);
  padding: 22px 24px;
  border-radius: 18px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
}
#ma-page .as-gifts-banner strong { color: var(--as-gold-light); font-weight: 900; font-style: normal; }

/* =====================================================================
   TESTIMONIALS MARQUEE (vidéos)
   ===================================================================== */
#ma-page .as-marquee { overflow: hidden; position: relative; padding: 40px 0 60px; background: var(--as-cream); }
#ma-page .as-marquee::before,
#ma-page .as-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
#ma-page .as-marquee::before { left: 0; background: linear-gradient(90deg, var(--as-cream), transparent); }
#ma-page .as-marquee::after { right: 0; background: linear-gradient(-90deg, var(--as-cream), transparent); }
#ma-page .as-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: as-marquee-scroll 80s linear infinite;
}
#ma-page .as-marquee:hover .as-marquee-track,
#ma-page .as-marquee-track.as-paused { animation-play-state: paused; }
@keyframes as-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
#ma-page .as-vid-card {
  flex-shrink: 0;
  width: 240px;
  aspect-ratio: 9 / 16;
  background: var(--as-dark);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 40px rgba(42, 31, 26, 0.16);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#ma-page .as-vid-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(42, 31, 26, 0.22); }
#ma-page .as-vid-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
#ma-page .as-vid-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
  z-index: 1;
}
#ma-page .as-vid-sound {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(31, 22, 18, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(250, 245, 238, 0.25);
  color: var(--as-cream);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 3;
  padding: 0;
  line-height: 1;
}
#ma-page .as-vid-sound:hover { background: var(--as-gold-deep); transform: scale(1.1); }
#ma-page .as-vid-card.as-playing .as-vid-sound { background: var(--as-gold); }

/* =====================================================================
   REVIEWS (avis texte)
   ===================================================================== */
#ma-page .as-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
#ma-page .as-review-card {
  background: var(--as-white);
  border: 1px solid var(--as-line);
  border-radius: 20px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  break-inside: avoid;
}
#ma-page .as-review-stars { color: var(--as-gold); letter-spacing: 2px; font-size: 1.05rem; }
#ma-page .as-review-card p {
  color: var(--as-ink);
  font-size: 0.98rem;
  line-height: 1.6;
  font-style: italic;
}
#ma-page .as-review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
#ma-page .as-review-ava {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--as-gold-light), var(--as-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  color: var(--as-ink);
  font-size: 1.05rem;
  flex-shrink: 0;
}
#ma-page .as-review-meta strong { display: block; font-weight: 800; font-size: 0.95rem; color: var(--as-ink); }
#ma-page .as-review-meta span { font-size: 0.82rem; color: var(--as-mute); }
#ma-page .as-review-verified { color: var(--as-gold-deep); font-weight: 800; font-size: 0.78rem; }

/* Résumé note */
#ma-page .as-rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: var(--as-white);
  border: 1px solid var(--as-line);
  border-radius: 24px;
  padding: 32px 40px;
  max-width: 720px;
  margin: 0 auto 48px;
}
#ma-page .as-rating-big {
  text-align: center;
}
#ma-page .as-rating-big .as-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 3.4rem;
  color: var(--as-ink);
  line-height: 1;
}
#ma-page .as-rating-big .as-stars { display: block; margin-top: 6px; font-size: 1.15rem; }
#ma-page .as-rating-big span.as-count { display: block; margin-top: 6px; font-size: 0.85rem; color: var(--as-mute); font-weight: 600; }
#ma-page .as-rating-bars { flex: 1; min-width: 240px; display: flex; flex-direction: column; gap: 7px; }
#ma-page .as-rating-bar { display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--as-mute); font-weight: 700; }
#ma-page .as-rating-bar .as-track { flex: 1; height: 8px; background: var(--as-cream-dark); border-radius: 999px; overflow: hidden; }
#ma-page .as-rating-bar .as-fill { height: 100%; background: linear-gradient(90deg, var(--as-gold), var(--as-gold-deep)); border-radius: 999px; }

/* =====================================================================
   OFFER (PRICING)
   ===================================================================== */
#ma-page .as-offer {
  background: linear-gradient(160deg, var(--as-ink) 0%, #3d2c25 100%);
  color: var(--as-cream);
  border-radius: 32px;
  padding: 56px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(42, 31, 26, 0.25);
}
#ma-page .as-offer::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--as-gold) 0%, transparent 70%);
  opacity: 0.25;
}
#ma-page .as-offer h2 { color: var(--as-cream); margin-bottom: 12px; }
#ma-page .as-offer-sub { color: rgba(250, 245, 238, 0.7); margin-bottom: 36px; font-size: 1.05rem; }
#ma-page .as-pricing-table {
  background: rgba(250, 245, 238, 0.04);
  border: 1px solid rgba(201, 160, 107, 0.25);
  border-radius: 18px;
  overflow: hidden;
  margin: 0 auto 36px;
  max-width: 580px;
  text-align: left;
  position: relative;
  z-index: 1;
}
#ma-page .as-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(201, 160, 107, 0.15);
  font-size: 0.96rem;
}
#ma-page .as-price-row:last-child { border-bottom: none; }
#ma-page .as-price-row span:first-child { color: rgba(250, 245, 238, 0.85); }
#ma-page .as-price-row span:last-child { font-weight: 700; color: var(--as-cream); }
#ma-page .as-price-row.as-total {
  background: rgba(201, 160, 107, 0.1);
  padding: 18px 22px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.15rem;
}
#ma-page .as-price-row.as-total span:last-child {
  text-decoration: line-through;
  color: rgba(250, 245, 238, 0.5);
  font-weight: 700;
}
#ma-page .as-final-price { font-family: 'Playfair Display', serif; font-weight: 900; margin: 28px 0 8px; }
#ma-page .as-final-price .as-fp-label {
  display: block;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--as-gold-light);
  font-weight: 800;
  margin-bottom: 4px;
  font-family: 'Nunito', sans-serif;
  font-style: normal;
}
#ma-page .as-final-price .as-fp-amount {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  color: var(--as-gold-light);
  line-height: 1;
  display: inline-block;
}
#ma-page .as-final-price .as-fp-currency { font-size: 0.5em; margin-left: 6px; color: var(--as-cream); }
#ma-page .as-savings { color: var(--as-gold-light); font-weight: 700; margin-bottom: 28px; font-size: 1rem; }

/* =====================================================================
   STEPS
   ===================================================================== */
#ma-page .as-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: as-step; }
#ma-page .as-step {
  text-align: center;
  padding: 32px 20px;
  background: var(--as-cream);
  border-radius: 18px;
  border: 1px solid var(--as-line);
  counter-increment: as-step;
  position: relative;
}
#ma-page .as-step::before {
  content: counter(as-step);
  display: block;
  width: 52px;
  height: 52px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--as-gold), var(--as-gold-deep));
  color: var(--as-white);
  border-radius: 50%;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 52px;
  box-shadow: 0 8px 16px rgba(156, 122, 69, 0.25);
}
#ma-page .as-step h4 { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.15rem; margin-bottom: 10px; }
#ma-page .as-step p { font-size: 0.94rem; color: var(--as-mute); line-height: 1.5; }

/* =====================================================================
   FAQ
   ===================================================================== */
#ma-page .as-faq { max-width: 780px; margin: 0 auto; }
#ma-page .as-faq-item {
  background: var(--as-white);
  border: 1px solid var(--as-line);
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
#ma-page .as-faq-item[open] { box-shadow: 0 12px 28px rgba(42, 31, 26, 0.06); border-color: var(--as-gold); }
#ma-page .as-faq-item summary {
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--as-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
#ma-page .as-faq-item summary::-webkit-details-marker { display: none; }
#ma-page .as-faq-item summary::after {
  content: '+';
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--as-gold-deep);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
#ma-page .as-faq-item[open] summary::after { transform: rotate(45deg); }
#ma-page .as-faq-item .as-faq-body { padding: 0 26px 22px; color: var(--as-mute); line-height: 1.6; font-size: 0.98rem; }

/* =====================================================================
   FINAL CTA
   ===================================================================== */
#ma-page .as-final {
  text-align: center;
  padding: 72px 24px 96px;
  background: linear-gradient(180deg, var(--as-cream), var(--as-cream-dark));
}
#ma-page .as-final h2 { margin-bottom: 18px; }
#ma-page .as-final p {
  font-size: 1.08rem;
  color: var(--as-mute);
  max-width: 580px;
  margin: 0 auto 32px;
  line-height: 1.55;
}

/* =====================================================================
   FOOTER
   ===================================================================== */
#ma-page .as-footer {
  background: var(--as-dark);
  color: rgba(250, 245, 238, 0.72);
  padding: 64px 0 32px;
}
#ma-page .as-footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
}
#ma-page .as-footer .as-logo { color: var(--as-cream); font-size: 1.5rem; margin-bottom: 14px; }
#ma-page .as-footer .as-logo span { color: var(--as-gold); }
#ma-page .as-footer-about { font-size: 0.94rem; line-height: 1.6; max-width: 340px; }
#ma-page .as-footer h4 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--as-gold-light);
  margin-bottom: 18px;
}
#ma-page .as-footer-links { display: flex; flex-direction: column; gap: 12px; }
#ma-page .as-footer-links a { font-size: 0.94rem; transition: color 0.2s ease; }
#ma-page .as-footer-links a:hover { color: var(--as-cream); }
#ma-page .as-footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--as-wa);
  color: var(--as-white);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 12px 20px;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease;
}
#ma-page .as-footer-wa:hover { background: var(--as-wa-dark); transform: translateY(-2px); }
#ma-page .as-footer-wa svg { width: 18px; height: 18px; fill: currentColor; }
#ma-page .as-footer-bottom {
  max-width: 1160px;
  margin: 48px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(201, 160, 107, 0.2);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(250, 245, 238, 0.5);
}

/* =====================================================================
   STICKY BOTTOM BAR (pages de vente)
   ===================================================================== */
#ma-page .as-bottombar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 55;
  background: var(--as-ink);
  color: var(--as-cream);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}
#ma-page .as-bottombar-text { font-size: 0.92rem; font-weight: 700; }
#ma-page .as-bottombar-text strong {
  color: var(--as-gold-light);
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.05rem;
  margin-right: 8px;
}
#ma-page .as-bottombar-text span {
  text-decoration: line-through;
  color: rgba(250, 245, 238, 0.5);
  font-size: 0.85rem;
  margin-left: 6px;
  font-weight: 600;
}

/* =====================================================================
   POPUP + FORMULAIRE
   ===================================================================== */
#ma-page .as-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#ma-page .as-popup.as-open { display: flex; }
#ma-page .as-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 22, 18, 0.78);
  backdrop-filter: blur(4px);
  animation: as-fade-in 0.3s ease;
}
#ma-page .as-popup-content {
  position: relative;
  background: var(--as-cream);
  border-radius: 24px;
  max-width: 520px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 40px 36px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  animation: as-pop-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes as-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes as-pop-in {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
#ma-page .as-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--as-cream-dark);
  color: var(--as-ink);
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.2s ease;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#ma-page .as-popup-close:hover { background: var(--as-gold-light); }
#ma-page .as-popup-content h3 { font-size: 1.65rem; text-align: center; margin-bottom: 8px; }
#ma-page .as-popup-content > p { text-align: center; color: var(--as-mute); margin-bottom: 28px; font-size: 0.96rem; }
#ma-page .as-popup-product {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--as-white);
  border: 1px solid var(--as-line);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 22px;
}
#ma-page .as-popup-product img { width: 54px; height: 54px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
#ma-page .as-popup-product strong { display: block; font-size: 0.96rem; color: var(--as-ink); }
#ma-page .as-popup-product span { font-size: 0.85rem; color: var(--as-gold-deep); font-weight: 800; }

#ma-page .as-form { display: flex; flex-direction: column; gap: 14px; }
#ma-page .as-form input,
#ma-page .as-form select,
#ma-page .as-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--as-line);
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.98rem;
  background: var(--as-white);
  color: var(--as-ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#ma-page .as-form textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
#ma-page .as-form input:focus,
#ma-page .as-form select:focus,
#ma-page .as-form textarea:focus {
  outline: none;
  border-color: var(--as-gold);
  box-shadow: 0 0 0 3px rgba(201, 160, 107, 0.15);
}
#ma-page .as-phone {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: var(--as-white);
  border: 1.5px solid var(--as-line);
  border-radius: 12px;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#ma-page .as-phone:focus-within { border-color: var(--as-gold); box-shadow: 0 0 0 3px rgba(201, 160, 107, 0.15); }
#ma-page .as-phone-country {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  background: var(--as-cream-dark);
  color: var(--as-ink);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.96rem;
  border: none;
  border-right: 1px solid var(--as-line);
  border-radius: 11px 0 0 11px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
  width: auto !important;
  flex-shrink: 0;
  flex-grow: 0;
}
#ma-page .as-phone-country:hover { background: var(--as-gold-light); }
#ma-page .as-phone-country .as-flag { font-size: 1.25rem; line-height: 1; }
#ma-page .as-phone-country .as-arrow {
  font-size: 0.65rem;
  opacity: 0.55;
  margin-left: 2px;
  transition: transform 0.2s ease;
}
#ma-page .as-phone-country.as-active .as-arrow { transform: rotate(180deg); }
#ma-page .as-phone input {
  flex: 1;
  border: none !important;
  border-radius: 0 !important;
  padding: 14px 14px;
  background: transparent;
  box-shadow: none !important;
  width: auto;
  min-width: 0;
  text-overflow: ellipsis;
}
#ma-page .as-phone input:focus { box-shadow: none !important; }
#ma-page .as-phone input::placeholder { color: var(--as-mute); opacity: 1; font-weight: 500; }
#ma-page .as-country-dd {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--as-white);
  border: 1.5px solid var(--as-line);
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(42, 31, 26, 0.15);
  z-index: 200;
  flex-direction: column;
  max-height: 280px;
  overflow: hidden;
}
#ma-page .as-country-dd.as-open { display: flex; }
#ma-page .as-country-search {
  padding: 11px 14px !important;
  border: none !important;
  border-bottom: 1px solid var(--as-line) !important;
  border-radius: 0 !important;
  font-size: 0.92rem !important;
  background: var(--as-cream) !important;
  width: 100%;
  margin: 0 !important;
}
#ma-page .as-country-search:focus { box-shadow: none !important; border-bottom-color: var(--as-gold) !important; }
#ma-page .as-country-list { flex: 1; overflow-y: auto; padding: 6px 0; }
#ma-page .as-country-opt {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 10px 14px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 0.93rem;
  color: var(--as-ink);
  text-align: left;
  transition: background 0.15s ease;
}
#ma-page .as-country-opt:hover { background: var(--as-cream); }
#ma-page .as-country-opt.as-selected { background: var(--as-cream); }
#ma-page .as-country-opt .as-flag { font-size: 1.25rem; line-height: 1; }
#ma-page .as-country-opt .as-name { flex: 1; font-weight: 600; }
#ma-page .as-country-opt .as-code { color: var(--as-gold-deep); font-weight: 800; font-size: 0.88rem; }
#ma-page .as-country-empty { padding: 18px 14px; text-align: center; color: var(--as-mute); font-size: 0.88rem; font-style: italic; }
#ma-page .as-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239C7A45' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
#ma-page .as-form > button[type="submit"] { margin-top: 8px; width: 100%; }
#ma-page .as-form-trust { margin-top: 14px; font-size: 0.78rem; color: var(--as-mute); text-align: center; line-height: 1.4; }

/* =====================================================================
   SCROLL ANIMATIONS
   ===================================================================== */
#ma-page .as-fade { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
#ma-page .as-fade.as-in { opacity: 1; transform: translateY(0); }

/* =====================================================================
   LOOP ANIMATIONS (images flottantes)
   ===================================================================== */
@keyframes as-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes as-float-soft { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes as-pulse-badge { 0%, 100% { transform: rotate(8deg) scale(1); } 50% { transform: rotate(8deg) scale(1.06); } }
@keyframes as-glow {
  0%, 100% { box-shadow: 0 30px 60px rgba(42, 31, 26, 0.12), 0 0 0 0 rgba(201, 160, 107, 0); }
  50%      { box-shadow: 0 30px 60px rgba(42, 31, 26, 0.18), 0 0 60px 6px rgba(201, 160, 107, 0.18); }
}
#ma-page .as-hero-img img { animation: as-float 6s ease-in-out infinite; }
#ma-page .as-hero-img { animation: as-glow 6s ease-in-out infinite; }
#ma-page .as-hero-badge { animation: as-pulse-badge 2.6s ease-in-out infinite; }
#ma-page .as-range-hero img { animation: as-float 7s ease-in-out infinite; }
#ma-page .as-pd-main img { animation: as-float-soft 6s ease-in-out infinite; }
#ma-page .as-product-img-col img { animation: as-float-soft 5s ease-in-out infinite; }
#ma-page .as-product:nth-child(1) .as-product-img-col img { animation-delay: 0s; }
#ma-page .as-product:nth-child(2) .as-product-img-col img { animation-delay: 0.8s; }
#ma-page .as-product:nth-child(3) .as-product-img-col img { animation-delay: 1.6s; }
#ma-page .as-product:nth-child(4) .as-product-img-col img { animation-delay: 0.4s; }
#ma-page .as-product:nth-child(5) .as-product-img-col img { animation-delay: 1.2s; }
#ma-page .as-gift-icon { animation: as-float-soft 4s ease-in-out infinite; }
#ma-page .as-gift-card:nth-child(1) .as-gift-icon { animation-delay: 0s; }
#ma-page .as-gift-card:nth-child(2) .as-gift-icon { animation-delay: 0.5s; }
#ma-page .as-gift-card:nth-child(3) .as-gift-icon { animation-delay: 1s; }
#ma-page .as-gift-card:nth-child(4) .as-gift-icon { animation-delay: 1.5s; }

@media (prefers-reduced-motion: reduce) {
  #ma-page .as-hero-img img,
  #ma-page .as-hero-img,
  #ma-page .as-hero-badge,
  #ma-page .as-range-hero img,
  #ma-page .as-pd-main img,
  #ma-page .as-product-img-col img,
  #ma-page .as-gift-icon,
  #ma-page .as-marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* =====================================================================
   MOBILE RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  #ma-page .as-nav-links { display: none; }
  #ma-page .as-nav .as-nav-cta { display: none; }
  #ma-page .as-burger { display: flex; }
  #ma-page .as-pd { grid-template-columns: 1fr; gap: 32px; }
  #ma-page .as-pd-gallery { position: static; }
  #ma-page .as-shop-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  #ma-page .as-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  #ma-page .as-cats { grid-template-columns: 1fr 1fr; }
  #ma-page .as-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  #ma-page .as-hero { padding: 40px 0 60px; }
  #ma-page .as-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  #ma-page .as-hero-text { text-align: center; }
  #ma-page .as-hero-text h1 { text-align: center; }
  #ma-page .as-hero-cta-row { justify-content: center; }
  #ma-page .as-hero-trust { justify-content: center; }
  #ma-page .as-section { padding: 64px 0; }
  #ma-page .as-section-head { margin-bottom: 40px; }
  #ma-page .as-problems-grid { grid-template-columns: 1fr; }
  #ma-page .as-product,
  #ma-page .as-product:nth-child(even) { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  #ma-page .as-product:nth-child(even) .as-product-img-col { order: 0; }
  #ma-page .as-product-info h3 { text-align: center; }
  #ma-page .as-product-info p { text-align: center; }
  #ma-page .as-product-info .as-cta { align-self: center; }
  #ma-page .as-gifts-grid { grid-template-columns: repeat(2, 1fr); }
  #ma-page .as-steps { grid-template-columns: 1fr; }
  #ma-page .as-howto { grid-template-columns: 1fr; }
  #ma-page .as-offer { padding: 40px 24px; border-radius: 24px; }
  #ma-page .as-bottombar { flex-direction: column; gap: 10px; padding: 12px 16px; }
  #ma-page .as-bottombar .as-cta { width: 100%; padding: 14px 22px; }
  #ma-page.has-bottombar { padding-bottom: 130px; }
  #ma-page .as-popup-content { padding: 32px 24px; }
  #ma-page .as-vid-card { width: 210px; }
  #ma-page .as-rating-summary { padding: 26px 24px; gap: 22px; }
}

@media (max-width: 540px) {
  #ma-page h1 { font-size: 2.2rem; }
  #ma-page h2 { font-size: 1.7rem; }
  #ma-page .as-cta { padding: 16px 28px; font-size: 1rem; }
  #ma-page .as-hero-badge { top: 16px; right: 16px; padding: 10px 14px; font-size: 0.7rem; }
  #ma-page .as-hero-badge strong { font-size: 1.1rem; }
  #ma-page .as-vid-card { width: 190px; }
  #ma-page .as-shop-grid { grid-template-columns: 1fr; }
  #ma-page .as-reviews-grid { grid-template-columns: 1fr; }
  #ma-page .as-cats { grid-template-columns: 1fr; }
  #ma-page .as-footer-grid { grid-template-columns: 1fr; }
}
