:root {
  --rose: #ec4899;
  --rose-light: #f9a8d4;
  --rose-pale: #fdf2f8;
  --rose-deep: #be185d;
  --violet: #a855f7;
  --dark: #1a0a14;
  --dark2: #2d1022;
  --text: #f5e6f0;
  --text-muted: #c084a4;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(236,72,153,0.2);
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { background:var(--dark); color:var(--text); font-family:'Poppins',sans-serif; cursor:none; overflow-x:hidden; }
body.coarse-pointer { cursor:auto; }
body.coarse-pointer .cursor, body.coarse-pointer .cursor-follower { display:none; }
.cursor { width:12px; height:12px; background:var(--rose); border-radius:50%; position:fixed; top:0; left:0; pointer-events:none; z-index:10060; transition:transform 0.1s; mix-blend-mode:difference; }
.cursor-follower { width:36px; height:36px; border:1.5px solid var(--rose-light); border-radius:50%; position:fixed; top:0; left:0; pointer-events:none; z-index:10059; transition:all 0.18s ease; opacity:0.6; }

/* NAVBAR */
.navbar {
  position:absolute; top:0; left:0; right:0;
  display:flex; justify-content:space-between; align-items:center;
  padding:1.2rem 3rem 1.2rem 3.5rem;
  z-index:100;
}
.logo {
  display:flex; align-items:center; gap:1.2rem;
  font-family:'Playfair Display',serif; font-size:1.2rem;
  color:var(--rose-light); letter-spacing:0.03em;
  flex-shrink:0;
  margin-left:-1.8rem;
}
.logo div {
  display:flex;
  flex-direction:column;
  gap:0.2rem;
  margin-left:1rem;
}
.logo-subtitle {
  font-family:'Poppins',sans-serif;
  font-size:0.75rem;
  color:var(--text-muted);
  letter-spacing:0.12em;
  text-transform:uppercase;
  display:block;
}
.footer-logo {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:1rem;
  text-align:center;
}
.footer-logo div {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  text-align:left;
  gap:0.25rem;
}
.logo-img {
  width:80px; height:80px;
  min-width:80px; min-height:80px;
  flex:0 0 auto;
  aspect-ratio:1 / 1;
  display:block;
  object-fit:cover;
  border-radius:50%;
  overflow:hidden;
  background:radial-gradient(circle at center, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.96) 24%, rgba(255,255,255,0.92) 50%, rgba(236,72,153,0.28) 64%, rgba(168,85,247,0.20) 78%, rgba(255,255,255,0.00) 100%);
  padding:10px;
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.24),
    0 0 34px 18px rgba(255,255,255,0.28),
    0 0 90px 34px rgba(236,72,153,0.36),
    0 0 128px 48px rgba(236,72,153,0.22);
  transition: box-shadow 0.3s, transform 0.3s;
}
.logo-img:hover {
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.36),
    0 0 30px 12px rgba(255,255,255,0.50),
    0 0 52px 16px rgba(236,72,153,0.30);
  transform: scale(1.05);
}
.footer-logo .logo-img {
  width:76px; height:76px;
  min-width:76px; min-height:76px;
}
.nav-links {
  list-style:none; display:flex; flex-wrap:wrap; gap:1.6rem;
  align-items:center;
}
.nav-links a { color:var(--text-muted); text-decoration:none; font-size:0.9rem; font-weight:300; letter-spacing:0.08em; text-transform:uppercase; transition:color 0.3s; position:relative; display:inline-flex; align-items:center; gap:0.5rem; }
.nav-links a .nav-icon { font-size:0.95rem; display:inline-flex; width:1.2rem; justify-content:center; }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; right:0; height:1px; background:var(--rose); transform:scaleX(0); transition:transform 0.3s; }
.nav-links a:hover { color:var(--rose-light); }
.nav-links a:hover::after { transform:scaleX(1); }
.hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:0.5rem; }
.hamburger span { display:block; width:25px; height:2px; background:var(--rose-light); border-radius:2px; transition:all 0.3s; }
.hamburger.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

.hero { min-height:100vh; position:relative; display:flex; align-items:center; overflow:hidden; background:radial-gradient(ellipse at 60% 40%,#3d0a2e 0%,var(--dark) 70%); }
#particleCanvas { position:absolute; inset:0; width:100%; height:100%; pointer-events:none; }
.hero-content { position:relative; z-index:10; padding:0 4rem; max-width:700px; }

/* hero elements: no fadeUp animation, JS handles hero-title reveal */
.hero-tagline { color:var(--rose); font-size:0.85rem; letter-spacing:0.2em; text-transform:uppercase; margin-bottom:1.2rem; }
.hero-title { visibility:hidden; opacity:0; transition:opacity 0.2s ease, visibility 0.2s ease; font-family:'Playfair Display',serif; font-size:clamp(3rem,8vw,7rem); font-weight:900; line-height:1.05; margin-bottom:1.5rem; position:relative; overflow:visible; color:var(--text); text-shadow:0 0 24px rgba(236,72,153,0.18); }
.hero-title .title-text { position:relative; z-index:0; display:flex; flex-wrap:wrap; align-items:flex-end; gap:2.5rem; }
.hero-title .title-main { display:inline-block; }
.hero-title .title-ici { display:inline-block; margin-left:0; margin-top:0; opacity:0; transform:translateY(0.75rem) scale(0.95); animation: iciAppear 1.4s ease forwards 1.4s; position:relative; will-change:opacity,transform,text-shadow; text-shadow:0 0 4px rgba(255,255,255,0.9), 0 0 18px rgba(236,72,153,0.6); }
.hero-title .title-ici::before,
.hero-title .title-ici::after { content:''; position:absolute; width:0.55rem; height:0.55rem; border-radius:50%; background:radial-gradient(circle,rgba(255,255,255,1) 0%,rgba(236,72,153,0.95) 35%,transparent 70%); opacity:0; transform:scale(0.4); box-shadow:0 -8px 0 rgba(255,255,255,0.9), 8px -4px 0 rgba(255,235,255,0.8), -10px 6px 0 rgba(255,192,215,0.7), 10px 10px 0 rgba(236,72,153,0.45); }
.hero-title .title-ici::before { top:-0.35rem; right:-0.55rem; animation: sparkle 1.2s ease forwards 1.6s; }
.hero-title .title-ici::after { top:0.1rem; right:-1.1rem; width:0.4rem; height:0.4rem; animation: sparkle 1.2s ease forwards 1.8s; }
.hero-title.full-reveal .title-text { mask: none; -webkit-mask: none; }
.hero-title .title-text-overlay { position:absolute; inset:0; z-index:2; display:flex; flex-direction:column; align-items:flex-start; gap:0.75rem; width:100%; opacity:0; visibility:hidden; pointer-events:none; mask:none; -webkit-mask:none; transition: opacity 1.4s ease-out; will-change: opacity; color:var(--text); font-family:inherit; font-size:inherit; font-weight:inherit; line-height:inherit; letter-spacing:inherit; }
.hero-title .title-text-overlay.visible { opacity:1; visibility:visible; }
.hero-title.full-reveal .title-text-overlay { opacity:1; visibility:visible; }
.hero-mask-defs { position:absolute; width:0; height:0; overflow:hidden; opacity:0; pointer-events:none; }
/* splat styles removed (splat assets deleted) */
.gradient-text { background:linear-gradient(135deg,var(--rose),var(--violet),#f472b6); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; display:inline-block; }
@keyframes iciAppear { from { opacity:0; transform:translateY(0.75rem) scale(0.95); } to { opacity:1; transform:translateY(0) scale(1); } }
@keyframes sparkle { from { opacity:0; transform:scale(0.4); } 20% { opacity:1; transform:scale(1.15); } 45% { opacity:0.85; transform:scale(0.95); } 70% { opacity:0.55; transform:scale(0.75); } to { opacity:0; transform:scale(0.55); } }
.hero-sub { color:var(--text-muted); font-size:1.1rem; font-weight:300; margin-bottom:2.5rem; }
.btn-main { display:inline-block; background:linear-gradient(135deg,var(--rose),var(--rose-deep)); color:white; padding:1rem 2.5rem; border-radius:50px; text-decoration:none; font-weight:600; font-size:0.95rem; letter-spacing:0.05em; border:none; cursor:none; transition:transform 0.3s,box-shadow 0.3s; box-shadow:0 0 30px rgba(236,72,153,0.4); position:relative; overflow:hidden; }
.btn-main::before { content:''; position:absolute; inset:0; background:linear-gradient(90deg,transparent,rgba(255,255,255,0.25),transparent); transform:translateX(-100%); transition:transform 0.6s ease; }
.btn-main:hover { transform:translateY(-3px) scale(1.03); box-shadow:0 0 50px rgba(236,72,153,0.7); }
.btn-main:hover::before { transform:translateX(100%); }
.btn-secondary { display:inline-block; background:rgba(255,255,255,0.1); color:var(--text); padding:0.95rem 2rem; border-radius:50px; text-decoration:none; font-weight:600; font-size:0.95rem; letter-spacing:0.05em; border:1px solid rgba(255,255,255,0.12); transition:transform 0.3s,background 0.3s,border-color 0.3s; }
.btn-secondary:hover { background:rgba(236,72,153,0.12); border-color:rgba(236,72,153,0.3); transform:translateY(-2px); }
.scroll-down { position:absolute; bottom:2.2rem; left:50%; transform:translateX(-50%); padding:0.85rem 1.35rem; display:inline-flex; align-items:center; gap:0.5rem; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.14); border-radius:999px; color:var(--text); text-decoration:none; font-size:0.85rem; letter-spacing:0.15em; text-transform:uppercase; transition:opacity 0.3s ease,transform 0.3s ease,background 0.3s ease; backdrop-filter:blur(10px); }
.scroll-down:hover { opacity:1; transform:translateX(-50%) translateY(4px); background:rgba(236,72,153,0.15); }
.scroll-arrow { font-size:1rem; animation:bounce 1.4s infinite; display:inline-block; }
.scroll-label { display:block; }
.scroll-section { padding:3rem 4rem; background:rgba(255,255,255,0.04); border-top:1px solid rgba(255,255,255,0.08); border-bottom:1px solid rgba(255,255,255,0.08); }
.scroll-section-inner { max-width:960px; margin:0 auto; text-align:center; }
.scroll-section h2 { font-family:'Playfair Display',serif; font-size:clamp(2rem,4vw,3rem); margin:1rem 0 1rem; }
.scroll-section p { color:var(--text-muted); font-size:1rem; max-width:720px; margin:0 auto 1.5rem; line-height:1.8; }
.commandes, .cours-detail { background:rgba(255,255,255,0.04); }
.info-grid { display:grid; grid-template-columns:1fr; max-width:1100px; margin:0 auto; gap:1.5rem; }
.info-card { background:var(--dark2); border:1px solid var(--glass-border); border-radius:24px; padding:2.5rem 2.5rem; box-shadow:0 20px 70px rgba(236,72,153,0.14); }
.info-card h3 { margin-top:1.5rem; color:var(--rose); font-family:'Playfair Display',serif; font-size:1.4rem; }
.info-card p { color:var(--text-muted); font-size:0.96rem; line-height:1.9; margin-top:0.9rem; }
.stats { display:flex; justify-content:center; gap:4rem; padding:4rem 2rem; background:var(--glass); border-top:1px solid var(--glass-border); border-bottom:1px solid var(--glass-border); backdrop-filter:blur(10px); }
.stat-item { text-align:center; }
.stat-item span { font-size:2.8rem; font-weight:700; color:var(--rose); font-family:'Playfair Display',serif; }
.stat-item p { color:var(--text-muted); font-size:0.85rem; margin-top:0.3rem; letter-spacing:0.05em; }
section { padding:6rem 4rem; }
section[id] { scroll-margin-top:100px; }
a, button, .cours-card, .galerie-item, .social-link { -webkit-tap-highlight-color:transparent; touch-action:manipulation; }
.section-header { text-align:center; margin-bottom:4rem; }
.section-label { color:var(--rose); font-size:0.8rem; letter-spacing:0.25em; text-transform:uppercase; display:block; margin-bottom:0.8rem; }
.section-note { color:var(--text-muted); font-size:0.95rem; line-height:1.75; max-width:720px; margin:0 auto 1rem; }
.review-placeholder .info-card { border-color:rgba(148,163,184,0.2); background:rgba(255,255,255,0.04); }
.review-placeholder .section-label { color:var(--violet); }
.review-placeholder .section-header h2 { color:var(--rose-light); }
.review-placeholder .info-card p { margin-bottom:1rem; }
.section-header h2 { font-family:'Playfair Display',serif; font-size:clamp(2rem,5vw,3.5rem); font-weight:700; }
@keyframes waterFlow {
  0% { background-position: 0% 0%, 100% 10%, 25% 78%, 0 0; }
  50% { background-position: 4% 5%, 90% 5%, 30% 83%, 0 15px; }
  100% { background-position: 0% 0%, 100% 10%, 25% 78%, 0 0; }
}
@keyframes waterPulse {
  0% { opacity: 0.42; transform: translate3d(0, 0, 0) scale(1); }
  25% { opacity: 0.50; transform: translate3d(2px, -2px, 0) scale(1.01); }
  50% { opacity: 0.38; transform: translate3d(-2px, 3px, 0) scale(0.99); }
  75% { opacity: 0.47; transform: translate3d(3px, -1px, 0) scale(1.005); }
  100% { opacity: 0.42; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes waveShift {
  0% { background-position: 0% 0%, 100% 10%, 25% 78%, 0 0; }
  50% { background-position: 4% 5%, 90% 5%, 30% 83%, 0 15px; }
  100% { background-position: 0% 0%, 100% 10%, 25% 78%, 0 0; }
}
.cours-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:2rem; max-width:1200px; margin:0 auto; }
.cours-card { display:block; color:inherit; text-decoration:none; background:var(--dark2); border:1px solid var(--glass-border); border-radius:20px; padding:2.5rem 2rem; position:relative; transition:transform 0.4s,box-shadow 0.4s; overflow:hidden; cursor:pointer; }
.cours-card::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(236,72,153,0.05),transparent); opacity:0; transition:opacity 0.4s; }
.cours-card:hover { transform:translateY(-8px); box-shadow:0 20px 60px rgba(236,72,153,0.2); }
.cours-card:hover::before { opacity:1; }
.cours-card.featured { border-color:var(--rose); box-shadow:0 0 30px rgba(236,72,153,0.15); }
.card-badge-top { position:absolute; top:1rem; right:1rem; background:var(--rose); color:white; font-size:0.7rem; padding:0.3rem 0.8rem; border-radius:20px; font-weight:600; }
.card-icon { font-size:2.5rem; margin-bottom:1rem; }
.cours-card h3 { font-family:'Playfair Display',serif; font-size:1.4rem; margin-bottom:0.8rem; }
.cours-card p { color:var(--text-muted); font-size:0.9rem; line-height:1.7; margin-bottom:1.5rem; }
.card-badge { display:inline-block; border:1px solid var(--rose); color:var(--rose); font-size:0.7rem; padding:0.25rem 0.75rem; border-radius:20px; margin-bottom:1.2rem; }
.card-link { display:block; color:var(--rose-light); text-decoration:none; font-size:0.9rem; font-weight:600; transition:letter-spacing 0.3s; }
.card-link:hover { letter-spacing:0.1em; }
.galerie { position:relative; background:transparent; overflow:hidden; }
.galerie::before,
.galerie::after {
  display:none;
}
.galerie-grid {
  position:relative;
  z-index:1;
  max-width:1200px;
  margin:0 auto;
  min-height:760px;
  padding:1.8rem 0 2.6rem;
  overflow:hidden;
  background:transparent;
  border-radius:0;
  box-shadow:none;
}
.galerie-grid::before {
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
  background-image:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,0.24), transparent 18%),
    radial-gradient(circle at 75% 14%, rgba(255,255,255,0.18), transparent 22%),
    radial-gradient(circle at 45% 70%, rgba(238,210,255,0.18), transparent 24%),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.015) 12%, rgba(255,255,255,0.05) 24%);
  background-size: 220% 220%, 220% 220%, 210% 210%, 100% 180px;
  background-position: 0% 0%, 100% 10%, 25% 78%, 0 0;
  opacity:0.75;
  filter: blur(5px) saturate(1.15);
  mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,1), rgba(0,0,0,0.08) 62%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,1), rgba(0,0,0,0.08) 62%, rgba(0,0,0,0) 100%);
  animation: waterFlow 22s linear infinite, waveShift 18s ease-in-out infinite;
}
.galerie-grid::after {
  content:'';
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
  background-image:
    radial-gradient(circle at 14% 14%, rgba(255,255,255,0.22), transparent 18%),
    radial-gradient(circle at 86% 16%, rgba(255,255,255,0.14), transparent 18%),
    radial-gradient(circle at 50% 92%, rgba(255,255,255,0.12), transparent 24%);
  background-size: 140px 140px, 160px 160px, 120% 120%;
  opacity:0.52;
  mix-blend-mode: screen;
  filter: blur(12px);
  mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.82), rgba(0,0,0,0) 92%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.82), rgba(0,0,0,0) 92%);
  animation: waterPulse 18s ease-in-out infinite;
}
.galerie-item {
  position:absolute;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.22);
  background:rgba(255,255,255,0.06);
  box-shadow:0 20px 50px rgba(6,4,10,0.35);
  cursor:none;
  transition:box-shadow 0.35s ease, filter 0.35s ease;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0.45rem;
  appearance:none;
  -webkit-appearance:none;
  z-index:2;
}
.galerie-item::after {
  content:'';
  position:absolute;
  inset:0.45rem;
  border:1px solid rgba(255,255,255,0.16);
  border-radius:calc(22px - 0.45rem);
  pointer-events:none;
}
.galerie-item img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:16px;
}
.galerie-item:hover { filter:brightness(1.05); box-shadow:0 28px 74px rgba(236,72,153,0.22); }
.galerie-item.dragging { cursor:grabbing; z-index:1001; box-shadow:0 32px 80px rgba(236,72,153,0.28); filter:brightness(1.08); }
.galerie-actions { display:flex; justify-content:center; margin-top:1.5rem; }
.galerie-actions .btn-secondary { min-width:180px; }
@keyframes galleryFloat { 0%,100% { transform:translateY(0) scale(1); } 50% { transform:translateY(-4px) scale(1.002); } }
.gallery-modal { position:fixed; inset:0; display:none; align-items:center; justify-content:center; z-index:10050; }
.gallery-modal.open { display:flex; }
.gallery-backdrop { position:absolute; inset:0; background:rgba(10,6,18,0.86); backdrop-filter:blur(6px); }
.gallery-panel { position:relative; width:auto; max-width:min(95vw,960px); max-height:min(90vh,800px); background:rgba(18,8,28,0.96); border:1px solid rgba(255,255,255,0.1); border-radius:28px; padding:1rem 1rem 1.2rem; box-shadow:0 40px 120px rgba(0,0,0,0.55); z-index:1; display:flex; flex-direction:column; gap:0.9rem; }
.modal-close { position:absolute; top:1rem; right:1rem; width:42px; height:42px; border:none; border-radius:50%; background:rgba(255,255,255,0.08); color:var(--text); font-size:1.6rem; cursor:pointer; }
.gallery-viewer { position:relative; display:flex; align-items:center; justify-content:center; width:100%; min-height:min(70vh, 560px); animation: galleryFloat 14s ease-in-out infinite; will-change:transform; }
.viewer-frame { flex:0 1 auto; min-height:0; display:flex; align-items:center; justify-content:center; overflow:hidden; border-radius:22px; background:transparent; padding:0; width:auto; height:auto; }
.viewer-frame img { width:auto; height:auto; max-width:100%; max-height:100%; object-fit:contain; display:block; }
.viewer-nav { position:fixed; top:50%; transform:translateY(-50%); width:54px; height:54px; border:1px solid rgba(255,255,255,0.28); border-radius:50%; background:rgba(10,6,18,0.78); color:#fff; font-size:2rem; cursor:pointer; z-index:10060; box-shadow:0 10px 30px rgba(0,0,0,0.35); backdrop-filter:blur(10px); }
.viewer-nav.prev { left:1.25rem; }
.viewer-nav.next { right:1.25rem; }
.viewer-nav:hover { background:rgba(236,72,153,0.9); border-color:rgba(255,255,255,0.4); transform:translateY(-50%) scale(1.04); }
.gallery-caption { color:var(--text-muted); font-size:0.95rem; margin:0; }
@media(max-width:900px){
  .galerie-grid { min-height:620px; padding:1rem 0 2rem; }
}
@media(max-width:700px){
  .galerie-grid { min-height:520px !important; padding:1rem 0 1.6rem; }
  .gallery-viewer { flex-direction:column; min-height:auto; justify-content:flex-start; }
  .viewer-nav { width:44px; height:44px; font-size:1.6rem; }
  .map-card.google-integration { grid-template-columns:minmax(260px,1fr) minmax(360px,1.2fr); height:auto; max-height:none; }
  .google-map { min-height:320px; }
  .gallery-panel { padding:0.9rem 0.9rem 1rem; }
  .viewer-frame { width:100%; max-width:100%; min-height:auto; }
  .viewer-frame img { max-width:100%; height:auto; }
}
@media(max-width:560px){
  .map-card.google-integration { grid-template-columns:1fr; }
  .google-map { min-height:280px; }
}
.boutique-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:2rem; max-width:1000px; margin:0 auto; }
.produit-card { background:var(--dark2); border:1px solid var(--glass-border); border-radius:20px; overflow:hidden; transition:transform 0.3s,box-shadow 0.3s; }
.produit-card:hover { transform:translateY(-5px); box-shadow:0 15px 40px rgba(236,72,153,0.2); }
.produit-img { height:200px; position:relative; display:flex; align-items:center; justify-content:center; }
.produit-badge { position:absolute; top:1rem; left:1rem; background:rgba(0,0,0,0.5); color:white; font-size:0.75rem; padding:0.3rem 0.8rem; border-radius:20px; border:1px solid rgba(255,255,255,0.2); }
.produit-info { padding:1.5rem; }
.produit-info h4 { font-size:1rem; font-weight:600; margin-bottom:0.4rem; }
.produit-info p { color:var(--text-muted); font-size:0.85rem; margin-bottom:1rem; }
.map-section .map-card,
.produit-footer { display:flex; justify-content:space-between; align-items:center; }
.map-card.google-integration { display:grid; grid-template-columns:1.3fr 0.7fr; gap:1.5rem; align-items:stretch; background:rgba(17,10,28,0.96); border:1px solid rgba(255,255,255,0.12); max-width:1200px; margin:0 auto; height:75vh; max-height:720px; }
.google-panel { background:linear-gradient(180deg,rgba(19,9,37,0.98),rgba(14,5,30,0.98)); color:var(--text); border-radius:24px; padding:1.6rem; box-shadow:0 30px 90px rgba(0,0,0,0.35); border:1px solid rgba(255,255,255,0.08); position:relative; display:flex; flex-direction:column; gap:1rem; min-height:0; overflow:hidden; }
.google-panel::before { content:''; position:absolute; left:0; top:0; width:100%; height:8px; border-top-left-radius:24px; border-top-right-radius:24px; background:linear-gradient(90deg,#ec4899,#a855f7,#f9a8d4,#f472b6); }
.google-panel { padding-top:2.8rem; }
/* Tabs for Google panel */
.google-panel-tabs { display:flex; gap:0.6rem; margin-bottom:0.8rem; }
.tab-btn { background:transparent; color:var(--text); border:1px solid rgba(255,255,255,0.06); padding:0.5rem 0.9rem; border-radius:14px; font-weight:700; cursor:pointer; font-size:0.92rem; }
.tab-btn.tab-btn-active { background:linear-gradient(90deg,rgba(236,72,153,0.18),rgba(168,85,247,0.12)); border-color:rgba(236,72,153,0.28); color:var(--rose-light); }
.google-panel-content { display:block; }
.google-panel-content[data-tab] { display:none; }
.google-panel-content[data-tab="page"] { display:block; }

/* Prevent white edges from Google Maps info windows */
.gm-style .gm-style-iw-d, .gm-style-iw-d, .gm-style .gm-style-iw { background:transparent !important; }
.gm-style .gm-style-iw-d * { background:transparent !important; color:inherit !important; }
/* Aggressive selectors for embedded nodes that may carry white background */
iframe ~ .gm-style, .gm-style, div[style*="background: white"] { background:transparent !important; }

.google-card-header { display:flex; justify-content:space-between; align-items:flex-start; gap:1rem; margin-bottom:1.35rem; position:relative; }
.google-logo { font-size:1rem; font-weight:700; letter-spacing:0.12em; color:var(--text); text-transform:none; }
.google-business { margin-left:0.4rem; font-size:0.9rem; font-weight:700; color:var(--rose-light); letter-spacing:0.08em; text-transform:uppercase; }
.google-letter { font-size:1.7rem; font-weight:700; line-height:1; }
.google-g { color:#4285f4; }
.google-o1 { color:#ea4335; }
.google-o2 { color:#fbbc04; }
.google-g2 { color:#4285f4; }
.google-l { color:#34a853; }
.google-e { color:#ea4335; }
.google-rating { display:flex; flex-wrap:wrap; align-items:center; gap:0.75rem; color:var(--rose-light); font-size:0.95rem; }
.google-rating span { white-space:nowrap; }
.google-stars { color:#fbbc04; letter-spacing:0.05em; font-weight:700; }
.google-info h4 { font-size:1.25rem; margin:0 0 0.45rem; letter-spacing:-0.02em; color:var(--text); }
.google-details { display:grid; gap:1rem; margin-top:1rem; }
.google-details div { display:grid; gap:0.25rem; }
.google-details strong { color:var(--rose-light); font-size:0.82rem; text-transform:uppercase; letter-spacing:0.12em; }
.google-details p { margin:0; color:var(--text-muted); font-size:0.9rem; line-height:1.6; }
.google-info a { color:var(--rose-light); text-decoration:none; }
.google-info a:hover { text-decoration:underline; }
.google-action { display:flex; flex-wrap:wrap; gap:0.75rem; margin-top:1.2rem; }
.btn-google, .btn-google-outline { display:inline-flex; align-items:center; justify-content:center; gap:0.35rem; padding:0.95rem 1.15rem; border-radius:20px; font-size:0.94rem; font-weight:700; text-decoration:none; transition:transform 0.25s,box-shadow 0.25s,background 0.25s; }
.btn-google { background:linear-gradient(135deg,rgba(236,72,153,0.95),rgba(168,85,247,0.95)); color:#fff; border:1px solid transparent; }
.btn-google:hover { transform:translateY(-1px); box-shadow:0 14px 24px rgba(236,72,153,0.2); }
.btn-google-outline { background:rgba(255,255,255,0.08); color:var(--text); border:1px solid rgba(255,255,255,0.16); }
.btn-google-outline:hover { background:rgba(255,255,255,0.14); }
.google-review-summary { margin-top:1.4rem; padding:1.4rem; border-radius:20px; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.10); }
.google-review-summary strong { display:block; margin-bottom:0.65rem; color:var(--rose-light); font-size:0.95rem; letter-spacing:0.12em; text-transform:uppercase; }
.google-review-summary p { margin:0.45rem 0; color:var(--text-muted); line-height:1.8; font-size:0.95rem; }
.google-review-count { color:var(--rose-light); font-weight:700; }
.google-note { margin:1.25rem 0 0; color:var(--text-muted); font-size:0.92rem; line-height:1.7; }
.google-map { border-radius:24px; overflow:hidden; height:100%; background:var(--dark2); border:1px solid rgba(236,72,153,0.22); position:relative; }
.google-map::after { content:''; position:absolute; inset:0; background:linear-gradient(180deg,rgba(236,72,153,0.14),rgba(168,85,247,0.08)); pointer-events:none; mix-blend-mode:screen; opacity:0.3; }
.google-map iframe { width:100%; height:100%; min-height:320px; border:0; filter:contrast(0.95) saturate(0.85) brightness(0.92); position:relative; z-index:1; }
.google-map-loading, .google-map-error { height:100%; display:flex; align-items:center; justify-content:center; text-align:center; padding:1.5rem; color:var(--text); font-size:0.95rem; line-height:1.7; background:rgba(255,255,255,0.03); }
.google-map-error { color:var(--rose-light); }
.prix { font-size:1.4rem; font-weight:700; color:var(--rose); font-family:'Playfair Display',serif; }
.btn-achat { background:linear-gradient(135deg,var(--rose),var(--rose-deep)); color:white; border:none; padding:0.6rem 1.2rem; border-radius:25px; font-size:0.85rem; font-weight:600; cursor:none; transition:transform 0.2s,box-shadow 0.2s; }
.btn-achat:hover { transform:scale(1.05); box-shadow:0 5px 20px rgba(236,72,153,0.5); }
/* Google Maps Info Window aggressive dark styling */
.gm-style-iw-d { background:linear-gradient(135deg,rgba(29,10,24,0.98),rgba(19,5,18,0.98)) !important; border:2px solid rgba(236,72,153,0.6) !important; border-radius:12px !important; box-shadow:0 8px 24px rgba(0,0,0,0.8) !important; }
.gm-style-iw { background:transparent !important; box-shadow:none !important; border:none !important; padding:0 !important; }
.gm-style-iw > button { display:none !important; }
.gm-style-iw-d > button { display:none !important; }
.gm-style-iw-d > div { background:transparent !important; border:none !important; }
.gm-style-iw-d > div:first-child { background:transparent !important; border:none !important; }
.gm-style-iw-d > div:last-child { background:transparent !important; border:none !important; }
.gm-style-iw-tc { background:rgba(236,72,153,0.6) !important; border:none !important; }
.gm-style-iw-tc::before { background:rgba(236,72,153,0.6) !important; border:none !important; }
.gm-style-iw-tc::after { border-bottom-color:rgba(236,72,153,0.6) !important; }
.gm-ui-hover-effect { background:rgba(236,72,153,0.2) !important; border-radius:50% !important; }
div[style*="background: white"] { background:transparent !important; border:none !important; }
div[style*="background: rgb(255, 255, 255)"] { background:transparent !important; border:none !important; }

/* Custom popup wrapper styling (used by CustomPopup) */
.custom-gm-popup { pointer-events:auto; transform:translate(-50%,-110%); }
.custom-gm-popup > div { border-radius:12px; box-shadow:0 14px 40px rgba(0,0,0,0.7); z-index:2147483647; }

/* Force-hiding any remaining InfoWindow chrome */
.gm-style .gm-style-iw, .gm-style .gm-style-iw-d { display:none !important; opacity:0 !important; }
.gm-style .gm-style-iw * { display:none !important; }

/* Force everything inside the Google map container to have transparent backgrounds */
#googleMap .gm-style, #googleMap .gm-style * { background: transparent !important; background-color: transparent !important; box-shadow: none !important; }
#googleMap div[style*="background"] { background: transparent !important; }
#googleMap .gm-style-iw-d, #googleMap .gm-style-iw, #googleMap .gm-style-iw-tc { display:none !important; }


/* Extra aggressive overrides for any remaining white chrome from Google */
.gm-style .gm-style-iw, .gm-style .gm-style-iw-d, .gm-style .gm-style-iw-c, .gm-style .gm-style-iw-tc, .gm-style .gm-style-iw-tc > div { background:transparent !important; box-shadow:none !important; border:none !important; }
.gm-style .gm-style-iw-d, .gm-style .gm-style-iw-d * { background:transparent !important; color:inherit !important; }
.gm-style .gm-style-iw-tc::before, .gm-style .gm-style-iw-tc::after { background:transparent !important; border:none !important; }
/* Fallback for inline style nodes */
div[style*="background:#fff"], div[style*="background:#ffffff"] { background:transparent !important; border:none !important; }

/* Hide default InfoWindow close buttons / chrome if present */
.gm-style .gm-style-iw > button, .gm-style .gm-style-iw-d > button { display:none !important; }

.map-card { background:var(--dark2); border:1px solid var(--glass-border); border-radius:24px; padding:2rem; max-width:950px; margin:0 auto; }
.map-preview { display:grid; grid-template-columns:70px 1fr; gap:1.5rem; align-items:center; background:linear-gradient(135deg,rgba(236,72,153,0.08),rgba(168,85,247,0.08)); border:1px solid rgba(255,255,255,0.08); border-radius:22px; padding:1.75rem; }
.map-pin { width:70px; height:70px; display:flex; align-items:center; justify-content:center; font-size:2rem; background:rgba(236,72,153,0.12); border:1px solid rgba(236,72,153,0.24); border-radius:24px; }
.map-copy h4 { margin:0 0 0.45rem; font-size:1.2rem; }
.map-copy p { margin:0; color:var(--text-muted); line-height:1.8; }
.map-copy a { color:var(--rose-light); text-decoration:underline; transition:color 0.3s; }
.map-copy a:hover { color:var(--rose); }
.info-card a { color:var(--rose-light); text-decoration:underline; }
.info-card a:hover { color:var(--rose); }
.cart-toast { position:fixed; bottom:2rem; right:2rem; background:var(--rose); color:white; padding:1rem 2rem; border-radius:50px; font-weight:600; transform:translateY(100px); opacity:0; transition:all 0.4s; z-index:1000; box-shadow:0 5px 30px rgba(236,72,153,0.5); }
.cart-toast.show { transform:translateY(0); opacity:1; }
.contact-form { max-width:700px; margin:0 auto; display:flex; flex-direction:column; gap:1.5rem; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
.form-group { position:relative; }
.form-group input,.form-group textarea,.form-group select { width:100%; background:var(--dark2); border:1px solid var(--glass-border); color:var(--text); padding:1.2rem 1rem 0.8rem; border-radius:12px; font-family:'Poppins',sans-serif; font-size:0.95rem; outline:none; transition:border-color 0.3s; }
.form-group input:focus,.form-group textarea:focus,.form-group select:focus { border-color:var(--rose); }
.form-group label { position:absolute; top:0.9rem; left:1rem; color:var(--text-muted); font-size:0.85rem; transition:all 0.3s; pointer-events:none; background:transparent; padding:0 0.25rem; }
.form-group input:focus+label,.form-group input:not(:placeholder-shown)+label,.form-group textarea:focus+label,.form-group textarea:not(:placeholder-shown)+label,.form-group select:focus+label,.form-group select:valid+label,.form-group select:invalid+label { top:0.25rem; font-size:0.7rem; color:var(--rose); }
.form-group select:invalid+label { color:var(--text-muted); }
.visually-hidden { position:absolute !important; width:1px !important; height:1px !important; padding:0 !important; margin:-1px !important; overflow:hidden !important; clip:rect(0,0,0,0) !important; white-space:nowrap !important; border:0 !important; }
.form-success { color:#4ade80; text-align:center; font-weight:600; display:none; }
.footer { background:var(--dark2); border-top:1px solid var(--glass-border); padding:3rem 4rem; }
.footer-content { display:flex; justify-content:flex-start; align-items:center; gap:1rem; flex-wrap:wrap; }
.footer-content p { color:var(--text-muted); font-size:0.85rem; margin:0; flex:0 1 auto; text-align:left; max-width:520px; }
.creator-credit {
  display:inline-flex;
  align-items:center;
  gap:0.35rem;
  margin-top:0.35rem;
  color:rgba(245, 230, 240, 0.68);
  font-size:0.78rem;
  line-height:1.4;
  text-align:left;
}
.creator-credit-line {
  display:inline;
}
.creator-credit-dash {
  display:inline;
  color:rgba(245, 230, 240, 0.68);
  font-size:0.95rem;
  letter-spacing:0.2em;
}
.creator-credit a {
  color:rgba(245, 230, 240, 0.78);
  text-decoration:none;
}
.creator-credit a:hover {
  color:var(--rose);
}
.footer-links { display:flex; gap:1rem; align-items:center; margin-left:auto; flex-shrink:0; }
.footer .footer-logo { display:flex; align-items:flex-start; justify-content:flex-start; gap:1rem; flex-direction:row; text-align:left; }
.footer-logo div { align-items:flex-start; text-align:left; }
.creator-credit { white-space:nowrap; }
.footer-legal { width:100%; margin-top:1.5rem; border-top:1px solid rgba(255,255,255,0.08); padding-top:1.5rem; }
.footer-legal summary { cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:0.75rem; padding:1rem 0; color:var(--text); font-size:0.95rem; font-weight:700; letter-spacing:0.08em; list-style:none; text-transform:uppercase; }
.footer-legal summary::-webkit-details-marker { display:none; }
.footer-legal summary::after { content:"\25BE"; font-size:1rem; display:inline-flex; align-items:center; justify-content:center; width:1.8rem; height:1.8rem; border-radius:50%; background:rgba(255,255,255,0.08); transition:transform 0.3s ease; }
.footer-legal[open] summary::after { transform:rotate(180deg); }
.footer-legal .legal-grid { display:grid; grid-template-columns:repeat(3,minmax(180px,1fr)); gap:1.5rem; padding-top:1rem; color:var(--text-muted); font-size:0.95rem; line-height:1.75; }
.footer-legal .legal-grid h3 { margin:0 0 0.75rem; color:var(--rose); font-family:'Playfair Display',serif; font-size:1rem; }
.footer-legal .legal-grid p { margin:0 0 0.85rem; }
.footer-legal .legal-grid a { color:var(--rose-light); text-decoration:underline; }
@media(max-width:900px){
  .footer-legal .legal-grid { grid-template-columns:1fr; }
}
.legal-content { display:grid; gap:1.5rem; padding:1.5rem 1.8rem 2rem; }
.legal-content h3 { margin-bottom:0.75rem; color:var(--rose); font-family:'Playfair Display',serif; font-size:1.15rem; }
.legal-content p { color:var(--text-muted); font-size:0.95rem; line-height:1.8; margin-bottom:0.8rem; }
.legal-content a { color:var(--rose-light); text-decoration:underline; }
@media(max-width:768px){
  .legal { padding:3rem 2rem; }
  .footer-content { justify-content:center; }
  .footer-content p { margin:0.75rem 0; text-align:center; }
  .footer-links { margin-left:0; }
}
.social-link {
  display:inline-flex; align-items:center; justify-content:center;
  gap:0.45rem; color:var(--text-muted); text-decoration:none;
  font-size:0.8rem; font-weight:400; line-height:1;
  padding:0.55rem 1rem; border-radius:30px; border:1px solid transparent;
  transition:all 0.3s ease; background:rgba(255,255,255,0.03);
  white-space:nowrap; vertical-align:middle;
}
.social-link:nth-child(1) { --accent:#ec4899; }
.social-link:nth-child(2) { --accent:#e879f9; }
.social-link:nth-child(3) { --accent:#f472b6; }
.social-link:hover {
  color:var(--accent); border-color:var(--accent);
  background:rgba(236,72,153,0.08);
  box-shadow:0 0 16px rgba(236,72,153,0.15);
  transform:translateY(-2px);
}
.social-icon { width:16px; height:16px; display:block; flex-shrink:0; color:inherit; vertical-align:middle; }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }
.reveal { opacity:0; transform:translateY(40px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
@media(max-width:768px){
  .navbar { padding:0.95rem 1rem; }
  .logo { font-size:0.95rem; gap:0.9rem; max-width:65%; margin-left:0; }
  .logo-img { width:56px; height:56px; min-width:56px; min-height:56px; max-width:56px; max-height:56px; }
  .footer-logo .logo-img { width:46px; height:46px; min-width:46px; min-height:46px; max-width:46px; max-height:46px; }
  .footer .footer-logo { flex-direction:column; align-items:center; text-align:center; }
  .footer .footer-logo div { display:flex; flex-direction:column; align-items:center; text-align:center; gap:0.35rem; width:100%; }
  .footer .footer-logo span { text-align:center; }
  .footer .footer-logo .creator-credit { display:flex; flex-direction:column; align-items:center; margin-top:0.6rem; }
  .footer-content { justify-content:center; }
  .footer-links { margin-left:0; justify-content:center; }
  .nav-links { display:none; flex-direction:column; position:absolute; top:calc(100% + 0.5rem); left:0; right:0; background:rgba(20,10,18,0.97); padding:1rem 1rem 1.4rem; gap:1rem; border-bottom:1px solid var(--glass-border); max-height:calc(100vh - 5rem); overflow-y:auto; z-index:120; }
  .nav-links.open { display:flex; }
  .nav-links a { font-size:0.95rem; padding:0.45rem 0; }
  .hamburger { display:flex; }
  .hero { padding-top: calc(88px + 1rem); }
  .hero-content { padding:0 1rem; }
  .hero-title { font-size:clamp(2.4rem,10vw,5rem); }
  .hero-title .title-text { flex-direction:column; align-items:flex-start; gap:0.5rem; }
  .hero-title .title-ici { display:inline-block; margin-top:0.3em; }
  section { padding:4rem 1.2rem; }
  .stats { flex-wrap:wrap; gap:2rem; }
  .galerie-grid { min-height:640px; padding:1rem 0 2rem; }
  .form-row { grid-template-columns:1fr; }
  .form-group select { appearance:none; -webkit-appearance:none; -moz-appearance:none; background-image:url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22%23fdf2f8%22 stroke-width=%222%22%3E%3Cpath d=%22M6 9l6 6 6-6%22/%3E%3C/svg%3E'); background-repeat:no-repeat; background-position:calc(100% - 1rem) center; background-size:1rem; padding-right:2.5rem; }
  .footer-content { flex-direction:column; text-align:center; }
  .footer-links { flex-wrap:wrap; justify-content:center; }
}

@media(max-width:640px){
  .hero { min-height:auto; padding-top: calc(88px + 1rem); padding-bottom:4.5rem; }
  .hero-content { padding:0 1rem; }
  .hero-tagline { font-size:0.8rem; margin-bottom:1rem; }
  .hero-title { font-size:clamp(2rem,13vw,4rem); max-width:100%; line-height:1.05; }
  .hero-title .title-text { flex-direction:column; align-items:flex-start; gap:0.75rem; }
  .hero-title .title-ici { margin-top:0.2rem; }
  .hero-sub { font-size:1rem; margin-bottom:2rem; }
  .btn-main, .btn-secondary { width:100%; justify-content:center; }
  .scroll-down { bottom:1rem; left:50%; transform:translateX(-50%); padding:0.75rem 1rem; }
  section { padding:3rem 1rem; }
  .section-header { margin-bottom:2rem; }
  .info-grid, .cours-grid, .boutique-grid, .google-details { gap:1rem; }
  .cours-card { padding:1.8rem 1.4rem; }
  .card-icon { font-size:2rem; }
  .cours-card h3 { font-size:1.2rem; }
  .galerie-grid { min-height:auto; padding:1rem 0 1.5rem; display:grid; grid-template-columns:repeat(auto-fit,minmax(140px,1fr)); gap:1rem; justify-items:center; }
  .galerie-item { position:absolute !important; margin:0 !important; }
  .galerie-item img { border-radius:18px; }
  .gallery-viewer { flex-direction:column; gap:1rem; min-height:auto; }
  .viewer-nav { position:fixed; top:50%; transform:translateY(-50%); width:44px; height:44px; margin:0; }
  .viewer-nav.prev { left:1rem; }
  .viewer-nav.next { right:1rem; }
  .gallery-panel { max-width:100vw; max-height:calc(100vh - 1rem); padding:0.9rem 0.9rem 1rem; }
  .viewer-frame { width:100%; max-width:100%; min-height:auto; }
  .viewer-frame img { width:100%; height:auto; }
  .map-card.google-integration { grid-template-columns:1fr; gap:1rem; height:auto; max-height:none; }
  .google-map { min-height:260px; }
  .google-card-header { flex-direction:column; align-items:flex-start; }
  .google-action { width:100%; }
}

@media(max-width:480px){
  .navbar { padding:0.85rem 1rem; }
  .logo { gap:0.85rem; }
  .hero-title { font-size:clamp(1.8rem,14vw,3.6rem); }
  .hero-sub { font-size:0.95rem; }
  .btn-main { padding:0.9rem 1rem; }
  .btn-secondary { padding:0.85rem 0.95rem; }
  .cours-card { padding:1.6rem 1.2rem; }
  .google-panel { padding:1.2rem; }
  .btn-google, .btn-google-outline { width:100%; }
  .footer { padding:2rem 1rem; }
}
