/* ── Variables ────────────────────────────────────── */
:root {
  --pink-bg:    #FFF0F7;
  --pink-soft:  #FFD6EA;
  --pink:       #FF4D8B;
  --pink-dark:  #D4246A;
  --lavender:   #E8D5FF;
  --purple:     #A855F7;
  --purple-dark:#7C3AED;
  --mint:       #D1FAE5;
  --yellow:     #FEF3C7;
  --white:      #FFFFFF;
  --dark:       #2D1B3D;
  --mid:        #7B5EA7;
  --light:      #F3E8FF;

  --ff-display: 'Cherry Bomb One', cursive;
  --ff-body:    'Nunito', sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 50px;

  --shadow-pink: 0 8px 32px rgba(255, 77, 139, 0.2);
  --shadow-soft: 0 4px 20px rgba(168, 85, 247, 0.12);
  --transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--pink-bg);
  color: var(--dark);
  font-family: var(--ff-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }

/* ── Sparkle deco ────────────────────────────────── */
.sparkle {
  position: absolute;
  pointer-events: none;
  animation: twinkle 2.5s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.4; transform: scale(0.8) rotate(0deg); }
  50%       { opacity: 1;   transform: scale(1.2) rotate(20deg); }
}
.float { animation: float 4s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}
@keyframes bounceIn {
  0%   { opacity: 0; transform: scale(0.5); }
  70%  { transform: scale(1.1); }
  100% { opacity: 1; transform: scale(1); }
}

/* ── Header ──────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 240, 247, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--pink-soft);
  padding: 0 5%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--pink);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-icon {
  width: 32px; height: 32px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-pink);
  transition: transform var(--transition), box-shadow var(--transition);
}
.header-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 32px rgba(255, 77, 139, 0.35);
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  padding: 60px 5% 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  min-height: 520px;
}
/* Background blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--lavender) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--pink-soft) 0%, transparent 65%);
  pointer-events: none;
  display: none;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink-soft);
  color: var(--pink-dark);
  font-size: 1rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  margin-bottom: 18px;
  animation: fadeUp 0.5s ease both 0.1s;
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 18px;
  animation: fadeUp 0.6s ease both 0.2s;
}
.hero h1 .pink { color: var(--pink); }
.hero h1 .purple { color: var(--purple); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 400px;
  line-height: 1.8;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both 0.3s;
}
 .hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: none;
  opacity: 1;
  transform: none;
}
.btn-ghost,
.hero-reassurance {
  opacity: 1;
  transform: none;
  filter: none;
  backdrop-filter: none;
}
.hero-reassurance {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--mid);
  font-weight: 600;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink) 0%, #FF7EB3 100%);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-pink);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-main:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 36px rgba(255, 77, 139, 0.4);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  color: #7C3AED;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-xl);
  border: 2px solid #D8B4FE;
  transition: none;
  opacity: 1;
  transform: none;
  filter: none;
  backdrop-filter: none;
  box-shadow: none;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: #A855F7;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeUp 0.8s ease both 0.3s;
}
.hero-blob {
  width: 340px; height: 340px;
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--lavender) 100%);
  border-radius: 60% 40% 55% 45% / 45% 60% 40% 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: float 6s ease-in-out infinite;
}
/* Miniatures hero - composition en triangle */
.he-thumb {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--white);
  box-shadow: 0 6px 20px rgba(255, 77, 139, 0.3);
}
.he-cherry {
  top: 20px;
  left: 45%;
  transform: translateX(-50%);
  animation: float 4.6s ease-in-out infinite;
}
.he-bag {
  bottom: 50px;
  left: 28px;
  animation: float 4.6s ease-in-out infinite 0.6s;
}
.he-purse {
  bottom: 50px;
  right: 28px;
  animation: float 4.6s ease-in-out infinite 1.1s;
}
/* Deco sparkles around blob */
.deco-star {
  position: absolute;
  font-size: 1.4rem;
}
.ds1 { top: 10px;  left: 10px;  animation: twinkle 2s ease-in-out infinite 0.2s; }
.ds2 { top: 30px;  right: -10px; animation: twinkle 2.3s ease-in-out infinite 0.5s; }
.ds3 { bottom: 20px; left: 0px; animation: twinkle 1.8s ease-in-out infinite 0.8s; }
.ds4 { bottom: 40px; right: 10px; animation: twinkle 2.5s ease-in-out infinite 0.1s; }
.floating-pill {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.pill-1 { top: 20px; right: -40px; color: var(--pink-dark); animation: float 4.5s ease-in-out infinite; }
.pill-2 { bottom: 30px; left: -50px; color: var(--purple-dark); animation: float 5s ease-in-out infinite 0.8s; }

/* ── Section divider ─────────────────────────────── */
.section-divider {
  text-align: center;
  padding: 10px 0;
  font-size: 1.4rem;
  letter-spacing: 8px;
  opacity: 0.5;
}

/* ── Collection header ───────────────────────────── */
.collection-head {
  padding: 60px 5% 10px;
  text-align: center;
}
.collection-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lavender);
  color: var(--purple-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--radius-xl);
  margin-bottom: 14px;
}
.collection-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 10px;
}
.collection-head h2 .pink { color: var(--pink); }
.collection-head p {
  color: var(--mid);
  font-size: 1rem;
}

/* ── Product grid ────────────────────────────────── */
.catalogue {
  padding: 40px 5% 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  animation: fadeUp 0.5s ease both;
}
.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.10s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.20s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.30s; }
.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(255, 77, 139, 0.18);
  border-color: var(--pink-soft);
}

.product-visual {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* Pastel gradient per product - tons harmonisés */
.pv-1 { background: linear-gradient(135deg, #FFD6EA 0%, #FFAED2 100%); }
.pv-2 { background: linear-gradient(135deg, #FFE0F0 0%, #FFD0E8 100%); }
.pv-3 { background: linear-gradient(135deg, #FFD6D6 0%, #FFB3B3 100%); }
.pv-4 { background: linear-gradient(135deg, #FFE8F2 0%, #FFD6EA 100%); }
.pv-5 { background: linear-gradient(135deg, #FFF3D6 0%, #FFE4A0 100%); }
.pv-6 { background: linear-gradient(135deg, #EED6FF 0%, #DDB3FF 100%); }

.flash-info {
  background: linear-gradient(90deg, #ff6fa5 0%, #c084fc 100%);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  letter-spacing: 0.2px;
}






.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-xl);
  padding: 4px 12px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--mid);
  letter-spacing: 0.04em;
}
.product-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.product-body h3 {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}
.product-body p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.65;
  flex: 1;
}
.product-footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px dashed var(--pink-soft);
}
.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover .product-cta {
  transform: scale(1.06);
  box-shadow: var(--shadow-pink);
}
.hearts {
  font-size: 0.85rem;
  letter-spacing: 2px;
  opacity: 0.5;
}

/* ── Trust section ───────────────────────────────── */
.trust {
  margin: 0 5% 70px;
  background: linear-gradient(135deg, var(--dark) 0%, #4A1060 100%);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: '✨';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 1.4rem;
  animation: twinkle 2s ease-in-out infinite;
}
.trust::after {
  content: '💫';
  position: absolute;
  bottom: 16px; left: 24px;
  font-size: 1.2rem;
  animation: twinkle 2.5s ease-in-out infinite 0.5s;
}
.trust-item {
  text-align: center;
  color: rgba(255,255,255,0.8);
}
.trust-emoji {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
}
.trust-item h3 {
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.trust-item p {
  font-size: 0.875rem;
  line-height: 1.7;
  opacity: 0.7;
}

/* ── CTA band ─────────────────────────────────────── */
.cta-band {
  text-align: center;
  padding: 70px 5%;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, var(--lavender) 0%, transparent 70%);
  pointer-events: none;
}
.cta-blob {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--lavender) 100%);
  border-radius: 60% 40% 55% 45% / 45% 55% 50% 40%;
  padding: 50px 60px;
  position: relative;
}
.cta-band h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 22px;
  position: relative;
}
.cta-band h2 .pink { color: var(--pink); }
.cta-notice {
  margin-top: 18px;
  font-size: 0.875rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── Real product images ─────────────────────────── */
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}
/* Porte-clés : deux vues empilées, cadrer sur la vue du haut */
.product-img-top {
  object-position: top;
}
.product-card:hover .product-img {
  transform: scale(1.06);
}

/* ── Price badge ─────────────────────────────────── */
.price-tag {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  background: linear-gradient(135deg, var(--pink) 0%, var(--purple) 100%);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 12px rgba(255,77,139,0.35);
  letter-spacing: 0.03em;
}

/* ── Asia strip ──────────────────────────────────── */
.asia-strip {
  background: linear-gradient(135deg, var(--dark) 0%, #4A1060 100%);
  color: var(--pink-soft);
  text-align: center;
  padding: 14px 5%;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  overflow: hidden;
  white-space: nowrap;
}
.asia-strip-inner {
  display: inline-block;
  animation: marquee 60s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(60vw); }
  to   { transform: translateX(-100%); }
}

/* ── QR code ─────────────────────────────────────── */
.qr-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  opacity: 0.75;
  transition: opacity var(--transition), transform var(--transition);
}
.qr-wrap:hover { opacity: 1; transform: scale(1.05); }
.qr-frame {
  padding: 10px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 2px dashed var(--pink-soft);
  box-shadow: 0 4px 16px rgba(255, 77, 139, 0.12);
}
.qr-frame img { display: block; width: 100px; height: 100px; border-radius: 6px; }
.qr-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mid);
  letter-spacing: 0.04em;
}

/* QR footer */
.footer-qr {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 14px 18px;
}
.footer-qr img { width: 56px; height: 56px; border-radius: 6px; flex-shrink: 0; }
.footer-qr-text { font-size: 0.78rem; line-height: 1.6; opacity: 0.7; }
.footer-qr-text strong { display: block; color: var(--white); opacity: 1; font-size: 0.82rem; margin-bottom: 2px; }

/* ── Footer ──────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 50px 5% 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--pink);
  margin-bottom: 10px;
}
footer p { font-size: 0.875rem; line-height: 1.8; opacity: 0.65; }
footer h4 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 14px;
}
footer a {
  display: block;
  font-size: 0.875rem;
  opacity: 0.6;
  margin-bottom: 8px;
  transition: opacity 0.2s, color 0.2s;
}
footer a:hover { opacity: 1; color: var(--pink-soft); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding: 40px 5% 30px; min-height: auto; }
  .hero-sub { margin: 0 auto 32px; }
  .hero-btns { justify-content: center; }
  .hero-visual { justify-content: center; margin-top: 10px; }
  .hero-blob { width: 260px; height: 260px; }
  .he-thumb { width: 70px; height: 70px; }
  .floating-pill { display: none; }
  .catalogue { grid-template-columns: repeat(2, 1fr); }
  .trust { grid-template-columns: 1fr; padding: 40px 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 540px) {
  .hero { padding: 30px 5% 24px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-tag { font-size: 0.85rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-reassurance { font-size: 0.75rem; }
  .hero-blob { width: 220px; height: 220px; }
  .he-thumb { width: 60px; height: 60px; }
  .he-bag { bottom: 40px; left: 22px; }
  .he-purse { bottom: 40px; right: 22px; }
  .catalogue { grid-template-columns: 1fr; }
  .header-cta span { display: none; }
  .cta-blob { padding: 36px 28px; }
  .product-visual { height: 260px; }
  .flash-info { font-size: 0.78rem; padding: 8px 12px; }
  .asia-strip { font-size: 0.72rem; padding: 10px 5%; }
  .qr-wrap { opacity: 1; margin-top: 20px; }
  .qr-frame img { width: 90px; height: 90px; }
  .qr-label { font-size: 0.85rem; }
}
