/* =========================
   VITRINE INTENSIFY — Page d'accueil publique
   Mobile-first, sombre, accents rose/violet, ton adulte assumé
========================= */

/* ----- Popup 18+ ----- */
.age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.88);
  box-sizing: border-box;
}
.age-gate-overlay.age-gate-hidden {
  display: none;
}
.age-gate-content {
  background: #17171c;
  border: 1px solid #26262c;
  border-radius: 16px;
  padding: 28px 24px;
  max-width: 340px;
  width: 100%;
  min-width: 0;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 374px) {
  .age-gate-overlay {
    padding: 16px;
  }
  .age-gate-content {
    padding: 20px 16px;
  }
  .vitrine-hero {
    padding: 24px 12px 40px;
  }
  .vitrine-hero-title {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }
}
.age-gate-title {
  margin: 0 0 24px 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: #eee;
  line-height: 1.4;
}
.age-gate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 14px 20px;
  box-sizing: border-box;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  background: #ff4d8d;
  color: #fff;
  cursor: pointer;
}
.age-gate-btn:hover {
  background: #ff6b88;
}

.vitrine-page {
  background: #0a0a0c;
}

/* ----- Topbar ----- */
.vitrine-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(10, 10, 12, 0.92);
  border-bottom: 1px solid rgba(38, 38, 44, 0.8);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.vitrine-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ff4d8d;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.vitrine-logo:hover {
  color: #ff6b8a;
}

.vitrine-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vitrine-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  box-sizing: border-box;
  color: #b8b8b8;
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

.vitrine-nav a:hover {
  color: #ff4d8d;
  background: rgba(255, 77, 109, 0.08);
}

.vitrine-topbar .auth-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Mon compte : icône personnage rose à gauche */
.vitrine-topbar .auth-buttons .btn-account {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.vitrine-topbar .auth-buttons .btn-account::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff4d8d'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

.vitrine-topbar .auth-buttons .btn-account:hover::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff6b8a'%3E%3Cpath d='M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
}

/* Déconnexion : style discret, pas le gros bouton rose */
.vitrine-topbar .auth-buttons .btn-logout {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  box-sizing: border-box;
  font-size: 0.9rem;
  background: transparent;
  border: 1px solid rgba(255, 77, 109, 0.35);
  color: #b8b8b8;
  border-radius: 6px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.vitrine-topbar .auth-buttons .btn-logout:hover {
  color: #ff6b8a;
  border-color: rgba(255, 77, 109, 0.6);
  background: rgba(255, 77, 109, 0.06);
}

/* ----- Main ----- */
.vitrine-main {
  flex: 1;
}

.vitrine-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* =========================
   1) HERO
========================= */
/* Bougie + bulles : fond sombre + 2 lueurs ambre/rose + 3 bulles avec contours */
.vitrine-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px 48px;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0a0c 0%, #0d0d10 100%);
  text-align: center;
}

@media (min-width: 768px) {
  .vitrine-hero {
    padding: 48px 20px 56px;
  }
}

/* ----- Hero : 2 lueurs bougie (::before/::after) + 3 bulles (blob + ring) ----- */
.background-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Lueurs bougie : 2 halos ambre/rose très flous (sans contours) */
.background-blobs::before,
.background-blobs::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.6;
  animation: blob-float 32s ease-in-out infinite;
  will-change: transform;
}

.background-blobs::before {
  width: min(380px, 95vw);
  height: min(380px, 95vw);
  top: -18%;
  left: -12%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 185, 145, 0.8) 0%, rgba(255, 130, 145, 0.5) 40%, rgba(200, 90, 105, 0.2) 70%, transparent 85%);
  animation-duration: 30s;
  animation-delay: 0s;
}

.background-blobs::after {
  width: min(320px, 85vw);
  height: min(320px, 85vw);
  bottom: -22%;
  right: -18%;
  top: auto;
  left: auto;
  background: radial-gradient(circle at 50% 50%, rgba(255, 155, 165, 0.75) 0%, rgba(255, 115, 140, 0.5) 42%, rgba(215, 85, 110, 0.2) 72%, transparent 88%);
  animation-duration: 28s;
  animation-delay: -10s;
}

@media (min-width: 768px) {
  .background-blobs::before,
  .background-blobs::after {
    filter: blur(100px);
    opacity: 0.55;
  }
  .background-blobs::before {
    width: 500px;
    height: 500px;
    top: -22%;
    left: -15%;
  }
  .background-blobs::after {
    width: 440px;
    height: 440px;
    bottom: -28%;
    right: -22%;
  }
}

/* Bulles : 3 formes roses avec contours */
.background-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: blob-float 25s ease-in-out infinite;
  will-change: transform;
}

.background-blob-1 {
  width: min(300px, 80vw);
  height: min(300px, 80vw);
  top: -10%;
  left: -18%;
  border-radius: 58% 42% 52% 48% / 48% 55% 45% 52%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 77, 109, 0.85) 0%, rgba(255, 77, 109, 0.5) 38%, rgba(200, 40, 85, 0.22) 62%, transparent 80%);
  animation-duration: 28s;
  animation-delay: 0s;
}

.background-blob-2 {
  width: min(260px, 70vw);
  height: min(260px, 70vw);
  top: 28%;
  right: -12%;
  left: auto;
  border-radius: 45% 55% 48% 52% / 52% 48% 55% 45%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 138, 0.8) 0%, rgba(255, 77, 109, 0.45) 42%, rgba(220, 50, 90, 0.2) 65%, transparent 82%);
  animation-duration: 22s;
  animation-delay: -8s;
}

.background-blob-3 {
  width: min(240px, 65vw);
  height: min(240px, 65vw);
  bottom: -8%;
  left: 15%;
  border-radius: 52% 48% 42% 58% / 55% 45% 52% 48%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 77, 109, 0.75) 0%, rgba(230, 57, 107, 0.4) 44%, rgba(196, 30, 80, 0.18) 65%, transparent 82%);
  animation-duration: 30s;
  animation-delay: -15s;
}

/* Contours bulles */
.background-blob-ring {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(255, 77, 109, 0.35);
  background: transparent;
  pointer-events: none;
  animation: blob-float 25s ease-in-out infinite;
  will-change: transform;
}

.background-blob-ring-1 {
  width: min(300px, 80vw);
  height: min(300px, 80vw);
  top: -10%;
  left: -18%;
  border-radius: 58% 42% 52% 48% / 48% 55% 45% 52%;
  animation-duration: 28s;
  animation-delay: 0s;
}

.background-blob-ring-2 {
  width: min(260px, 70vw);
  height: min(260px, 70vw);
  top: 28%;
  right: -12%;
  left: auto;
  border-radius: 45% 55% 48% 52% / 52% 48% 55% 45%;
  animation-duration: 22s;
  animation-delay: -8s;
}

.background-blob-ring-3 {
  width: min(240px, 65vw);
  height: min(240px, 65vw);
  bottom: -8%;
  left: 15%;
  border-radius: 52% 48% 42% 58% / 55% 45% 52% 48%;
  animation-duration: 30s;
  animation-delay: -15s;
}

@media (min-width: 768px) {
  .background-blob {
    filter: blur(50px);
    opacity: 0.5;
  }
  .background-blob-1 {
    width: 400px;
    height: 400px;
    top: -15%;
    left: -15%;
  }
  .background-blob-2 {
    width: 340px;
    height: 340px;
    top: 25%;
    right: -10%;
  }
  .background-blob-3 {
    width: 320px;
    height: 320px;
    bottom: -12%;
    left: 12%;
  }
  .background-blob-ring-1 {
    width: 400px;
    height: 400px;
    top: -15%;
    left: -15%;
  }
  .background-blob-ring-2 {
    width: 340px;
    height: 340px;
    top: 25%;
    right: -10%;
  }
  .background-blob-ring-3 {
    width: 320px;
    height: 320px;
    bottom: -12%;
    left: 12%;
  }
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(7%, -5%) scale(1.06); }
  50% { transform: translate(-5%, 4%) scale(0.97); }
  75% { transform: translate(4%, 6%) scale(1.03); }
}

/* Grain subtil (CSS uniquement : SVG feTurbulence en data URI) */
.background-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

.vitrine-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.vitrine-hero-title {
  margin: 0 0 20px 0;
  font-size: clamp(1.5rem, 5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.28;
  color: #f0f0f0;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: vitrine-fade-up 0.8s ease-out forwards;
}

.vitrine-hero-title em {
  font-style: normal;
  color: #ff4d8d;
  font-weight: 700;
  text-shadow: 0 0 24px rgba(255, 77, 109, 0.35);
}

.vitrine-hero-subtitle {
  margin: 0 0 16px 0;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: #ff6b8a;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: vitrine-fade-up 0.8s ease-out 0.15s forwards;
}

.vitrine-hero-ambiance {
  margin: 0 0 48px 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #a8a8a8;
  opacity: 0;
  animation: vitrine-fade-up 0.8s ease-out 0.28s forwards;
}

.vitrine-cta {
  display: inline-block;
  padding: 16px 28px;
  min-height: 52px;
  box-sizing: border-box;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

@media (min-width: 768px) {
  .vitrine-cta {
    padding: 18px 32px;
    min-height: 56px;
    font-size: 1.2rem;
  }
}

.vitrine-cta-main {
  background: linear-gradient(135deg, #c41e50 0%, #e6396b 50%, #ff4d8d 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(255, 77, 109, 0.35), 0 0 40px rgba(255, 77, 109, 0.15);
  opacity: 0;
  animation: vitrine-fade-up 0.8s ease-out 0.4s forwards;
}

.vitrine-cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 77, 109, 0.45), 0 0 50px rgba(255, 77, 109, 0.2);
  background: linear-gradient(135deg, #d02258 0%, #eb4d75 50%, #ff6b8a 100%);
}

.vitrine-hero-micro {
  margin: 20px 0 0 0;
  font-size: 0.8rem;
  color: #666;
  letter-spacing: 0.04em;
  opacity: 0;
  animation: vitrine-fade-up 0.8s ease-out 0.5s forwards;
}

.vitrine-hero-reviews {
  margin: 14px 0 0 0;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ff8fa3;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: vitrine-fade-up 0.8s ease-out 0.6s forwards;
}

@media (min-width: 768px) {
  .vitrine-hero-reviews {
    margin: 18px 0 0 0;
    font-size: 1.35rem;
  }
}

@keyframes vitrine-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   2) À QUI C'EST DESTINÉ — 4 cartes
========================= */
.vitrine-section {
  padding: 56px 0 64px;
}

.vitrine-who {
  background: #0d0d10;
  border-top: 1px solid rgba(38, 38, 44, 0.5);
}

.vitrine-section-title {
  margin: 0 0 36px 0;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #f0f0f0;
  text-align: center;
  letter-spacing: -0.01em;
}

.vitrine-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.vitrine-card {
  background: rgba(22, 22, 26, 0.7);
  border: 1px solid rgba(255, 77, 109, 0.28);
  border-radius: 14px;
  padding: 24px 22px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.vitrine-card:hover {
  border-color: rgba(255, 77, 109, 0.45);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 24px rgba(255, 77, 109, 0.08);
  transform: translateY(-2px);
}

.vitrine-card-title {
  margin: 0 0 10px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ff6b8a;
  line-height: 1.35;
}

.vitrine-card-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #b0b0b0;
}

/* =========================
   3) JEU PERSONNALISABLE (même fond hero : bulles + grain, 2 bulles seulement)
========================= */
.vitrine-custom {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0a0c 0%, #0d0d10 100%);
  border-top: 1px solid rgba(38, 38, 44, 0.5);
}

.vitrine-custom-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Bulle gauche (même style que hero) */
.custom-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: blob-float 25s ease-in-out infinite;
  will-change: transform;
}

.custom-blob-1 {
  width: min(300px, 80vw);
  height: min(300px, 80vw);
  top: -10%;
  left: -18%;
  border-radius: 58% 42% 52% 48% / 48% 55% 45% 52%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 77, 109, 0.85) 0%, rgba(255, 77, 109, 0.5) 38%, rgba(200, 40, 85, 0.22) 62%, transparent 80%);
  animation-duration: 28s;
  animation-delay: 0s;
}

/* Bulle bas droite, plus petite */
.custom-blob-2 {
  width: min(140px, 38vw);
  height: min(140px, 38vw);
  bottom: -5%;
  right: 8%;
  left: auto;
  top: auto;
  border-radius: 45% 55% 48% 52% / 52% 48% 55% 45%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 138, 0.8) 0%, rgba(255, 77, 109, 0.45) 42%, rgba(220, 50, 90, 0.2) 65%, transparent 82%);
  animation-duration: 22s;
  animation-delay: -8s;
}

.custom-blob-ring {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.08), 0 0 0 1px rgba(255, 77, 109, 0.35);
  background: transparent;
  pointer-events: none;
  animation: blob-float 25s ease-in-out infinite;
  will-change: transform;
}

.custom-blob-ring-1 {
  width: min(300px, 80vw);
  height: min(300px, 80vw);
  top: -10%;
  left: -18%;
  border-radius: 58% 42% 52% 48% / 48% 55% 45% 52%;
  animation-duration: 28s;
  animation-delay: 0s;
}

.custom-blob-ring-2 {
  width: min(140px, 38vw);
  height: min(140px, 38vw);
  bottom: -5%;
  right: 8%;
  left: auto;
  top: auto;
  border-radius: 45% 55% 48% 52% / 52% 48% 55% 45%;
  animation-duration: 22s;
  animation-delay: -8s;
}

@media (min-width: 768px) {
  .custom-blob {
    filter: blur(50px);
    opacity: 0.5;
  }
  .custom-blob-1 {
    width: 400px;
    height: 400px;
    top: -15%;
    left: -15%;
  }
  .custom-blob-2 {
    width: 180px;
    height: 180px;
    bottom: -8%;
    right: 12%;
  }
  .custom-blob-ring-1 {
    width: 400px;
    height: 400px;
    top: -15%;
    left: -15%;
  }
  .custom-blob-ring-2 {
    width: 180px;
    height: 180px;
    bottom: -8%;
    right: 12%;
  }
}

.custom-grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

.vitrine-custom .vitrine-container {
  position: relative;
  z-index: 1;
}

.vitrine-custom-content {
  margin-bottom: 40px;
}

.vitrine-custom-block {
  margin: 0 0 20px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #c0c0c0;
}

.vitrine-custom-block:last-child,
.vitrine-custom-last {
  margin-bottom: 0;
}

.vitrine-custom-block strong,
.vitrine-custom-block .vitrine-highlight {
  color: #ff6b8a;
  font-weight: 600;
}

/* Mots mis en valeur (rythme, intensité, contrôle) — on les entoure en JS ou on utilise une classe si besoin ; ici on stylise le bloc */
.vitrine-custom-last {
  color: #e0e0e0;
}

/* Progression visuelle par niveaux */
.vitrine-levels-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
  padding: 16px 0 0;
}

.vitrine-level-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 77, 109, 0.35);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.vitrine-level-dot[data-level="1"] { background: rgba(255, 77, 109, 0.4); box-shadow: 0 0 8px rgba(255, 77, 109, 0.3); }
.vitrine-level-dot[data-level="2"] { background: rgba(255, 77, 141, 0.5); box-shadow: 0 0 10px rgba(255, 77, 109, 0.35); }
.vitrine-level-dot[data-level="3"] { background: rgba(255, 77, 109, 0.65); box-shadow: 0 0 12px rgba(255, 77, 109, 0.4); }
.vitrine-level-dot[data-level="4"] { background: rgba(255, 77, 109, 0.8); box-shadow: 0 0 14px rgba(255, 77, 109, 0.45); }
.vitrine-level-dot[data-level="5"] { background: #ff4d8d; box-shadow: 0 0 16px rgba(255, 77, 141, 0.5); }

@keyframes vitrine-level-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.08); }
}

.vitrine-levels-visual .vitrine-level-dot {
  animation: vitrine-level-pulse 3s ease-in-out infinite;
}

.vitrine-levels-visual .vitrine-level-dot[data-level="2"] { animation-delay: 0.2s; }
.vitrine-levels-visual .vitrine-level-dot[data-level="3"] { animation-delay: 0.4s; }
.vitrine-levels-visual .vitrine-level-dot[data-level="4"] { animation-delay: 0.6s; }
.vitrine-levels-visual .vitrine-level-dot[data-level="5"] { animation-delay: 0.8s; }

.vitrine-level-line {
  width: 12px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 77, 109, 0.4), rgba(255, 77, 109, 0.6));
  border-radius: 1px;
}

/* =========================
   4) CTA FINAL
========================= */
.vitrine-cta-final {
  padding: 64px 20px 80px;
  background: radial-gradient(ellipse 100% 60% at 50% 100%, rgba(180, 30, 80, 0.1) 0%, transparent 60%),
              #0d0d10;
  border-top: 1px solid rgba(38, 38, 44, 0.5);
  text-align: center;
}

.vitrine-cta-final-inner {
  max-width: 480px;
  margin: 0 auto;
}

.vitrine-cta-final-phrase {
  margin: 0 0 24px 0;
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  font-weight: 600;
  color: #f0f0f0;
}

.vitrine-cta-final-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 14px 24px;
  box-sizing: border-box;
  background: linear-gradient(135deg, #c41e50 0%, #e6396b 50%, #ff4d8d 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 24px rgba(255, 77, 109, 0.4), 0 0 48px rgba(255, 77, 109, 0.18);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
}

.vitrine-cta-final-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 77, 141, 0.5), 0 0 56px rgba(255, 77, 109, 0.22);
  background: linear-gradient(135deg, #d02258 0%, #eb4d75 50%, #ff6b8a 100%);
}

.vitrine-cta-final-micro {
  margin: 20px 0 0 0;
  font-size: 0.82rem;
  color: #666;
  letter-spacing: 0.03em;
}

/* =========================
   RESPONSIVE DESKTOP
========================= */
@media (min-width: 640px) {
  .vitrine-hero {
    min-height: 88vh;
    padding: 56px 24px 64px;
  }

  .vitrine-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .vitrine-card {
    padding: 28px 26px;
  }
}

@media (min-width: 900px) {
  .vitrine-topbar {
    padding: 16px 32px;
  }

  .vitrine-container {
    padding: 0 32px;
  }

  .vitrine-hero {
    padding: 64px 32px 72px;
  }

  .vitrine-section {
    padding: 72px 0 80px;
  }

  .vitrine-section-title {
    margin-bottom: 44px;
  }

  .vitrine-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .vitrine-card {
    padding: 28px 24px;
  }

  .vitrine-custom-content {
    margin-bottom: 48px;
  }

  .vitrine-custom-block {
    font-size: 1.05rem;
  }

  .vitrine-cta-final {
    padding: 80px 32px 100px;
  }
}
