/* =====================================================
   COUP D'FOLIES — FEUILLE DE STYLE PRINCIPALE
   ===================================================== */

/* Google Fonts - importées via HTML */

:root {
  --pink:         #d4789a;
  --pink-light:   #f5e0ea;
  --pink-dark:    #b85878;
  --gold:         #c4a05a;
  --gold-light:   #e8d4a0;
  --dark:         #1a1a1a;
  --dark-2:       #2c2c2c;
  --white:        #ffffff;
  --light-bg:     #faf8f5;
  --light-bg-2:   #f2ede8;
  --text:         #2c2c2c;
  --text-light:   #888888;
  --text-muted:   #b0b0b0;
  --border:       #ebebeb;
  --border-dark:  #d0d0d0;

  --font-script: 'Dancing Script', cursive;
  --font-main:   'Raleway', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
  --max-width: 1400px;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-main);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }
input, select { font-family: inherit; }

/* =====================================================
   BARRE D'ANNONCE
   ===================================================== */
.announcement-bar {
  background: var(--dark);
  color: var(--white);
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.announcement-track {
  display: flex;
  gap: 100px;
  animation: scrollAnnounce 28s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}
.announcement-track span { flex-shrink: 0; }
.announcement-track strong { color: var(--gold-light); }
@keyframes scrollAnnounce {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================
   HEADER
   ===================================================== */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 var(--border);
}
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.header-side {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 180px;
}
.header-side--right { justify-content: flex-end; }

.logo {
  font-family: var(--font-script);
  font-size: 34px;
  color: var(--dark);
  letter-spacing: 0.01em;
  transition: var(--transition);
}
.logo:hover { color: var(--pink); }

/* Boutons icônes */
.icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  transition: var(--transition);
  position: relative;
  color: var(--dark);
}
.icon-btn:hover { background: var(--light-bg); color: var(--pink); }
.icon-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.cart-badge {
  position: absolute; top: 4px; right: 4px;
  background: var(--pink); color: var(--white);
  font-size: 10px; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 42px; height: 42px; align-items: center; justify-content: center;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   NAVIGATION DESKTOP
   ===================================================== */
.desktop-nav {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.desktop-nav > ul {
  display: flex; justify-content: center; align-items: stretch;
  max-width: var(--max-width); margin: 0 auto; padding: 0 40px;
}
.desktop-nav > ul > li { position: relative; }
.desktop-nav > ul > li > a {
  display: flex; align-items: center;
  padding: 14px 22px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dark); transition: var(--transition);
  position: relative; gap: 5px;
}
.desktop-nav > ul > li > a::after {
  content: ''; position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--pink);
  transition: width 0.3s ease;
}
.desktop-nav > ul > li:hover > a::after { width: calc(100% - 44px); }
.desktop-nav > ul > li:hover > a { color: var(--pink); }
.desktop-nav .nav-sale > a { color: var(--pink); }
.desktop-nav .nav-sale > a::after { background: var(--pink); }

/* Chevron nav */
.nav-chevron { width: 10px; height: 10px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform 0.3s ease; }
.desktop-nav > ul > li:hover .nav-chevron { transform: rotate(180deg); }

/* Mega menu */
.mega-menu {
  display: none;
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--pink);
  box-shadow: var(--shadow-lg);
  padding: 32px 36px;
  min-width: 680px;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; z-index: 200;
}
.has-mega:hover .mega-menu { display: grid; }
.mega-col h4 {
  font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.mega-col ul li a {
  display: block; font-size: 13px; color: var(--text);
  padding: 5px 0; transition: var(--transition);
}
.mega-col ul li a:hover { color: var(--pink); padding-left: 6px; }

/* Sous-menu simple */
.has-sub { position: relative; }
.submenu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--pink); box-shadow: var(--shadow-md);
  min-width: 200px; padding: 10px 0; z-index: 200;
}
.has-sub:hover .submenu { display: block; }
.submenu li a {
  display: block; padding: 9px 20px;
  font-size: 13px; color: var(--text);
  transition: var(--transition);
}
.submenu li a:hover { color: var(--pink); background: var(--light-bg); }

/* =====================================================
   MENU MOBILE
   ===================================================== */
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 1099;
  opacity: 0; transition: opacity 0.3s ease;
}
.mobile-overlay.active { display: block; opacity: 1; }
.mobile-menu {
  position: fixed; top: 0; left: -340px; width: 320px;
  height: 100vh; height: 100dvh; background: var(--white); z-index: 1100;
  overflow: hidden; transition: left 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.mobile-menu.active { left: 0; }

.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--border);
}
.mobile-menu-header .logo { font-size: 26px; }
.mobile-close { font-size: 26px; color: var(--text-light); line-height: 1; padding: 4px; }

.mobile-nav { flex: 1; overflow-y: auto; min-height: 0; }
.mobile-nav-item { border-bottom: 1px solid var(--border); }
.mobile-nav-link, .mobile-nav-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark);
  width: 100%; text-align: left;
}
.mobile-nav-link--sale { color: var(--pink); }
.mobile-toggle-icon {
  width: 16px; height: 16px; stroke: currentColor; fill: none;
  stroke-width: 2; transition: transform 0.3s ease;
}
.mobile-nav-toggle.open .mobile-toggle-icon { transform: rotate(180deg); }

.mobile-submenu { display: none; background: var(--light-bg); padding: 8px 0 16px; }
.mobile-submenu.open { display: block; }
.mobile-sub-group { padding: 14px 24px 0; }
.mobile-sub-group h5 {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.mobile-sub-group a {
  display: block; padding: 7px 0 7px 12px;
  font-size: 13px; color: var(--text-light);
  border-left: 2px solid transparent; transition: var(--transition);
}
.mobile-sub-group a:hover { color: var(--pink); border-left-color: var(--pink); }

.mobile-menu-footer {
  padding: 24px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 14px;
}
.mobile-menu-footer a {
  font-size: 13px; color: var(--text-light);
  display: flex; align-items: center; gap: 10px;
}
.mobile-menu-footer svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  position: relative;
  min-height: 88vh; max-height: 820px;
  background: var(--dark);
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1520 50%, #1a1a1a 100%);
}
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle, var(--pink) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-butterflies {
  position: absolute; inset: 0;
  overflow: hidden;
}
.butterfly-group { position: relative; width: 100%; height: 100%; }
.butterfly-group svg { position: absolute; opacity: 0.9; }

/* Animations papillons */
@keyframes floatBf1 { 0%,100%{transform:translate(0,0) rotate(-15deg)} 50%{transform:translate(-15px,-20px) rotate(-5deg)} }
@keyframes floatBf2 { 0%,100%{transform:translate(0,0) rotate(10deg)} 50%{transform:translate(12px,-15px) rotate(20deg)} }
@keyframes floatBf3 { 0%,100%{transform:translate(0,0) rotate(-5deg)} 50%{transform:translate(-8px,12px) rotate(5deg)} }
.bf1 { animation: floatBf1 6s ease-in-out infinite; }
.bf2 { animation: floatBf2 8s ease-in-out infinite; }
.bf3 { animation: floatBf3 7s ease-in-out infinite; }

.hero-content {
  position: relative; z-index: 2;
  padding: 80px 80px;
  max-width: 600px;
  color: var(--white);
}
.hero-tag {
  display: inline-block;
  background: var(--pink); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 6px 18px; margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-script);
  font-size: 78px; line-height: 1;
  color: var(--white); margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.9);
}
.hero-subtitle {
  font-size: 14px; font-weight: 300;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 8px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}
.hero-discount {
  font-size: 100px; font-weight: 700; line-height: 1;
  color: var(--white); margin-bottom: 32px;
  display: flex; align-items: baseline; gap: 4px;
}
.hero-discount sup { font-size: 40px; }

/* =====================================================
   BOUTONS
   ===================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 36px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: var(--transition); cursor: pointer;
  border: 2px solid transparent;
}
.btn-white {
  background: var(--white); color: var(--dark); border-color: var(--white);
}
.btn-white:hover { background: transparent; color: var(--white); }
.btn-pink {
  background: var(--pink); color: var(--white); border-color: var(--pink);
}
.btn-pink:hover { background: var(--pink-dark); border-color: var(--pink-dark); }
.btn-dark {
  background: var(--dark); color: var(--white); border-color: var(--dark);
}
.btn-dark:hover { background: var(--pink); border-color: var(--pink); }
.btn-outline {
  background: transparent; color: var(--dark); border-color: var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--white); }
.btn-outline-pink {
  background: transparent; color: var(--pink); border-color: var(--pink);
}
.btn-outline-pink:hover { background: var(--pink); color: var(--white); }
.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* =====================================================
   GRILLE CATÉGORIES
   ===================================================== */
.category-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; padding: 40px;
  max-width: var(--max-width); margin: 0 auto;
}
.category-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; cursor: pointer;
  background: var(--light-bg-2);
}
.category-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img { transform: scale(1.06); }
.category-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.75) 0%, rgba(26,26,26,0) 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px;
}
.category-tag {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin-bottom: 6px;
}
.category-name {
  font-size: 24px; font-weight: 700; color: var(--white);
  margin-bottom: 16px; line-height: 1.2;
}
.category-btn {
  display: inline-block; padding: 10px 20px;
  background: var(--white); color: var(--dark);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  align-self: flex-start; transition: var(--transition);
}
.category-card:hover .category-btn { background: var(--pink); color: var(--white); }

/* =====================================================
   TITRE DE SECTION
   ===================================================== */
.section-header {
  text-align: center; margin-bottom: 40px;
}
.section-header h2 {
  font-family: var(--font-script);
  font-size: 46px; color: var(--dark); margin-bottom: 8px;
}
.section-header p {
  font-size: 13px; color: var(--text-light);
  letter-spacing: 0.06em;
}
.section-header .ornament {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 8px;
}
.section-header .ornament::before,
.section-header .ornament::after {
  content: ''; flex: 1; max-width: 80px; height: 1px; background: var(--border-dark);
}

/* =====================================================
   CARTES PRODUITS
   ===================================================== */
.product-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}

.product-card { position: relative; }
.product-card-image {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4; background: var(--light-bg); margin-bottom: 14px;
}
.product-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.04); }

/* Badge */
.product-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; z-index: 2; color: var(--white);
}
.product-badge--new { background: var(--dark); }
.product-badge--sale { background: var(--pink); }
.product-badge--last { background: var(--gold); }

/* Wishlist */
.product-wishlist {
  position: absolute; top: 12px; right: 12px;
  width: 38px; height: 38px; background: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); z-index: 2; transition: var(--transition);
  opacity: 0;
}
.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist svg {
  width: 16px; height: 16px; stroke: var(--text-light); fill: none;
  stroke-width: 1.5; transition: var(--transition);
}
.product-wishlist.active svg,
.product-wishlist:hover svg { stroke: var(--pink); fill: var(--pink); }

/* Ajout panier (hover) */
.product-add {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--dark); color: var(--white);
  text-align: center; padding: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  transform: translateY(100%); transition: transform 0.3s ease;
  cursor: pointer;
}
.product-card:hover .product-add { transform: translateY(0); }
.product-add:hover { background: var(--pink); }

.product-colors { display: flex; gap: 6px; margin-bottom: 8px; }
.color-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.08);
}
.product-name { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 6px; line-height: 1.4; }
.product-price { display: flex; align-items: center; gap: 8px; }
.price-now { font-size: 15px; font-weight: 700; color: var(--dark); }
.price-was { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.price-sale { color: var(--pink) !important; }

/* =====================================================
   SECTIONS GENERIQUES
   ===================================================== */
.section { padding: 60px 40px; max-width: var(--max-width); margin: 0 auto; }
.section--bg { background: var(--light-bg); }

/* =====================================================
   SCROLL HORIZONTAL (Best-sellers)
   ===================================================== */
.hscroll-wrapper {
  padding: 0 40px 60px; max-width: var(--max-width); margin: 0 auto;
}
.hscroll {
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; cursor: grab;
}
.hscroll::-webkit-scrollbar { display: none; }
.hscroll:active { cursor: grabbing; }
.hscroll-track { display: flex; gap: 20px; padding-bottom: 4px; }
.hscroll-track .product-card { flex-shrink: 0; width: 240px; }

/* Petite grille (2 produits) */
.product-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* =====================================================
   SECTION JOURNAL / BLOG
   ===================================================== */
.journal-section {
  background: var(--light-bg); padding: 70px 40px;
}
.journal-inner { max-width: var(--max-width); margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.blog-card { background: var(--white); overflow: hidden; transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-img { aspect-ratio: 3/2; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 22px; }
.blog-cat {
  font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--pink); margin-bottom: 8px;
}
.blog-card-body h3 { font-size: 16px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 10px; }
.blog-card-body p { font-size: 13px; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.blog-more {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dark); display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.blog-more svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; transition: transform 0.3s ease; }
.blog-more:hover { color: var(--pink); }
.blog-more:hover svg { transform: translateX(4px); }

/* =====================================================
   NEWSLETTER
   ===================================================== */
.newsletter {
  background: var(--dark); color: var(--white);
  padding: 80px 40px; text-align: center;
}
.newsletter h2 { font-family: var(--font-script); font-size: 52px; margin-bottom: 12px; }
.newsletter p { font-size: 13px; color: rgba(255,255,255,0.65); letter-spacing: 0.06em; margin-bottom: 36px; }
.newsletter-form { display: flex; max-width: 480px; margin: 0 auto; }
.newsletter-form input {
  flex: 1; padding: 15px 20px;
  font-size: 13px; border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08); color: var(--white);
  outline: none; transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { border-color: var(--pink); background: rgba(255,255,255,0.12); }
.newsletter-form button {
  padding: 15px 30px; background: var(--pink);
  color: var(--white); font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: var(--transition); border: 1px solid var(--pink);
}
.newsletter-form button:hover { background: var(--pink-dark); }
.newsletter-small { font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 14px; }

/* =====================================================
   FOOTER
   ===================================================== */
footer { background: var(--light-bg); border-top: 1px solid var(--border); }
.footer-main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding: 60px 40px 40px;
  max-width: var(--max-width); margin: 0 auto;
}
.footer-brand .logo { font-size: 38px; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--text-light); line-height: 1.8; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light); transition: var(--transition);
}
.social-link:hover { background: var(--pink); border-color: var(--pink); color: var(--white); }
.social-link svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dark); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--text-light); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--pink); }
.footer-col .contact-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-light); margin-bottom: 10px;
}
.footer-col .contact-item svg { width: 15px; height: 15px; stroke: var(--pink); fill: none; stroke-width: 1.5; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-width); margin: 0 auto;
}
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.payment-icons { display: flex; gap: 8px; align-items: center; }
.payment-icon {
  background: var(--white); border: 1px solid var(--border);
  padding: 4px 12px; border-radius: 4px;
  font-size: 11px; font-weight: 700; color: var(--text-light);
}

/* =====================================================
   PAGE HEADER / BREADCRUMB
   ===================================================== */
.page-header {
  background: var(--light-bg); padding: 48px 40px;
  text-align: center; border-bottom: 1px solid var(--border);
}
.page-header h1 { font-family: var(--font-script); font-size: 52px; color: var(--dark); margin-bottom: 10px; }
.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12px; color: var(--text-muted);
}
.breadcrumb a { color: var(--text-light); transition: var(--transition); }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb span { color: var(--text-muted); }

/* =====================================================
   PAGE CATALOGUE
   ===================================================== */
.catalogue-layout {
  display: flex; gap: 40px; padding: 40px;
  max-width: var(--max-width); margin: 0 auto;
}

/* Sidebar filtres */
.filters-sidebar { width: 230px; flex-shrink: 0; }
.filter-section { border-bottom: 1px solid var(--border); padding: 22px 0; }
.filter-section:first-child { padding-top: 0; }
.filter-toggle {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dark); margin-bottom: 16px; cursor: pointer;
}
.filter-toggle svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; transition: transform 0.3s ease; }
.filter-toggle.collapsed svg { transform: rotate(-90deg); }

/* Checkbox custom */
.filter-options { display: flex; flex-direction: column; gap: 10px; }
.filter-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text); cursor: pointer;
}
.filter-label input[type="checkbox"] { display: none; }
.checkmark {
  width: 17px; height: 17px; border: 1.5px solid var(--border-dark);
  border-radius: 2px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.filter-label input:checked + .checkmark { background: var(--pink); border-color: var(--pink); }
.filter-label input:checked + .checkmark::after {
  content: ''; width: 9px; height: 5px;
  border: 2px solid white; border-top: none; border-right: none;
  transform: rotate(-45deg) translateY(-1px); display: block;
}
.filter-count { font-size: 11px; color: var(--text-muted); margin-left: auto; }

/* Filter groups hiérarchiques */
.filter-group { display: flex; flex-direction: column; gap: 0; }
.filter-group-header { display: flex; align-items: center; justify-content: space-between; }
.filter-group-label { font-weight: 600; flex: 1; }
.filter-group-toggle {
  background: none; border: none; padding: 2px 0 2px 8px;
  cursor: pointer; display: flex; align-items: center; flex-shrink: 0;
}
.filter-group-toggle svg {
  width: 13px; height: 13px; stroke: var(--text-muted); fill: none;
  stroke-width: 2; transition: transform 0.25s ease;
}
.filter-group--open .filter-group-toggle svg { transform: rotate(180deg); }
.filter-group-sub { display: none; flex-direction: column; gap: 8px; padding-left: 20px; padding-top: 8px; }
.filter-group--open .filter-group-sub { display: flex; }
.filter-label--sub { font-size: 12px; color: var(--text-light); }
.filter-label--sub:hover { color: var(--dark); }

/* Tailles */
.sizes-grid { display: flex; flex-wrap: wrap; gap: 7px; }
.size-pill {
  padding: 6px 12px; border: 1px solid var(--border);
  font-size: 12px; color: var(--text); cursor: pointer; transition: var(--transition);
}
.size-pill:hover, .size-pill.active { border-color: var(--dark); background: var(--dark); color: var(--white); }

/* Couleurs */
.colors-filter { display: flex; flex-wrap: wrap; gap: 8px; }
.color-filter-dot {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid transparent; cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1); transition: var(--transition);
}
.color-filter-dot.active, .color-filter-dot:hover { border-color: var(--dark); transform: scale(1.15); }

/* Prix */
.price-inputs { display: flex; align-items: center; gap: 8px; }
.price-inputs input {
  width: 75px; padding: 8px 10px; border: 1px solid var(--border);
  font-size: 13px; text-align: center; outline: none;
}
.price-inputs input:focus { border-color: var(--pink); }
.price-inputs span { font-size: 12px; color: var(--text-muted); }

/* Main catalogue */
.catalogue-main { flex: 1; min-width: 0; }
.catalogue-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.catalogue-count { font-size: 13px; color: var(--text-light); }
.sort-select {
  padding: 9px 14px; border: 1px solid var(--border);
  font-size: 13px; color: var(--text); background: var(--white); outline: none; cursor: pointer;
}
.sort-select:focus { border-color: var(--pink); }

.catalogue-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 56px; }
.page-btn {
  width: 40px; height: 40px; border: 1px solid var(--border);
  font-size: 13px; font-family: inherit; color: var(--text);
  transition: var(--transition); display: flex; align-items: center; justify-content: center;
}
.page-btn.active, .page-btn:hover { background: var(--dark); border-color: var(--dark); color: var(--white); }
.page-btn svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* =====================================================
   PAGE PRODUIT
   ===================================================== */
.product-page {
  max-width: var(--max-width); margin: 0 auto; padding: 40px;
}
.product-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; margin-bottom: 70px;
}

/* Galerie images */
.product-gallery { display: flex; gap: 14px; }
.product-thumbs {
  display: flex; flex-direction: column; gap: 8px; width: 82px;
}
.product-thumb {
  width: 82px; height: 108px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer; transition: var(--transition);
}
.product-thumb.active, .product-thumb:hover { border-color: var(--dark); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-main-img {
  flex: 1; position: sticky; top: 100px; height: fit-content;
}
.product-main-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

/* Infos produit */
.product-info { height: fit-content; }
.product-cat {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.product-h1 {
  font-size: 28px; font-weight: 700; color: var(--dark);
  margin-bottom: 18px; line-height: 1.3;
}
.product-price-row {
  display: flex; align-items: baseline; gap: 14px; margin-bottom: 6px;
}
.product-price-now { font-size: 26px; font-weight: 700; color: var(--dark); }
.product-price-was { font-size: 17px; color: var(--text-muted); text-decoration: line-through; }
.product-price-badge {
  font-size: 12px; font-weight: 700; color: var(--white);
  background: var(--pink); padding: 4px 10px;
}
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 22px; }
.stars { display: flex; gap: 2px; }
.stars span { color: var(--gold); font-size: 14px; }
.rating-count { font-size: 12px; color: var(--text-muted); }

.divider { height: 1px; background: var(--border); margin: 20px 0; }

/* Sélecteur */
.selector-row { margin-bottom: 18px; }
.selector-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dark); margin-bottom: 12px; display: flex; gap: 6px; align-items: center;
}
.selector-val { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--text-light); }

/* Couleurs */
.color-options { display: flex; gap: 10px; }
.color-swatch {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid transparent; cursor: pointer;
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.08); transition: var(--transition);
}
.color-swatch.active, .color-swatch:hover { border-color: var(--dark); transform: scale(1.08); }

/* Tailles */
.size-options { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.size-opt {
  min-width: 50px; padding: 10px 14px;
  border: 1px solid var(--border); font-size: 13px; font-family: inherit;
  cursor: pointer; transition: var(--transition); text-align: center;
}
.size-opt:hover { border-color: var(--dark); }
.size-opt.active { background: var(--dark); border-color: var(--dark); color: var(--white); }
.size-opt.oos {
  color: var(--text-muted); cursor: not-allowed;
  position: relative; overflow: hidden;
}
.size-opt.oos::after {
  content: ''; position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: var(--text-muted); transform: rotate(-8deg);
}
.size-guide { font-size: 12px; color: var(--text-light); text-decoration: underline; cursor: pointer; margin-top: 4px; display: inline-block; }
.size-guide:hover { color: var(--pink); }

/* Boutons actions produit */
.product-actions { display: flex; gap: 12px; margin-top: 28px; }
.btn-add-cart {
  flex: 1; padding: 16px 20px;
  background: var(--dark); color: var(--white);
  font-family: inherit; font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: var(--transition); border: 2px solid var(--dark); cursor: pointer;
}
.btn-add-cart:hover { background: var(--pink); border-color: var(--pink); }
.btn-wishlist-lg {
  width: 54px; height: 54px; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: var(--transition);
}
.btn-wishlist-lg:hover { border-color: var(--pink); background: var(--pink-light); }
.btn-wishlist-lg svg { width: 20px; height: 20px; stroke: var(--text); fill: none; stroke-width: 1.5; transition: var(--transition); }
.btn-wishlist-lg:hover svg { stroke: var(--pink); }
.btn-wishlist-lg.active svg { stroke: var(--pink); fill: var(--pink); }

/* Avantages */
.product-perks { margin-top: 24px; padding: 18px 20px; background: var(--light-bg); display: flex; flex-direction: column; gap: 10px; }
.perk { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text); }
.perk svg { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--gold); fill: none; stroke-width: 1.5; }

/* Accordéon */
.accordion { border-top: 1px solid var(--border); margin-top: 28px; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; cursor: pointer;
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--dark); transition: color 0.2s ease; user-select: none;
}
.accordion-header:hover { color: var(--pink); }
.accordion-icon {
  width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2;
  transition: transform 0.3s ease; flex-shrink: 0;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding-bottom: 18px; }
.accordion-item.open .accordion-body { display: block; }
.accordion-body p { font-size: 13px; color: var(--text-light); line-height: 1.8; }
.accordion-body ul { padding-left: 16px; display: flex; flex-direction: column; gap: 5px; list-style: disc; }
.accordion-body ul li { font-size: 13px; color: var(--text-light); }

/* Compléter le look */
.complete-look { margin-top: 70px; padding-top: 50px; border-top: 1px solid var(--border); }
.complete-look h2 { font-family: var(--font-script); font-size: 38px; margin-bottom: 30px; }
.complete-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* =====================================================
   BANDEAU VALEURS
   ===================================================== */
.values-bar {
  display: flex; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.value-item {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 22px 20px; border-right: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--dark);
  text-align: center;
}
.value-item:last-child { border-right: none; }
.value-item svg { width: 28px; height: 28px; stroke: var(--pink); fill: none; stroke-width: 1.3; flex-shrink: 0; }
.value-item span { font-size: 11px; color: var(--text-light); font-weight: 400; display: block; margin-top: 2px; }

/* =====================================================
   TOAST NOTIFICATION
   ===================================================== */
.toast {
  position: fixed; bottom: 30px; right: 30px;
  background: var(--dark); color: var(--white);
  padding: 14px 22px; font-size: 13px; font-weight: 500;
  z-index: 9999; transform: translateY(100px); opacity: 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; align-items: center; gap: 10px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast svg { width: 18px; height: 18px; stroke: var(--pink); fill: none; stroke-width: 2; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .complete-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .values-bar { flex-wrap: wrap; }
  .value-item { min-width: 50%; border-bottom: 1px solid var(--border); }
}

@media (max-width: 992px) {
  .hamburger { display: flex; }
  .desktop-nav { display: none; }
  .header-main { padding: 0 20px; }
  .header-side { min-width: auto; gap: 4px; }
  .logo { font-size: 26px; white-space: nowrap; }
  .hero-content { padding: 60px 40px; max-width: 100%; }
  .hero-title { font-size: 56px; }
  .hero-discount { font-size: 72px; }
  .hero-discount sup { font-size: 30px; }
  .category-grid { grid-template-columns: 1fr 1fr; padding: 20px 20px 40px; }
  .section { padding: 40px 20px; }
  .hscroll-wrapper { padding: 0 20px 40px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .catalogue-layout { flex-direction: column; padding: 20px; }
  .filters-sidebar { width: 100%; }
  .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
  .product-layout { grid-template-columns: 1fr; gap: 32px; }
  .product-main-img { position: static; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { padding: 40px 20px 24px; }
  .footer-bottom { padding: 16px 20px; }
  .journal-section { padding: 50px 20px; }
  .newsletter { padding: 60px 20px; }
  .page-header { padding: 36px 20px; }
}

@media (max-width: 640px) {
  .hero { min-height: 70vh; max-height: 600px; }
  .hero-content { padding: 40px 24px; }
  .hero-title { font-size: 42px; }
  .hero-discount { font-size: 56px; }
  .hero-discount sup { font-size: 22px; }
  .hero-butterflies { opacity: 0.3; }
  .category-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hscroll-track .product-card { width: 180px; }
  .blog-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .product-gallery { flex-direction: column-reverse; }
  .product-thumbs { flex-direction: row; width: 100%; }
  .product-thumb { width: 70px; height: 90px; }
  .complete-grid { grid-template-columns: repeat(2, 1fr); }
  .values-bar { flex-direction: column; }
  .value-item { min-width: 100%; }
  .product-grid-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   DÉCORATIONS SAISONNIÈRES HERO
   ============================================================ */

/* Hiver – Neige */
.snow-wrapper {
  position: absolute;
  top: -30px;
  animation: snow-fall linear infinite;
  pointer-events: none;
}
.snow-inner {
  animation: snow-sway ease-in-out infinite alternate;
}
@keyframes snow-fall {
  0%   { transform: translateY(0); opacity: 1; }
  90%  { opacity: 0.8; }
  100% { transform: translateY(110vh); opacity: 0; }
}
@keyframes snow-sway {
  0%   { transform: translateX(-18px) rotate(0deg); }
  100% { transform: translateX(18px) rotate(180deg); }
}

/* Automne – Feuilles */
.autumn-leaf-wrapper {
  position: absolute;
  top: -50px;
  animation: leaf-fall linear infinite;
  pointer-events: none;
}
.autumn-leaf-inner {
  animation: leaf-sway ease-in-out infinite alternate;
}
@keyframes leaf-fall {
  0%   { transform: translateY(0); opacity: 1; }
  85%  { opacity: 0.9; }
  100% { transform: translateY(115vh); opacity: 0; }
}
@keyframes leaf-sway {
  0%   { transform: translateX(-30px) rotate(var(--r0, -20deg)); }
  33%  { transform: translateX(15px)  rotate(var(--r1, 10deg)); }
  66%  { transform: translateX(-10px) rotate(var(--r2, -5deg)); }
  100% { transform: translateX(28px)  rotate(var(--r0, -20deg)); }
}

/* Été – Soleil */
.summer-sun-wrap {
  position: absolute;
  animation: sun-float ease-in-out 6s infinite alternate;
  pointer-events: none;
}
@keyframes sun-float {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(-16px); }
}
@keyframes sun-ray-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes sun-breathe {
  0%, 100% { r: 54; opacity: 0.15; }
  50%       { r: 60; opacity: 0.08; }
}
.sparkle-item {
  position: absolute;
  pointer-events: none;
  animation: sparkle-float ease-in-out infinite alternate;
}
@keyframes sparkle-float {
  0%   { transform: translateY(0) scale(1); opacity: 0.7; }
  100% { transform: translateY(-12px) scale(1.3); opacity: 1; }
}

/* Overflow clip pour les éléments qui tombent */
#hero-decorations {
  overflow: hidden;
}

/* ============================================================
   SCÈNES SAISONNIÈRES PREMIUM
   ============================================================ */

/* Base commune à toutes les scènes */
.s-scene { position: absolute; inset: 0; overflow: hidden; }
.s-blend { display: none; }

/* ── DÉFAUT (sans événement) ────────────────────────────── */
.s-default {
  background: linear-gradient(135deg,
    #0a0810 0%, #110d1c 18%, #1c1030 38%,
    #16102a 58%, #0e0a1a 78%, #090710 100%);
}

/* ── ÉTÉ ────────────────────────────────────────────────── */
.s-ete { background: linear-gradient(170deg,#1a68a8 0%,#48acd8 20%,#86c8e8 42%,#f4be78 68%,#d4a84e 100%); }
.s-ete-sun     { position: absolute; top: 6%; right: 8%; animation: sun-float 7s ease-in-out infinite alternate; pointer-events: none; }
.s-ete-gull    { position: absolute; animation: seagull-float ease-in-out infinite alternate; pointer-events: none; }
.s-ete-ocean   {
  position: absolute; bottom: 28%; left: 0; right: 0; height: 28%;
  background: linear-gradient(180deg, #1585b5 0%, #0d6892 55%, #094e6e 100%);
  animation: ocean-bob 5s ease-in-out infinite alternate;
}
.s-ete-w1 { position: absolute; top: -14px; left: -5%; width: 110%; animation: wave-slide 5s linear infinite; }
.s-ete-w2 { position: absolute; top: -7px;  left: -5%; width: 110%; animation: wave-slide 9s linear infinite reverse; opacity: 0.28; }
.s-ete-sand    { position: absolute; bottom: 0; left: 0; right: 0; height: 30%; background: linear-gradient(180deg, #d8ae5a 0%, #bf9248 35%, #a87636 100%); }
.s-ete-palm    { position: absolute; bottom: 27%; left: -1%; pointer-events: none; transform: translateY(62px); }
.s-ete-parasol { position: absolute; bottom: 27%; left: 14%; pointer-events: none; transform: translateY(72px); }
.s-ete-lounger { position: absolute; bottom: 18px; left: 32%; pointer-events: none; }
.s-ete-flamingo{ position: absolute; bottom: 14px; right: 8%; pointer-events: none; }
.s-ete-cocktail{ position: absolute; bottom: calc(30% + 8px); right: 22%; pointer-events: none; animation: sun-float 4s ease-in-out 0.5s infinite alternate; }
@keyframes wave-slide    { 0%  { transform: translateX(0); }    100% { transform: translateX(9%); } }
@keyframes ocean-bob     { 0%  { transform: translateY(0); }    100% { transform: translateY(-6px); } }
@keyframes seagull-float { 0%  { transform: translateY(0) translateX(0); } 100% { transform: translateY(-12px) translateX(14px); } }

/* ── PRINTEMPS ──────────────────────────────────────────── */
.s-printemps { background: linear-gradient(162deg, #260e36 0%, #6a3888 22%, #c068b8 46%, #efaece 72%, #fce6f0 100%); }
.s-printemps-branch { position: absolute; top: -8px; right: -8px; pointer-events: none; z-index: 2; }
.s-printemps-ground { position: absolute; bottom: 0; left: 0; right: 0; height: 20%; overflow: hidden; }
.s-bf1 { position: absolute; animation: floatBf1 6s ease-in-out infinite; }
.s-bf2 { position: absolute; animation: floatBf2 8s ease-in-out infinite; }
.s-bf3 { position: absolute; animation: floatBf3 7s ease-in-out infinite; }
.printemps-petal { position: absolute; top: -20px; pointer-events: none; animation: petal-fall linear infinite; }
.printemps-petal-inner { animation: petal-sway ease-in-out infinite alternate; }
@keyframes petal-fall {
  0%   { transform: translateY(0); opacity: 1; }
  85%  { opacity: 0.8; }
  100% { transform: translateY(105vh); opacity: 0; }
}
@keyframes petal-sway {
  0%   { transform: translateX(-22px) rotate(-28deg); }
  50%  { transform: translateX(16px) rotate(8deg); }
  100% { transform: translateX(-14px) rotate(-18deg); }
}

/* ── AUTOMNE ────────────────────────────────────────────── */
.s-automne       { background: linear-gradient(162deg, #180400 0%, #5c1e00 22%, #b24a08 50%, #d86a08 70%, #e89020 100%); }
.s-automne-tree  { position: absolute; bottom: 20%; right: -6%; pointer-events: none; }
.s-automne-ground{ position: absolute; bottom: 0; left: 0; right: 0; height: 22%; overflow: hidden; }

/* ── HIVER ──────────────────────────────────────────────── */
.s-hiver { background: linear-gradient(162deg, #020510 0%, #081628 22%, #102848 48%, #1a3868 68%, #26488a 100%); }
.s-hiver-mountain{ position: absolute; bottom: 0; left: 0; right: 0; pointer-events: none; }
.s-hiver-aurora  { position: absolute; top: 0; left: 0; right: 0; height: 65%; pointer-events: none; overflow: hidden; }
.s-hiver-aurora-band {
  position: absolute; left: 0; right: 0;
  border-radius: 50%; filter: blur(14px);
  animation: aurora-wave ease-in-out infinite alternate;
}
@keyframes aurora-wave {
  0%   { transform: translateX(-8%) scaleY(1) translateY(0); opacity: 0.4; }
  100% { transform: translateX(8%) scaleY(2.8) translateY(-10px); opacity: 0.75; }
}

/* ── NOËL ───────────────────────────────────────────────── */
.s-noel { background: linear-gradient(162deg, #020810 0%, #091426 20%, #102040 48%, #1a2850 65%, #132038 100%); }
.s-noel-glow {
  position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none;
  animation: noel-glow-pulse 3s ease-in-out infinite alternate;
}
@keyframes noel-glow-pulse { 0% { opacity: 0.22; } 100% { opacity: 0.38; } }
.s-noel-snow  { position: absolute; bottom: 0; left: 0; right: 0; pointer-events: none; }
.s-noel-tree  { position: absolute; pointer-events: none; }

/* ── HALLOWEEN ──────────────────────────────────────────── */
.s-halloween { background: linear-gradient(162deg, #050008 0%, #160428 20%, #220840 48%, #320c10 68%, #120406 100%); }
.s-halloween-fog {
  position: absolute; bottom: 0; left: 0; right: 0; height: 28%;
  background: linear-gradient(180deg, transparent 0%, rgba(80,20,80,0.18) 40%, rgba(60,10,60,0.28) 100%);
  pointer-events: none; animation: fog-drift 8s ease-in-out infinite alternate;
}
@keyframes fog-drift { 0% { transform: translateX(-3%); } 100% { transform: translateX(3%); } }
.s-bat { position: absolute; pointer-events: none; animation: bat-fly ease-in-out infinite alternate; }
@keyframes bat-fly { 0% { transform: translateY(0) rotate(-8deg); } 100% { transform: translateY(-18px) rotate(8deg); } }

/* ============================================================
   OVERLAY PLEINE PAGE — ÉVÉNEMENTS SPÉCIAUX
   ============================================================ */
.cdf-page-event {
  position: absolute; top: 0; left: 0; right: 0; height: 100vh;
  pointer-events: none;
  z-index: 99;
  overflow: hidden;
}

/* ============================================================
   NOËL — GUIRLANDES
   ============================================================ */
.garland-row { position: absolute; left: 0; width: 100%; }
@keyframes bulb-glow {
  0%, 100% { opacity: 0.82; filter: brightness(1); }
  50%       { opacity: 1;    filter: brightness(1.5) drop-shadow(0 0 6px currentColor); }
}
.noel-bulb { animation: bulb-glow ease-in-out infinite alternate; }
.noel-snow-wrap  { position: absolute; top: -30px; animation: snow-fall linear infinite; pointer-events: none; }
.noel-snow-inner { animation: snow-sway ease-in-out infinite alternate; }

/* ============================================================
   HALLOWEEN — ARAIGNÉES / CITROUILLES / CHAUVES-SOURIS
   ============================================================ */
.spider-hang {
  position: absolute; top: 0;
  display: flex; flex-direction: column; align-items: center;
  transform-origin: top center;
  animation: spider-swing ease-in-out infinite alternate;
}
.spider-thread { width: 1px; background: rgba(210,210,210,0.45); }
@keyframes spider-swing {
  0%   { transform: rotate(-7deg); }
  100% { transform: rotate(7deg); }
}
.pumpkin-fixed { position: absolute; }
@keyframes pumpkin-glow {
  0%, 100% { filter: drop-shadow(0 0 6px #ff8c00); }
  50%       { filter: drop-shadow(0 0 20px #ff5500) brightness(1.15); }
}
.pumpkin-svg { animation: pumpkin-glow 2s ease-in-out infinite; }
.bat-item { position: absolute; }
@keyframes bat-fly {
  0%   { transform: translateX(-120px) translateY(0px);    opacity: 0; }
  6%   { opacity: 0.75; }
  30%  { transform: translateX(28vw)  translateY(-22px); }
  55%  { transform: translateX(55vw)  translateY(12px); }
  80%  { transform: translateX(82vw)  translateY(-18px); }
  94%  { opacity: 0.75; }
  100% { transform: translateX(calc(100vw + 120px)) translateY(0px); opacity: 0; }
}
