/* RESET DE BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #2f2438;
  background:
    radial-gradient(circle at top left, rgba(249, 226, 166, 0.45), transparent 60%),
    radial-gradient(circle at top right, rgba(114, 65, 224, 0.35), transparent 65%),
    radial-gradient(circle at bottom left, rgba(114, 65, 224, 0.10), transparent 70%),
    radial-gradient(circle at bottom right, rgba(249, 226, 166, 0.18), transparent 70%),
    #f7f5fb;
  line-height: 1.5;
  overflow-x: hidden; /* mobile-first: jamais de scroll horizontal */
}


img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ANIMATIONS DOUCES */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* HEADER PREMIUM TRANSPARENT + NAV AU SCROLL */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 1.2rem 0 0.6rem;
  background: transparent;
  /* transparent au début */
  transition: background 0.35s ease,
    padding 0.35s ease,
    box-shadow 0.35s ease;
}

.site-header.scrolled {
  background: #ffffff;
  /* blanc après scroll */
  padding: 0.6rem 0 0.3rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

/* Logo rond, bien visible */
.brand {
  width: 130px;
  height: 130px;
  border-radius: 999px;
  overflow: hidden;
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* NAV cachée au début, visible seulement quand scrolled */

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.main-nav a {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  position: relative;
  padding-bottom: 0.3rem;
  transition: opacity 0.25s ease;
  opacity: 0;
  /* caché au départ */
  pointer-events: none;
}

/* ligne sous le lien */
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #7241e0, #f3c86b);
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Quand on a scrolled → nav visible et cliquable */
.site-header.scrolled .main-nav a {
  opacity: 0.95;
  pointer-events: auto;
}

/* Couleur du texte du menu après scroll (sur fond blanc) */
.site-header.scrolled .main-nav a {
  color: #3a2d4e;
}

/* =========================
   BURGER MENU (MOBILE)
   ========================= */

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.30);
  background: rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  cursor: pointer;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.96);
}

.site-header.scrolled .nav-toggle {
  border-color: rgba(58, 45, 78, 0.25);
  background: rgba(255, 255, 255, 0.85);
  color: rgba(58, 45, 78, 0.95);
}

.nav-toggle-icon {
  width: 22px;
  height: 22px;
  display: block;
}

/* Affichage burger / close selon l'état */
#header.nav-open .nav-toggle-icon--menu {
  display: none;
}

#header:not(.nav-open) .nav-toggle-icon--close {
  display: none;
}

.nav-toggle-line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
}

.nav-toggle-line + .nav-toggle-line {
  margin-top: 4px;
}

.site-header.scrolled .nav-toggle-line {
  background: rgba(58, 45, 78, 0.95);
}






/* HERO – plus minimal */

.hero {
  position: relative;
  /* important pour la vague */
  background: radial-gradient(circle at top left, #f9e2a6 0, #7241e0 42%, #301546 100%);
  color: #ffffff;
  padding: 4rem 0 6.5rem;
  overflow: hidden;
  /* pour ne pas déborder sur les côtés */
}

/* Vague de transition en bas du hero */
.hero-wave {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 140px;
  /* vague plus grande pour casser l'effet bloc */
}

.hero-wave-path {
  fill: #fdfbff;
  /* même couleur que le fond de la page */
  stroke: none;
  /* pas de contour noir */
}




.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.6rem;
  align-items: center;
}

.hero-text {
  animation: fadeUp 0.55s ease-out;
}

.hero-tagline {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  opacity: 0.9;
}

.hero-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(2.4rem, 4vw, 3rem);
  margin: 0.7rem 0 0.8rem;
  line-height: 1.1;
}

.hero-subtitle {
  max-width: 30rem;
  line-height: 1.6;
  font-size: 0.98rem;
  opacity: 0.96;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: #f9e2a6;
  color: #301546;
  margin-top: 1.5rem;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* HERO IMAGES – composition propre, non coupée */

.hero-images {
  position: relative;
  height: 320px;
  animation: fadeUp 0.65s ease-out;
}

.hero-img {
  position: absolute;
  width: 72%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 1.4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-img:nth-child(1) {
  left: -5%;
  bottom: -3%;
  width: 52%;
  opacity: 0.95;
}

.hero-img:nth-child(2) {
  right: 0;
  top: 5%;
}

.hero-images:hover .hero-img:nth-child(1) {
  transform: translateY(-4px);
}

.hero-images:hover .hero-img:nth-child(2) {
  transform: translateY(2px);
}

/* SECTIONS GÉNÉRALES */

section {
  padding: 3.4rem 0;
  animation: fadeUp 0.5s ease-out;
}

.section-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.5rem;
  width: 4.2rem;
  height: 3px;
  background:
    linear-gradient(to right, #d9b974, #f7e7b2, #d9b974) top,
    linear-gradient(to right, #b89454, #e5cf99) bottom;
  background-size: 100% 1px, 100% 2px;
  background-repeat: no-repeat;
  border-radius: 999px;
}


.section-text {
  max-width: 40rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}


/* COLLECTIONS */

.collections {
  background: #fdfbff;
}

.collection-block+.collection-block {
  margin-top: 2.5rem;
}

.collection-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.collection-text {
  margin-bottom: 1.1rem;
  opacity: 0.9;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.3rem;
}

.product-card {
  background: #ffffff;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(114, 65, 224, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease;

  /* IMPORTANT : largeur maîtrisée + centrage */
  width: 100%;
  max-width: 360px;
  justify-self: center;
}

.product-card img {
  width: 100%;
  /* Images générées en 1200×1600 -> ratio 3/4 : on affiche tout, sans rogner */
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #f6f2f7;
  display: block;
}

.product-caption {
  padding: 0.8rem 1rem 1.1rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #7a628f;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(243, 200, 107, 0.9);
}


/* Centrer le titre + le texte de la galerie */
#gallery .section-title,
#gallery .section-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Centrer le petit trait sous "Galerie Inspiration" */
#gallery .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* ==== CORDELETTE DORÉE GALERIE (pleine largeur) ==== */

.gallery-ribbon {
  margin: 1.5rem 0 1.8rem;
  display: flex;
  justify-content: center;
}

.gallery-ribbon-svg {
  width: 100%;
  /* aussi large que le bloc de la galerie / carrousel */
  height: 60px;
}

.gallery-ribbon-path {
  fill: none;
  stroke: #f3c86b;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1.4s ease-out;
}

/* Quand la section galerie est en vue → on dessine la cordelette */
.gallery.in-view .gallery-ribbon-path {
  stroke-dashoffset: 0;
}


/* TESTIMONIALS */

.testimonials {
  background: #f7f5fb;
}

.testimonials-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
  margin-top: 1.6rem;
}

.testimonial {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 0.6rem;
}

.testimonial-author {
  font-size: 0.9rem;
  color: #7a628f;
}

/* CONTACT */

.contact {
  background: #ffffff;
}

/* La section Contact doit rester "contenue" et aérée sur desktop (évite l'effet bord à bord). */
.contact .container{
  width: min(980px, 100% - 3rem);
}

@media (max-width: 600px){
  .contact .container{
    width: min(980px, 100% - 2rem);
  }
}

/* Grille : infos à gauche, plan à droite (passe en 1 colonne sur mobile) */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.6rem;
  margin-top: 1.6rem;

  /* centre la grille à l'intérieur du container et limite la largeur perçue */
  justify-items: stretch;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: #ffffff;
  border-radius: 1.1rem;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.contact-card-title {
  margin: 0;
  font-size: 1.1rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.85rem;
}

.contact-details a {
  color: #7241e0;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-block {
  margin-top: 0.35rem;
  color: #3e2a4a;
}

.contact-map {
  margin-top: 1rem;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(114, 65, 224, 0.18);
}

.contact-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.contact-links {
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact-links a {
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  border: 1px solid #7241e0;
  font-size: 0.9rem;
  background: #ffffff;
  transition: background 0.2s ease, color 0.2s ease,
    box-shadow 0.2s ease, transform 0.15s ease;
}

.contact-links a:hover {
  background: #7241e0;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.site-footer {
  position: relative;
  margin-top: 0;
  color: #ffffff;
  background:
    radial-gradient(circle at bottom right, #f9e2a6 0, #7241e0 40%, #301546 100%);
  padding: 7rem 0 3rem;
  overflow: hidden;
}


/* Vague plus haute et remontée */
.footer-wave {
  position: absolute;
  top: -90px;
  /* remonte la vague */
  left: 0;
  width: 100%;
  pointer-events: none;
  overflow: visible;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 220px;
  /* augmente la hauteur de la vague */
}


.footer-wave-path {
  fill: #ffffff;
  /* même fond que la page */
  stroke: none;
}

/* Contenu footer */

.footer-inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.footer-main {
  max-width: 260px;
}

.footer-logo {
  display: block;
  max-height: 80px;
  width: auto;
  margin-bottom: 0.9rem;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.footer-tagline {
  margin: 0;
  opacity: 0.9;
}

/* Bloc contact dans le footer */

.footer-contact {
  min-width: 260px;
}

.footer-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.9rem;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 3.4rem;
  height: 2px;
  background:
    linear-gradient(to right, #d9b974, #f7e7b2, #d9b974) top,
    linear-gradient(to right, #b89454, #e5cf99) bottom;
  background-size: 100% 1px, 100% 2px;
  background-repeat: no-repeat;
  border-radius: 999px;
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 0.2rem;
  color: #fdf8ea;
  opacity: 0.95;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.footer-contact-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.footer-contact-icon {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(247, 231, 178, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.footer-contact-text {
  font-size: 0.9rem;
}

/* Bas de footer */

.footer-bottom {
  margin-top: 2.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  opacity: 0.9;
}

.footer-legal {
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.05rem;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.footer-legal:hover {
  border-color: rgba(247, 231, 178, 0.9);
  opacity: 1;
}

/* Responsive footer */

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Waves plus discrètes sur mobile */
  .footer-wave {
    top: -50px;
  }

  .footer-wave svg {
    height: 140px;
  }

  .hero-wave svg {
    height: 90px;
  }
}


/* RESPONSIVE */

@media (max-width: 900px) {
  /* Header mobile : logo + burger sur une seule ligne (pas de chevauchement) */
  .site-header {
    padding: 0.45rem 0;
  }

  .site-header.scrolled {
    padding: 0.30rem 0;
  }

  .header-center {
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
  }

  .brand {
    width: 56px;
    height: 56px;
  }

  .site-header.scrolled .brand {
    width: 48px;
    height: 48px;
  }

  /* Header mobile : burger + menu déroulant */
  .nav-toggle {
    display: inline-flex;
    margin-top: 0;
    position: absolute;
    right: 0;
    top: 0;
  }

  .main-nav {
    width: 100%;
  }

  .main-nav ul {
    display: none;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.75rem 0.6rem 0.6rem;
    margin-top: 0.55rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.20);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .main-nav a {
    opacity: 1;
    pointer-events: auto;
    color: #3a2d4e;
    padding: 0.65rem 0.9rem;
    border-radius: 0.9rem;
  }

  .main-nav a::after {
    display: none;
  }

  #header.nav-open .main-nav ul {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .hero-subtitle {
    margin-inline: auto;
  }

  .hero-images {
    margin-top: 2rem;
    height: auto;
    display: flex;
    gap: 0.85rem;
    justify-content: center;
  }

  .hero-img {
    position: static;
    width: min(260px, 45vw);
    height: 220px;
    border-radius: 1.25rem;
  }

  .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}



/* ==== SECTION GALERIE – fond doré lumineux ==== */

.gallery {
  background: #ffffff00;
  /* laisse voir le dégradé derrière */
}

#gallery .section-title,
#gallery .section-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#gallery .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* bloc du carrousel */
.carousel {
  position: relative;
  padding: 4rem 0;
  border-radius: 2rem;
  background: radial-gradient(circle at 15% 50%,
      rgba(255, 215, 140, 0.55),
      transparent 60%),
    radial-gradient(circle at 85% 50%,
      rgba(255, 215, 140, 0.45),
      transparent 65%),
    linear-gradient(90deg, #e8b97a 0%, #bc70ff 50%, #4030aa 100%);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  color: #ffffff;
}

/* zone qui contient les slides */
.carousel-track {
  position: relative;
  height: min(420px, 65vh);
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y; /* permet le swipe horizontal sans bloquer le scroll vertical */
  user-select: none;
}

/* base : toutes les slides en dessous */
.carousel-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 1;
  /* niveau de base */
}

/* slide ACTIVE : toujours tout devant */
.carousel-slide.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
  z-index: 3;
  /* la plus haute → au-dessus des autres */
}

/* slides gauche / droite : derrière l’active */
.carousel-slide.is-prev {
  opacity: 0.9;
  transform: translate(calc(-50% - 220px), -50%) rotate(-6deg) scale(0.85);
  z-index: 2;
}

.carousel-slide.is-next {
  opacity: 0.9;
  transform: translate(calc(-50% + 220px), -50%) rotate(6deg) scale(0.85);
  z-index: 2;
}


.carousel-media {
  width: 380px;
  /* largeur ajustée aux images */
  height: 500px;
  /* hauteur standard */
  padding: 0;
  /* plus de marge inutile */
  background: transparent;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.carousel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* remplissage net */
  border-radius: 12px;
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}


/* flèches */

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #ffffff;
  transform: translateY(-50%) translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.carousel-btn-prev {
  left: 2rem;
  z-index: 5;
}

.carousel-btn-next {
  right: 2rem;
  z-index: 5;
}

.carousel-btn-icon {
  font-size: 1.4rem;
  line-height: 1;
}

/* petits points en bas */

.carousel-dots {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: width 0.25s ease,
    background 0.25s ease,
    transform 0.15s ease;
}

.carousel-dot.is-active {
  width: 24px;
  background: #f9e2a6;
  transform: translateY(-1px);
}

/* responsive */

@media (max-width: 900px) {
  .carousel {
    padding-inline: 1.1rem;
  }

  .carousel-track {
    height: min(360px, 60vh);
  }

  .carousel-btn {
    display: none;
    /* sur mobile, on garde juste le swipe et les dots */
  }
}

/* Mobile : carrousel plus "petit" pour montrer clairement qu'il y a des cartes
   à gauche/droite (effet peek plus marqué). On ne touche pas au rendu desktop. */
@media (max-width: 600px) {
  .carousel {
    /* On allège la section : moins "épais" pour laisser respirer ce qu'il y a en dessous */
    padding: 2.2rem 0 2rem;
  }

  .carousel-track {
    /* Hauteur plus basse sur mobile pour libérer de l'espace sous le carrousel */
    height: min(250px, 44vh);
  }

  .carousel-media {
    /* plus petit sur mobile pour laisser voir clairement les slides voisins */
    width: 210px;
    height: 240px;
  }

  .carousel-dots {
    margin-top: 0.85rem;
  }

  .carousel-slide.is-prev {
    opacity: 0.6;
    transform: translate(calc(-50% - 190px), -50%) rotate(-12deg) scale(0.68);
  }

  .carousel-slide.is-next {
    opacity: 0.6;
    transform: translate(calc(-50% + 190px), -50%) rotate(12deg) scale(0.68);
  }
}

/* Très petits téléphones : on accentue encore l'effet "peek" */
@media (max-width: 420px) {
  .carousel-track {
    height: min(235px, 42vh);
  }

  .carousel-media {
    width: 200px;
    height: 230px;
  }

  .carousel-dots {
    margin-top: 0.7rem;
  }

  .carousel-slide.is-prev {
    opacity: 0.55;
    transform: translate(calc(-50% - 185px), -50%) rotate(-13deg) scale(0.66);
  }

  .carousel-slide.is-next {
    opacity: 0.55;
    transform: translate(calc(-50% + 185px), -50%) rotate(13deg) scale(0.66);
  }
}



/* ==== UNIVERS (Découvrez notre univers) ==== */

.universe {
  background: #fdfbff;
  /* on réduit un peu le padding haut de la section pour rapprocher le titre de la vague */
  padding: 1.8rem 0 3.4rem;
}

.universe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
  margin-top: 2.8rem;

  /* IMPORTANT : on centre les cartes dans leur colonne pour éviter l'effet “plein écran” */
  justify-items: center;
}


.universe-card {
  color: inherit;
  text-decoration: none;
  background: #ffffff;
  border-radius: 1.3rem;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;

  /* IMPORTANT : largeur maîtrisée + centrage (mobile-first) */
  width: 100%;
  max-width: 360px;
  justify-self: center;
}

.section-title-link{
  color: inherit;
  text-decoration: none;
}

.section-title-link:hover{
  text-decoration: underline;
}


/* Pages Collections : grilles plus denses (sans impacter la home) */
.collections-page .universe-grid,
.collection-page .products-grid{
  gap: 1.35rem;
}

.collections-page .universe-grid{
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 1.8rem;
}

.collections-page .universe-card{
  max-width: 420px;
}

.collection-page .products-grid{
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}


/* Pages collections */
.collections-page,
.collection-page{
  background: #fdfbff;
  /* Le header est en position fixed avec un logo large : on laisse de l'espace en haut
     pour éviter que le logo ne chevauche la bande dorée / le contenu. */
  padding: 8.6rem 0 3.4rem;
  position: relative;
}

@media (max-width: 768px) {
  .collections-page,
  .collection-page{
    padding: 11.2rem 0 3.0rem;
  }
}


/* Pages Collections : header plus clean (centré) */
.collections-page .section-title,
.collection-page .section-title{
  text-align: center;
}

.collections-page .section-text,
.collection-page .section-text{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 1.35rem;
}

/* Pages Collections : ruban doré plus proche du texte */
.collections-page .gallery-ribbon,
.collection-page .gallery-ribbon{
  margin-top: 0.6rem;
}


.breadcrumb{
  display: inline-block;
  margin-bottom: 1.2rem;
  color: rgba(30,30,40,0.75);
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

.breadcrumb:hover{
  text-decoration: underline;
}



/* Breadcrumbs : toujours cliquables même avec le header fixed (qui capte les clics) */
.collection-page .breadcrumb,
.product-page .breadcrumb{
  position: relative;
  z-index: 60; /* header z-index = 50 */
}

/* Vague légère pour les pages Collections (pour rappeler la home) */
.page-wave{
  margin: 1.0rem 0 1.4rem;
  line-height: 0;
  pointer-events: none;
}

.page-wave svg{
  display:block;
  width:100%;
  height: 76px;
}

.page-wave-path{
  fill: #ffffff;
  stroke: none;
}

.products-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  margin-top: 2.0rem;

  /* Même logique que les collections : les cartes ne doivent pas s'étirer sur toute la largeur */
  justify-items: center;
}

/* ==== Mentions légales ==== */

.legal-page {
  background: #fdfbff;
}



.legal-nav{
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 1.35rem;
}

.legal-nav-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(79, 58, 110, 0.18);
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.legal-nav-link:hover,
.legal-nav-link[aria-current='page']{
  transform: translateY(-1px);
  border-color: rgba(210, 174, 92, 0.55);
  box-shadow: 0 12px 24px rgba(61, 40, 91, 0.08);
}

.legal-warning{
  margin: 0;
  font-weight: 700;
  color: #7d3f12;
}

.footer-legal-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}
.legal-card{
  background: #ffffff;
  border-radius: 1.3rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
  padding: 1.25rem 1.4rem;
  margin-bottom: 1.1rem;
  max-width: 900px;
}

.legal-title{
  font-family: "Georgia", "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 1.0rem;
  margin: 0 0 0.8rem;
}

.legal-list{
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.legal-note{
  margin-top: 0.8rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

.product-card{
  background: #ffffff;
  border-radius: 1.3rem;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;

  /* IMPORTANT : largeur maîtrisée + centrage */
  width: 100%;
  max-width: 360px;
  justify-self: center;
}

.product-media{
  width: 100%;
  /* 1200×1600 -> 3/4 */
  aspect-ratio: 3 / 4;
  height: auto;
  overflow: hidden;
  background: #f6f2f7;
}

.product-media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-content{
  padding: 1.1rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.product-title{
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.15rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin: 0;
}

.product-text{
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
}

.product-tag{
  align-self: flex-start;
  font-size: 0.8rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(249,214,107,0.2);
}

.product-price{
  margin-top: 0.25rem;
  font-weight: 700;
}

/* Product page (full width card) */
.product-card-link{
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-page{
  padding: 8.5rem 0 3rem;
}
.product-page .container{
  max-width: 1100px;
}

.product-full{
  background: #ffffff;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.product-full-media{
  /* 1200×1600 -> 3/4 : affiche l'image entière */
  aspect-ratio: 3 / 4;
  height: auto;
  overflow: hidden;
  background: #f6f2f7;
}

.product-full-media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.product-full-content{
  padding: 1.7rem 1.7rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.product-full-title{
  font-family: "Georgia", "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin: 0;
  font-size: 1.55rem;
}

.product-full-price{
  margin: 0;
  font-weight: 800;
  font-size: 1.15rem;
}

.product-full-description{
  margin: 0;
  opacity: 0.92;
  line-height: 1.7;
  font-size: 1.02rem;
}

.product-full-cta{
  align-self: flex-start;
  margin-top: 0.5rem;
}

.product-gallery{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.1rem;
  margin-top: 1.1rem;
}

.product-gallery img{
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #f6f2f7;
  display: block;
  border-radius: 1.2rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px){
  .product-full{
    grid-template-columns: 1fr;
  }
  .product-full-media{
    /* garde le ratio, donc pas de hauteur fixe */
    height: auto;
  }
}

/* Widescreen product page: utilise mieux l'espace sans casser le mobile */
@media (min-width: 1200px){
  .product-page .container{
    max-width: 1320px;
  }
  .product-full{
    grid-template-columns: 1fr 520px;
  }
  .product-full-media{
    /* évite une carte trop haute sur grands écrans */
    max-height: 78vh;
  }
  .product-full-media img{
    height: 100%;
  }
}


/* --- UNIVERS : affichage complet des images dans les cartes --- */

.universe-card-media {
  width: 100%;
  /* 1200×1600 -> 3/4 */
  aspect-ratio: 3 / 4;
  height: auto;
  overflow: hidden;
  border-radius: 1.3rem 1.3rem 0 0;
  background: #f6f2f7;
}

.universe-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.3s ease;
}


.universe-card:hover .universe-card-media img {
  transform: scale(1.03);
  /* petit zoom léger au hover */
}


.universe-card-content {
  padding: 1.1rem 1.3rem 1.4rem;
}

.universe-card-title {
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}

.universe-card-text {
  font-size: 0.95rem;
  opacity: 0.9;
}

.universe-card:hover .universe-card-media img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .logo {
    height: 60px;
  }


}

/* === CENTRAGE TITRES + SOUS-TITRES + TRAIT === */

.universe .section-title,
.universe .section-text,
.testimonials .section-title,
.testimonials .section-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* Soulignement centré + un peu plus long */
.universe .section-title::after,
.testimonials .section-title::after {
  left: 50%;
  transform: translateX(-50%);
  width: 4.2rem;
  /* longueur augmentée */
}

/* === MOBILE CAROUSEL OVERRIDES === */
@media (max-width: 640px) {
  /* Galerie (carrousel) : rendre le swipe évident (peek) */
  .carousel {
    padding: 2.4rem 0;
    border-radius: 1.6rem;
  }

  .carousel-track {
    height: min(360px, 62vh);
  }

  .carousel-media {
    width: min(78vw, 320px);
    height: min(340px, 52vh);
    border-radius: 18px;
  }

  /* Montrer un bout des slides adjacentes */
  .carousel-slide.is-prev {
    opacity: 0.55;
    transform: translate(calc(-50% - 42vw), -50%) rotate(-4deg) scale(0.9);
  }

  .carousel-slide.is-next {
    opacity: 0.55;
    transform: translate(calc(-50% + 42vw), -50%) rotate(4deg) scale(0.9);
  }

  /* Les flèches prennent trop de place sur mobile */
  .carousel-btn {
    display: none;
  }

  .carousel-dots {
    margin-top: 1.1rem;
  }
}


/* Contact section social links */
.contact-social{margin-top:1rem;}
.contact-social-list{list-style:none;padding:0;margin:0;display:flex;gap:.75rem;flex-wrap:wrap;}
.contact-social-link{text-decoration:none;}
.contact-hours-line{line-height:1.4;}


/* Social icons (Contact) */
.social-icon{display:inline-flex;align-items:center;justify-content:center;width:28px;height:28px;}
.social-icon svg{width:24px;height:24px;display:block;}



/* Contact: social icons inline with map button */
.contact-links{display:flex;gap:1rem;flex-wrap:wrap;align-items:center;}
.contact-links li{list-style:none;}
.contact-social-inline{display:flex;gap:.5rem;align-items:center;margin-left:.25rem;}
.contact-social-icon{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:999px;border:1px solid rgba(120,120,120,.35);text-decoration:none;}
.contact-social-icon:hover{transform:translateY(-1px);}

/* Nav "Commande" – dégradé or majoritaire + violet */
.main-nav a.nav-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.95rem;
  line-height: 1;
  margin: 0;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(135deg, #d6b15a 0%, #e7c56f 55%, #6a33a1 135%);
  color: #2b163f;
  border: 1px solid rgba(91, 45, 139, 0.35);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.main-nav a.nav-order-btn:hover,
.main-nav a.nav-order-btn:focus-visible {
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(0,0,0,0.16);
}

.main-nav a.nav-order-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}

/* Modal Commande */
.order-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.order-modal.is-open { display: block; }

.order-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 30, 0.55);
  backdrop-filter: blur(2px);
}

.order-modal__dialog {
  position: relative;
  max-width: 560px;
  margin: 12vh auto 0;
  background: #fff;
  border-radius: 14px;
  padding: 22px 22px 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
  border: 1px solid rgba(214, 177, 90, 0.55);
}

.order-modal__dialog h3 {
  margin: 0 0 10px;
  color: #2b163f;
}

.order-modal__dialog p {
  margin: 0;
  line-height: 1.55;
  color: #3c2a4a;
}

.order-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: rgba(60, 42, 74, 0.75);
}

.order-modal__close:hover { color: #2b163f; }

@media (max-width: 640px) {
  .order-modal__dialog { margin: 10vh 14px 0; }
  .main-nav a.nav-order-btn { padding: 0.4rem 0.8rem; font-size: 0.85rem; }
}

.modal-open { overflow: hidden; }



@media (min-width: 1100px){
  .collections-page .container,
  .collection-page .container{
    width: min(1200px, 100% - 3.2rem);
  }
}

/* =========================
   E-COMMERCE
   ========================= */
.catalog-page {
  padding: 12rem 0 4rem;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1.5rem;
}

.checkout-card,
.empty-state {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(114,65,224,0.08);
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(48,21,70,0.08);
  padding: 1.5rem;
}

.checkout-form label,
.cart-qty,
.product-qty {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.checkout-form input,
.checkout-form select,
.cart-qty input,
.product-qty input {
  border: 1px solid rgba(58,45,78,0.18);
  border-radius: 12px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  background: #fff;
}

.checkout-intro {
  margin: 0.4rem 0 1rem;
  color: rgba(58,45,78,0.78);
  line-height: 1.55;
}

.form-alert {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
}

.form-alert-error {
  background: rgba(193, 61, 93, 0.09);
  border: 1px solid rgba(193, 61, 93, 0.24);
  color: #8a2744;
}

.field-help {
  color: rgba(58,45,78,0.64);
}

.field-error {
  color: #a4385b;
  font-weight: 600;
}

.checkout-form input.is-invalid,
.checkout-form select.is-invalid {
  border-color: rgba(164, 56, 91, 0.65);
  box-shadow: 0 0 0 2px rgba(164, 56, 91, 0.12);
}

.checkout-form .checkbox-row.is-invalid {
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(164, 56, 91, 0.45);
  border-radius: 14px;
  background: rgba(164, 56, 91, 0.05);
}

.checkout-form input:disabled,
.checkout-form select:disabled,
.button-primary[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.is-hidden {
  display: none !important;
}

.checkout-note-warning {
  margin-top: 0.8rem;
  color: #8a2744;
  font-weight: 600;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.checkbox-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.7rem !important;
  margin: 1rem 0;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
}

.button-primary {
  color: #fff;
  background: linear-gradient(90deg, #7241e0, #f3c86b);
}

.button-secondary {
  color: #3a2d4e;
  background: rgba(114,65,224,0.10);
}

.link-danger {
  display: inline-block;
  margin-top: 1rem;
  color: #a4385b;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.cart-row,
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(58,45,78,0.08);
}

.cart-row {
  align-items: center;
}

.cart-row-media {
  width: 90px;
  height: 110px;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 auto;
}

.cart-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-row-main { flex: 1; }
.cart-row-title { margin: 0 0 0.25rem; font-size: 1.1rem; }
.cart-row-meta { margin: 0 0 0.75rem; color: rgba(58,45,78,0.72); }
.cart-row-side { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end; }
.checkout-totals, .summary-total { padding-top: 1rem; }
.checkout-totals p, .summary-total { display: flex; justify-content: space-between; font-size: 1.1rem; }
.checkout-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.25rem; }
.checkout-note { color: rgba(58,45,78,0.72); }
.product-buy-row { display: flex; gap: 1rem; align-items: end; margin-top: 1.25rem; }

@media (max-width: 860px) {
  .checkout-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .catalog-page {
    padding-top: 10rem;
  }

  .cart-row {
    display: grid;
    grid-template-columns: 90px 1fr;
  }

  .cart-row-side {
    grid-column: 1 / -1;
    align-items: flex-start;
  }

  .product-buy-row {
    flex-direction: column;
    align-items: stretch;
  }
}

.product-carousel {
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: inherit;
  height: 100%;
}

.product-carousel-track {
  height: 100%;
  min-height: 0;
}

.product-carousel-slide,
.product-carousel-slide.is-active,
.product-carousel-slide.is-prev,
.product-carousel-slide.is-next {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: none;
}

.product-carousel-slide {
  opacity: 0;
  pointer-events: none;
}

.product-carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.product-carousel-slide.is-prev,
.product-carousel-slide.is-next {
  opacity: 0;
  z-index: 1;
}

.product-carousel-media {
  width: 100%;
  height: 100%;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.product-carousel-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.product-carousel-btn {
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: rgba(24, 18, 30, 0.34);
  border-color: rgba(255,255,255,0.86);
  z-index: 4;
}

.product-carousel-btn:hover {
  transform: translateY(-50%);
}

.product-carousel .carousel-btn-prev {
  left: 0.9rem;
}

.product-carousel .carousel-btn-next {
  right: 0.9rem;
}

.product-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  z-index: 4;
  margin-top: 0;
}

@media (max-width: 900px) {
  .product-carousel {
    padding: 0;
  }

  .product-carousel .carousel-btn {
    display: inline-flex;
  }

  .product-carousel-btn {
    width: 38px;
    height: 38px;
  }

  .product-carousel .carousel-btn-prev {
    left: 0.6rem;
  }

  .product-carousel .carousel-btn-next {
    right: 0.6rem;
  }

  .product-carousel-dots {
    bottom: 0.65rem;
  }
}


/* === Collections : descriptif mis en valeur + cartes stables === */
.collection-hero-card{
  max-width: 840px;
  margin: 0 auto 2rem;
  padding: 2rem 2.2rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(250,245,252,0.96));
  border: 1px solid rgba(193, 162, 79, 0.22);
  border-radius: 1.8rem;
  box-shadow: 0 20px 45px rgba(33, 24, 56, 0.08);
  position: relative;
  overflow: hidden;
}

.collection-hero-card::before{
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212,175,55,0.18), rgba(212,175,55,0) 70%);
  pointer-events: none;
}

.collection-hero-kicker{
  margin: 0 0 0.7rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  color: #a8842a;
}

.collection-hero-card .section-title,
.collection-hero-card .section-text{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.collection-hero-card .section-title::after{
  left: 50%;
  transform: translateX(-50%);
}

.collection-hero-description{
  max-width: 700px;
  margin: 1.3rem auto 0;
  padding: 1.1rem 1.25rem;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(46, 35, 78, 0.08);
  border-radius: 1.1rem;
}

.collection-hero-description .section-text{
  margin: 0;
  line-height: 1.9;
}

.universe-card{
  min-height: 100%;
}

.universe-card-link{
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.universe-card-content{
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.universe-card-text{
  margin: 0;
  line-height: 1.7;
}

.universe-card-text--clamped{
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.7em * 4);
  position: relative;
}


.universe-card-more{
  margin: 0 1.3rem 1.35rem;
  align-self: flex-start;
  border: 0;
  background: transparent;
  color: #3b2a62;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 0;
}

.universe-card-more:hover{
  text-decoration: underline;
}

.text-modal{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  padding: 1.2rem;
}

.text-modal.is-open{
  display: flex;
}

.text-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(24, 16, 41, 0.55);
  backdrop-filter: blur(3px);
}

.text-modal-dialog{
  position: relative;
  width: min(100%, 720px);
  max-height: min(85vh, 760px);
  overflow: auto;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2rem 1.7rem 1.6rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.text-modal-close{
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  border: 0;
  background: transparent;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  color: #3b2a62;
}

.text-modal-kicker{
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.78rem;
  color: #a8842a;
}

.text-modal-title{
  margin: 0 0 1rem;
  font-family: "Georgia", "Times New Roman", serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #231846;
}

.text-modal-body{
  margin: 0;
  line-height: 1.9;
  color: rgba(38, 30, 56, 0.92);
  white-space: pre-line;
}

@media (max-width: 768px){
  .collection-hero-card{
    padding: 1.5rem 1.1rem;
    border-radius: 1.4rem;
  }

  .collection-hero-description{
    padding: 1rem;
  }

  .text-modal-dialog{
    padding: 1.5rem 1.1rem 1.2rem;
  }
}
