/** Shopify CDN: Minification failed

Line 72:0 Unexpected "}"
Line 72:6 Unterminated string token
Line 73:6 Unterminated string token
Line 74:6 Unterminated string token

**/

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --white:  #ffffff;
  --black:  #0a0a0a;
  --gray:   #888;
  --light:  #f5f5f7;
  --radius-btn: 980px;
  --ease: cubic-bezier(0.4,0,0.2,1);
  --font: -apple-system, 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font); background: #ffffff; color: #0a0a0a; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200; height: 56px;
  background: rgba(255,255,255,0);
  backdrop-filter: saturate(180%) blur(0px);
  -webkit-backdrop-filter: saturate(180%) blur(0px);
  display: flex; align-items: center; justify-content: space-between; padding: 0 2.4rem;
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.nav-logo {
  font-size: 0.95rem; font-weight: 800; letter-spacing: 0.18em;
  color: #0a0a0a; text-decoration: none; text-transform: uppercase;
}
.nav-links {
  display: flex; gap: 2.2rem; list-style: none;
}
.nav-links a {
  font-size: 0.72rem; letter-spacing: 0.14em; font-weight: 500;
  color: rgba(0,0,0,0.65); text-decoration: none; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--black); }
.nav-actions { display: flex; gap: 0.8rem; align-items: center; }
.nav-icon-btn {
  background: none; border: none; cursor: pointer; color: rgba(0,0,0,0.75);
  transition: color 0.2s; padding: 0.3rem; display: flex;
}
.nav-icon-btn:hover { color: var(--white); }

/* ════════════════
   HERO SLIDER
════════════════ */
.hero { position: relative; width: 100%; height: 100vh; overflow: hidden; }

.hero-track {
  display: flex; width: 300%; height: 100%;
  transition: transform 0.9s var(--ease);
}
.hero-slide {
  width: 33.333%; height: 100%; position: relative; flex-shrink: 0;
  display: flex; align-items: flex-end;
}
/* Images réelles */
}"); }
}"); }
}"); }

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center top;
}
/* Dégradé sombre bas (lisibilité texte) */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.1) 70%, transparent 100%);
}

/* Contenu texte pleine largeur */
.slide-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0 3.5rem 4.5rem;
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s 0.25s var(--ease), transform 0.8s 0.25s var(--ease);
}
.hero-slide.active .slide-content {
  opacity: 1; transform: translateY(0);
}
.slide-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.22em; font-weight: 500;
  color: rgba(255,255,255,0.55); text-transform: uppercase;
  display: block; margin-bottom: 0.9rem;
}
.slide-title {
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 0.92;
  color: var(--white); text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.slide-body {
  font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.6;
  letter-spacing: 0.02em; margin-bottom: 2rem; max-width: 480px;
}
.slide-cta-row { display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; }

/* Boutons Apple pill — adaptés sur fond sombre */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: #ffffff; color: #0a0a0a; border: none;
  border-radius: var(--radius-btn);
  padding: 0.72rem 1.6rem; font-family: var(--font); font-size: 0.82rem; font-weight: 600;
  letter-spacing: -0.01em; cursor: pointer; text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary:hover { opacity: 0.88; transform: scale(0.98); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: rgba(255,255,255,0.15); color: #ffffff;
  border: 1px solid rgba(255,255,255,0.3); border-radius: var(--radius-btn);
  padding: 0.72rem 1.6rem; font-family: var(--font); font-size: 0.82rem; font-weight: 500;
  letter-spacing: -0.01em; cursor: pointer; text-decoration: none;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.5); transform: scale(0.98); }

/* Flèches nav */
.hero-arrows {
  position: absolute; top: 1.8rem; right: 1.8rem;
  display: flex; gap: 2px; pointer-events: none; z-index: 10;
}
.hero-arrow {
  pointer-events: all; width: 44px; height: 44px; border-radius: 0;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.85rem; color: var(--white);
  transition: background 0.2s;
}
.hero-arrow:hover { background: rgba(0,0,0,0.45); }

/* Dots — coin bas droit comme le mockup */
.hero-dots {
  position: absolute; bottom: 2.4rem; right: 2.8rem;
  display: flex; gap: 8px; z-index: 10; align-items: center;
}
.hero-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.3); cursor: pointer; border: none;
  transition: all 0.35s;
}
.hero-dot.active { background: var(--white); transform: scale(1.2); }

/* Barre de progression */
.hero-progress {
  position: absolute; bottom: 0; left: 0; height: 2px;
  background: rgba(0,0,0,0.5); width: 0%; z-index: 10;
}

/* ════════════════════════════
   SECTION 2 — CAROUSEL
════════════════════════════ */
.products-section {
  background: #f5f5f7;
  padding: 6rem 0 5rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.section-header { text-align: center; margin-bottom: 3.5rem; padding: 0 2rem; }
.section-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.22em; font-weight: 500;
  color: rgba(0,0,0,0.5); text-transform: uppercase;
  display: block; margin-bottom: 0.7rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900;
  letter-spacing: -0.04em; color: #0a0a0a; line-height: 1.0;
  text-transform: uppercase;
}

/* ── CAROUSEL FLAT ── */
.carousel-scene {
  position: relative; width: 100%; height: 560px;
  overflow: hidden;
}
.carousel-inner {
  display: flex; height: 100%;
  transition: transform 0.7s var(--ease);
}
.p-card {
  flex: 0 0 33.333%; height: 100%;
  border-radius: 0; overflow: hidden;
  background: #e8e8ed; cursor: pointer;
  will-change: filter, opacity;
  transition: filter 0.7s var(--ease), opacity 0.7s var(--ease), box-shadow 0.7s var(--ease);
  position: relative;
  border-right: 1px solid rgba(255,255,255,0.04);
}
.p-card.pos-center {
  filter: none; z-index: 10;
  box-shadow: none;
}
.p-card.pos-left {
  filter: brightness(0.3) blur(3px); z-index: 5;
}
.p-card.pos-right {
  filter: brightness(0.3) blur(3px); z-index: 5;
}
.p-card.pos-far-left {
  filter: brightness(0.15) blur(5px); opacity: 0.5; z-index: 1;
}
.p-card.pos-far-right {
  filter: brightness(0.15) blur(5px); opacity: 0.5; z-index: 1;
}
.p-card.pos-hidden { filter: brightness(0); opacity: 0; pointer-events: none; }

/* Image pleine carte */
.p-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
}
/* Overlay dégradé sombre bas + droite */
.p-card-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.05) 100%),
    linear-gradient(to left, rgba(0,0,0,0.4) 0%, transparent 55%);
}
/* Icône placeholder */
.p-card-bg .ph-icon {
  position: relative; z-index: 2;
  font-size: 2.5rem; opacity: 0.15;
}

/* Séparateur vertical centré */
.p-card-divider {
  position: absolute; top: 0; left: 50%; bottom: 0;
  width: 1px; background: rgba(255,255,255,0.25); z-index: 3;
}

/* Titre vertical — centré sur la ligne, limité en hauteur pour ne pas déborder sur les infos */
.p-card-vtitle {
  position: absolute; left: 50%; top: 0; bottom: 180px;
  transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center;
  z-index: 4; overflow: hidden;
}
.p-card-vtitle span {
  font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; letter-spacing: 0.02em;
  color: #ffffff; text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  line-height: 1;
  white-space: nowrap;
  max-height: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Infos bas — toute la largeur, séparées du titre */
.p-card-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.2rem 1.4rem 1.6rem;
  z-index: 5;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.65) 70%, transparent 100%);
  display: flex; flex-direction: column; gap: 0.3rem;
  min-height: 170px;
}
.p-badge {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  display: block; margin-bottom: 0.2rem;
}
.p-badge.new { color: var(--black); }
.p-name {
  font-size: 0.88rem; font-weight: 800; letter-spacing: 0.04em;
  color: var(--white); line-height: 1.2; text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.p-desc { font-size: 0.7rem; color: rgba(255,255,255,0.4); line-height: 1.4; margin-bottom: 0.8rem; }
.p-card-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
}
.p-price { display: none; }
.btn-cart {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-btn); padding: 0.46rem 1.1rem;
  font-family: var(--font); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-cart:hover { background: var(--white); color: var(--black); border-color: var(--white); transform: scale(0.97); }

.carousel-ctrl {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 2px; padding: 1rem 2rem 0; margin-top: 0;
}
.c-arrow {
  width: 44px; height: 44px; border-radius: 0;
  background: rgba(0,0,0,0.07); border: 1px solid rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.85rem; color: var(--black);
  transition: background 0.2s;
}
.c-arrow:hover { background: rgba(0,0,0,0.15); }
.c-dots { display: flex; gap: 6px; align-items: center; margin-right: auto; padding-left: 2rem; }
.c-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(0,0,0,0.2); cursor: pointer; border: none;
  transition: all 0.3s;
}
.c-dot.active { background: var(--black); width: 18px; border-radius: 3px; }



/* ── FOOTER ── */
footer {
  background: #f5f5f7;
  border-top: 1px solid rgba(0,0,0,0.07);
}

/* Feed Instagram */
.foot-insta {
  padding: 2.8rem 2rem 0;
}
.foot-insta-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.2rem; padding: 0 0.2rem;
}
.foot-insta-handle {
  font-size: 1rem; font-weight: 800; letter-spacing: 0.01em;
  color: #0a0a0a; text-decoration: none; text-transform: uppercase;
  transition: opacity 0.2s;
}
.foot-insta-handle:hover { opacity: 0.7; }
.foot-follow {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em;
  color: var(--black); text-transform: uppercase; text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.4);
  padding-bottom: 1px; transition: border-color 0.2s;
}
.foot-follow:hover { border-color: var(--black); }

/* Scroll horizontal du feed */
.foot-feed-wrap {
  position: relative; overflow: hidden;
}
.foot-feed {
  display: flex; gap: 6px;
  overflow-x: auto; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
  padding-bottom: 4px;
  cursor: grab;
}
.foot-feed:active { cursor: grabbing; }
.foot-feed::-webkit-scrollbar { display: none; }
.foot-feed-item {
  flex: 0 0 140px; height: 140px;
  background: #ddd; overflow: hidden;
  cursor: pointer; transition: opacity 0.25s;
  border-radius: 2px;
}
.foot-feed-item:hover { opacity: 0.8; }
.foot-feed-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
/* Placeholder couleur pour les cases sans image */
.foot-feed-item.ph { background: #e0e0e0; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; opacity: 0.25; }
/* Flèches feed */
.foot-feed-arrows {
  display: flex; justify-content: flex-end; gap: 2px;
  padding: 0.8rem 0.2rem 0;
}
.feed-arrow {
  background: rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.15);
  color: #0a0a0a; width: 44px; height: 44px; border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.82rem; z-index: 10;
  transition: background 0.2s;
}
.feed-arrow:hover { background: rgba(0,0,0,0.12); }

/* Newsletter */
.foot-newsletter {
  text-align: center; padding: 3rem 2rem 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.foot-nl-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  color: #0a0a0a; text-transform: uppercase; margin-bottom: 1.4rem;
}
.foot-nl-form {
  display: flex; align-items: center; justify-content: center;
  gap: 0; max-width: 440px; margin: 0 auto 1.8rem;
  border-bottom: 1px solid rgba(0,0,0,0.35);
}
.foot-nl-input {
  flex: 1; background: transparent; border: none; outline: none;
  font-family: var(--font); font-size: 0.82rem;
  color: #0a0a0a; padding: 0.6rem 0.8rem 0.6rem 0;
  letter-spacing: 0.02em;
}
.foot-nl-input::placeholder { color: rgba(0,0,0,0.35); }
.foot-nl-btn {
  background: transparent; border: none; cursor: pointer;
  font-family: var(--font); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.15em; text-transform: uppercase; color: #0a0a0a;
  padding: 0.6rem 0; white-space: nowrap;
  transition: opacity 0.2s;
}
.foot-nl-btn:hover { opacity: 0.6; }

/* Icônes sociales */
.foot-socials {
  display: flex; align-items: center; justify-content: center;
  gap: 1.6rem;
}
.foot-social-icon {
  color: #0a0a0a; opacity: 0.75; transition: opacity 0.2s;
  text-decoration: none; display: flex;
}
.foot-social-icon:hover { opacity: 1; }

/* Barre légale */
.foot-legal {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  padding: 1.4rem 2rem;
}
.foot-copy { font-size: 0.68rem; color: rgba(0,0,0,0.5); letter-spacing: 0.04em; white-space: nowrap; }
.foot-legal-links { display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; justify-content: center; }
.foot-legal-links a {
  font-size: 0.68rem; color: rgba(0,0,0,0.55); text-decoration: none;
  letter-spacing: 0.04em; transition: color 0.2s;
}
.foot-legal-links a:hover { color: #0a0a0a; }


/* ════════════════════════════
   SECTION SLOGANS TYPEWRITER
════════════════════════════ */
.slogan-section {
  background: var(--white);
  padding: 7rem 2rem;
  border-top: 1px solid rgba(0,0,0,0.07);
  display: flex; align-items: center; justify-content: center;
  min-height: 28vh;
}
.slogan-inner {
  text-align: center; max-width: 900px;
}
.slogan-label {
  font-size: 0.65rem; letter-spacing: 0.22em; font-weight: 500;
  color: rgba(0,0,0,0.45); text-transform: uppercase;
  display: block; margin-bottom: 1.8rem;
}
.slogan-text {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.05;
  color: var(--black); text-transform: uppercase;
  min-height: 1.2em;
}
.slogan-cursor {
  display: inline-block; width: 3px; height: 0.85em;
  background: var(--black); margin-left: 4px;
  vertical-align: middle;
  animation: blink 0.75s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
@media (max-width: 768px) {
  .foot-feed-item { flex: 0 0 100px; height: 100px; }
  .foot-legal { flex-direction: column; text-align: center; }
  .foot-legal-links { justify-content: center; }
  .feed-arrow { display: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 1.2rem; }
  .nav-links { display: none; }
  .slide-content { padding: 0 1.5rem 5.5rem; }
  .slide-title { font-size: clamp(3rem, 14vw, 5rem); }
  .carousel-scene { height: 480px; }
  .carousel-ctrl .c-arrow { display: none; }
  .hero-arrow { display: none; }
  .form-row-2 { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 1.2rem; text-align: center; }
  .foot-links { display: none; }
}
