/** Shopify CDN: Minification failed

Line 25:0 All "@import" rules must come first

**/
/* ===========================================================
   GLOWDZ CINEMATIC LUXE - Rosé Glam Edition
   Palette + Animations + Custom Cursor + Transitions
   =========================================================== */

:root {
  --glow-blush: #F8E1E7;
  --glow-pink: #EC4899;
  --glow-rose-gold: #E8B4B8;
  --glow-rose-deep: #D4869A;
  --glow-charcoal: #2D1B2E;
  --glow-cream: #FFF5F5;
  --glow-gold: #D4AF37;
  --glow-shadow-soft: 0 10px 40px rgba(232, 180, 184, 0.3);
  --glow-shadow-deep: 0 25px 60px rgba(45, 27, 46, 0.15);
  --glow-transition: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Typography luxe */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

body, .glowdz-cinematic {
  font-family: 'Inter', sans-serif;
  background: var(--glow-cream);
  color: var(--glow-charcoal);
  cursor: none;
}

h1, h2, h3, .glowdz-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* ============ CUSTOM CURSOR LUXE ============ */
.glowdz-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--glow-pink);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--glow-transition), height 0.3s var(--glow-transition), background 0.3s ease;
  mix-blend-mode: difference;
}

.glowdz-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1.5px solid var(--glow-rose-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s var(--glow-transition), height 0.3s var(--glow-transition);
}

.glowdz-cursor.hover { width: 24px; height: 24px; background: var(--glow-gold); }
.glowdz-cursor-ring.hover { width: 70px; height: 70px; border-color: var(--glow-gold); }

@media (max-width: 768px) {
  .glowdz-cursor, .glowdz-cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ============ HERO 3D SECTION ============ */
.glowdz-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--glow-cream) 0%, var(--glow-blush) 50%, #FCE7EC 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 5%;
}

.glowdz-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 80%; height: 200%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 60%);
  animation: glowdzFloat 20s ease-in-out infinite;
}

@keyframes glowdzFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.1); }
}

.glowdz-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .glowdz-hero-grid { grid-template-columns: 1fr; text-align: center; }
}

.glowdz-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--glow-charcoal) 0%, var(--glow-pink) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glowdz-hero-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(45, 27, 46, 0.75);
  margin-bottom: 36px;
  max-width: 480px;
}

.glowdz-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.glowdz-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.4s var(--glow-transition);
  cursor: none;
  position: relative;
  overflow: hidden;
}

.glowdz-btn-primary {
  background: var(--glow-charcoal);
  color: var(--glow-cream);
  box-shadow: var(--glow-shadow-deep);
}

.glowdz-btn-primary:hover {
  background: var(--glow-pink);
  transform: translateY(-2px);
  box-shadow: 0 30px 60px rgba(236, 72, 153, 0.3);
}

.glowdz-btn-secondary {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  color: var(--glow-charcoal);
  border: 1px solid var(--glow-rose-gold);
}

.glowdz-btn-secondary:hover {
  background: var(--glow-rose-gold);
  color: var(--glow-cream);
}

/* 3D canvas container */
.glowdz-3d-container {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glowdz-3d-canvas {
  width: 100%;
  height: 100%;
}

.glowdz-3d-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.4) 0%, transparent 70%);
  filter: blur(60px);
  z-index: -1;
  animation: glowdzPulse 4s ease-in-out infinite;
}

@keyframes glowdzPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.9; }
}

/* ============ REVEAL ANIMATIONS ============ */
.glowdz-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s var(--glow-transition), transform 1s var(--glow-transition);
}

.glowdz-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.glowdz-reveal-delay-1 { transition-delay: 0.15s; }
.glowdz-reveal-delay-2 { transition-delay: 0.3s; }
.glowdz-reveal-delay-3 { transition-delay: 0.45s; }

/* ============ PARALLAX SECTIONS ============ */
.glowdz-parallax-section {
  position: relative;
  padding: 120px 5%;
  overflow: hidden;
}

.glowdz-parallax-bg {
  position: absolute;
  top: -20%; left: 0;
  width: 100%; height: 140%;
  z-index: -1;
  will-change: transform;
}

/* Trust badge */
.glowdz-trust {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--glow-charcoal);
  margin-bottom: 24px;
  border: 1px solid rgba(232, 180, 184, 0.3);
}

.glowdz-trust-dot {
  width: 8px; height: 8px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}/* === FALLBACK: contenu visible si JS ne charge pas === */
.glowdz-reveal {
  opacity: 1 !important;
  transform: none !important;
}

.glowdz-hero-content {
  position: relative;
  z-index: 10;
}

.glowdz-3d-canvas {
  min-height: 400px;
  background-image: var(--product-fallback);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Hide custom cursor temporarily until JS fix */
.glowdz-cursor, .glowdz-cursor-ring {
  display: none !important;
}

body {
  cursor: auto !important;
}