@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  color-scheme: dark;
  --bg: #05060a;
  --bg2: #0a0c12;
  --panel: rgba(255,255,255,.04);
  --panel2: rgba(255,255,255,.08);
  --text: #e8ecf5;
  --muted: rgba(232,236,245,.65);
  --border: rgba(255,255,255,.1);
  --shadow: 0 24px 64px rgba(0,0,0,.5);
  --neon-cyan: #00f5ff;
  --neon-pink: #ff4d8d;
  --neon-purple: #a855f7;
  --neon-gold: #ffd700;
  --glow-cyan: 0 0 20px rgba(0,245,255,.4);
  --glow-pink: 0 0 20px rgba(255,77,141,.4);
  --glow-purple: 0 0 20px rgba(168,85,247,.4);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0,245,255,.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(168,85,247,.08), transparent 45%),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(255,77,141,.06), transparent 40%);
  min-height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1100px, calc(100% - 24px));
  margin: 0 auto;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(5,6,10,.75);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 48px;
  width: auto;
  max-height: 48px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.brand > span {
  font-family: 'Exo 2', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
  line-height: 1.2;
  background: linear-gradient(90deg, #ff6b9d, #ffd93d, #00f5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}
.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all .2s ease;
  user-select: none;
}
.btn:hover {
  background: rgba(0,245,255,.08);
  border-color: rgba(0,245,255,.3);
  box-shadow: var(--glow-cyan);
}
.btn:active { transform: scale(.98); }
.btn-primary {
  border-color: rgba(0,245,255,.4);
  background: linear-gradient(135deg, rgba(0,245,255,.15), rgba(168,85,247,.15));
  color: var(--neon-cyan);
}
.btn-primary:hover {
  box-shadow: var(--glow-cyan);
}
.btn-danger {
  border-color: rgba(255,77,141,.35);
  background: rgba(255,77,141,.1);
  color: var(--neon-pink);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size: 12px;
}

.main-layout {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 70px);
  width: 100%;
}

/* Hero / Page d'accueil */
.hero-landing {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}
.hero-landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 50% 30%, rgba(0,245,255,.15), transparent 60%);
  pointer-events: none;
}
.hero-landing-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: calc(100vh - 150px);
}
.hero-contact-bottom {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 40px;
}
.hero-logo-wrap {
  margin-bottom: 24px;
}
.hero-logo {
  height: auto;
  max-height: min(280px, 48vh);
  width: auto;
  max-width: min(520px, 92vw);
  object-fit: contain;
  display: block;
  /* léger relief sans cadre blanc */
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.55));
  animation: heroLogoIn 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
  transform: scale(0.5);
}
@keyframes heroLogoIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hero-title {
  margin: 0 0 8px;
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  letter-spacing: .08em;
  background: linear-gradient(90deg, #ff6b9d, #ffd93d, #00f5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: heroFadeUp 0.8s 0.3s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}
.hero-tagline {
  margin: 0 0 4px;
  font-size: 1.1rem;
  color: var(--muted);
  animation: heroFadeUp 0.8s 0.45s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}
.hero-hours {
  margin: 0 0 12px;
  font-size: 0.95rem;
  color: var(--neon-cyan);
  font-weight: 600;
  animation: heroFadeUp 0.8s 0.55s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}
.hero-mobilite {
  margin: 0 auto 28px;
  max-width: 22rem;
  padding: 0 16px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
  animation: heroFadeUp 0.8s 0.62s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}
@media (min-width: 480px) {
  .hero-mobilite { max-width: 26rem; }
}
.mobilite-offer {
  margin: 0 0 20px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  background: rgba(0, 245, 255, 0.06);
  border: 1px solid rgba(0, 245, 255, 0.2);
  border-radius: 12px;
}
.presentation-inner .mobilite-offer {
  margin-bottom: 28px;
}
@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-size: 15px;
  transition: all .25s ease;
  animation: heroFadeUp 0.8s 0.65s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}
.hero-contact-link:hover {
  background: rgba(0,245,255,.1);
  border-color: rgba(0,245,255,.3);
  color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0,245,255,.2);
}
.hero-contact-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--neon-cyan);
}
.hero-social {
  display: flex;
  gap: 16px;
  justify-content: center;
  animation: heroFadeUp 0.8s 0.75s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}
.hero-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  transition: all .25s ease;
}
.hero-social a:hover {
  background: rgba(0,245,255,.1);
  border-color: rgba(0,245,255,.3);
  transform: translateY(-2px);
}
.hero-social svg {
  width: 22px;
  height: 22px;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  justify-content: center;
  animation: heroFadeUp 0.8s 0.85s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}
.hero-cta {
  padding: 14px 28px;
  font-size: 1rem;
}
@media (max-width: 480px) {
  .hero-landing { padding: 32px 16px; }
  .hero-logo { max-height: min(220px, 42vh); max-width: 94vw; }
  .hero-contact-link { font-size: 14px; padding: 12px 16px; }
}

/* Page Préstation */
.presentation-section {
  flex: 1;
  width: 100%;
  padding: 24px 20px 40px;
}
.presentation-inner {
  max-width: min(1040px, 100%);
  margin: 0 auto;
}
.presentation-section-title {
  margin: 0 0 16px;
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--neon-purple);
  text-transform: uppercase;
}
.presentation-gallery,
.presentation-videos {
  margin-top: 28px;
}
.presentation-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 18px;
  align-items: start;
}
@media (max-width: 820px) {
  .presentation-images {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .presentation-image-wrap:nth-child(3) {
    grid-column: 1 / -1;
    max-width: min(520px, 100%);
    justify-self: center;
    width: 100%;
  }
}
@media (max-width: 520px) {
  .presentation-images {
    grid-template-columns: 1fr;
  }
  .presentation-image-wrap:nth-child(3) {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
}
.presentation-image-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.presentation-image-caption {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
}
.presentation-video-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  align-items: start;
}
@media (max-width: 640px) {
  .presentation-video-list { grid-template-columns: 1fr; }
}

/* Lecteur vidéo sans contrôles natifs (aucun bouton volume) */
.presentation-video-shell {
  position: relative;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}
.presentation-video-shell video.presentation-video {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(72vh, 580px);
  display: block;
  margin: 0;
  border: none;
  border-radius: 0;
  object-fit: contain;
  vertical-align: top;
  cursor: pointer;
}
.presentation-video-bigplay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 76px;
  height: 76px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  box-shadow: 0 0 0 2px rgba(0, 245, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, opacity 0.25s;
}
.presentation-video-bigplay:hover {
  background: rgba(0, 245, 255, 0.25);
  transform: translate(-50%, -50%) scale(1.05);
}
.presentation-video-shell.is-playing .presentation-video-bigplay {
  opacity: 0;
  pointer-events: none;
}
.presentation-video-ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
}
.presentation-video-playpause {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background 0.2s;
}
.presentation-video-playpause:hover {
  background: rgba(0, 245, 255, 0.15);
}
.presentation-video-seek {
  flex: 1;
  min-width: 0;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  overflow: hidden;
}
.presentation-video-seek-bar {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  pointer-events: none;
}
.presentation-video-time {
  flex-shrink: 0;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  color: rgba(232, 236, 245, 0.85);
  min-width: 7.5em;
  text-align: right;
}
.presentation-placeholder {
  aspect-ratio: 16/10;
  border-radius: 12px;
  border: 2px dashed rgba(0,245,255,.3);
  background: rgba(0,0,0,.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}
.presentation-placeholder span {
  font-weight: 600;
  color: var(--neon-cyan);
}
.presentation-placeholder code {
  font-size: 12px;
  padding: 2px 6px;
  background: rgba(0,245,255,.1);
  border-radius: 4px;
}
.presentation-placeholder-video {
  aspect-ratio: 16/9;
}
.presentation-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--border);
  object-fit: contain;
  background: rgba(0,0,0,.35);
}
.presentation-video-shell .presentation-video {
  aspect-ratio: auto;
  min-height: 0;
}
.presentation-cta {
  margin-top: 40px;
  text-align: center;
}

/* Admin — écran connexion */
.admin-mail-hint {
  margin: 12px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 245, 255, 0.28);
  background: rgba(0, 245, 255, 0.07);
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}
.admin-mail-hint strong {
  color: var(--text);
}

.admin-body:has(#adminLogin:not([hidden])) {
  overflow: hidden;
}
.admin-login {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 245, 255, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(168, 85, 247, 0.08), transparent 45%);
}
.admin-login[hidden] {
  display: none !important;
}
.admin-login-card {
  width: min(400px, 100%);
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--panel), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}
.admin-login-title {
  margin: 0 0 8px;
  font-family: "Exo 2", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--neon-cyan);
}
.admin-login-hint {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.admin-login form {
  display: grid;
  gap: 12px;
}
.admin-login label {
  font-size: 14px;
  font-weight: 600;
}
.admin-login input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-family: inherit;
  font-size: 18px;
  letter-spacing: 0.2em;
  color-scheme: dark;
}
.admin-login input:focus {
  outline: none;
  border-color: rgba(0, 245, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 245, 255, 0.12);
}
.admin-login-error {
  margin: 0;
  font-size: 14px;
  color: #ff6b9d;
}
.admin-login-submit {
  margin-top: 4px;
}
.admin-login-back {
  margin: 20px 0 0;
  text-align: center;
}
#adminApp[hidden] {
  display: none !important;
}

/* Page Avis */
.avis-section {
  flex: 1;
  width: 100%;
  padding: 24px 20px 40px;
}
.avis-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
  background: linear-gradient(180deg, var(--panel), rgba(255,255,255,.02));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.avis-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.avis-card {
  padding: 20px 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.avis-card:hover {
  border-color: rgba(0,245,255,.25);
  box-shadow: 0 4px 20px rgba(0,245,255,.08);
}
.avis-stars {
  color: var(--neon-gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.avis-text {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
}
.avis-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
}
.avis-author {
  font-weight: 600;
  color: var(--neon-cyan);
}
.avis-empty {
  margin: 0;
  padding: 28px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  border: 1px dashed var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}
.avis-cta {
  margin-top: 40px;
  text-align: center;
}
.avis-list-title {
  margin-top: 40px;
}
.avis-form-card {
  margin-top: 28px;
  padding: 24px;
  background: rgba(0,0,0,.25);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.avis-form-intro {
  margin: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.avis-form {
  display: grid;
  gap: 14px;
}
.avis-form label,
.avis-form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.avis-form-label {
  display: block;
  margin-top: 4px;
}
.avis-form input[type="text"],
.avis-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  color-scheme: dark;
}
.avis-form textarea {
  resize: vertical;
  min-height: 100px;
}
.avis-form input:focus,
.avis-form textarea:focus {
  outline: none;
  border-color: rgba(0,245,255,.45);
  box-shadow: 0 0 0 3px rgba(0,245,255,.12);
}
.avis-rating-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.avis-star-btn {
  padding: 6px 10px;
  font-size: 1.75rem;
  line-height: 1;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: rgba(255,215,0,.35);
  cursor: pointer;
  transition: color .15s, transform .15s;
}
.avis-star-btn.is-active {
  color: var(--neon-gold);
  text-shadow: 0 0 12px rgba(255,215,0,.4);
}
.avis-star-btn:hover {
  transform: scale(1.08);
}
.avis-form-msg {
  margin-top: 12px;
  font-size: 14px;
}
.avis-form-msg--ok {
  color: var(--neon-cyan);
}
.avis-form-msg--error {
  color: #ff6b9d;
}

.booking-section {
  flex: 1;
  width: 100%;
  padding: 24px 20px 20px;
}
.booking-section .card-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  background: linear-gradient(180deg, var(--panel), rgba(255,255,255,.02));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-section {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,.2);
}
.contact-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.contact-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-section .contact-link {
  margin-bottom: 0;
  padding: 6px 12px;
  font-size: 13px;
}
@media (max-width: 600px) {
  .contact-section-inner {
    flex-direction: column;
    gap: 12px;
  }
  .contact-links {
    justify-content: center;
  }
}

.hero { padding: 36px 0 28px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.card {
  background: linear-gradient(180deg, var(--panel), rgba(255,255,255,.02));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,245,255,.3), transparent);
  opacity: .6;
}
.card-inner { padding: 20px; }
.card-logo {
  text-align: center;
  margin-bottom: 12px;
}
.card-logo-img {
  height: 110px;
  width: auto;
  object-fit: contain;
}
.card-title {
  margin: 0 0 8px;
  font-family: 'Exo 2', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .05em;
}
.card-subtitle {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

/* Packs — thèmes flyer (violet / or / cyan) */
.packs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
  align-items: start;
}
.pack-simple { order: 1; }
.pack-premium { order: 2; }
.pack-gold { order: 3; }
@media (max-width: 700px) {
  .packs { grid-template-columns: 1fr; }
}
.pack {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 16px 14px 14px;
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 10, 18, 0.92);
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.pack-body {
  flex: 1;
}
/* Pack Simple — violet / magenta */
.pack-simple {
  border-color: rgba(192, 132, 252, 0.55);
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.18), inset 0 0 50px rgba(88, 28, 135, 0.06);
}
.pack-simple:hover {
  border-color: rgba(232, 121, 249, 0.75);
  box-shadow: 0 0 28px rgba(192, 132, 252, 0.28);
}
.pack-simple.selected {
  border-color: #e879f9;
  background: rgba(45, 20, 62, 0.45);
  box-shadow: 0 0 36px rgba(232, 121, 249, 0.38);
}
.pack-simple .pack-name {
  color: #e9d5ff;
  text-shadow: 0 0 14px rgba(192, 132, 252, 0.5);
}
.pack-simple .pack-tagline {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 8px;
  background: #fce7f3;
  color: #1a1020;
  font-weight: 700;
  font-size: 11px;
}
.pack-simple .pack-price {
  color: #fdf4ff;
  text-shadow: 0 0 16px rgba(232, 121, 249, 0.45);
}
.pack-simple .pack-pill {
  background: linear-gradient(180deg, #4c1d95, #3b0764);
  color: #fde68a;
  border: 1px solid rgba(192, 132, 252, 0.35);
}
.pack-simple .pack-detail-toggle {
  border-color: rgba(192, 132, 252, 0.4);
  color: #e9d5ff;
}
.pack-simple .pack-detail-toggle:hover {
  background: rgba(168, 85, 247, 0.12);
}
.pack-simple .pack-detail {
  border-top-color: rgba(192, 132, 252, 0.2);
}
/* Pack Gold — mis en avant */
.pack-gold {
  border-color: rgba(251, 191, 36, 0.65);
  box-shadow: 0 0 26px rgba(245, 158, 11, 0.22), inset 0 0 50px rgba(120, 53, 15, 0.08);
}
@media (min-width: 701px) {
  .pack-featured {
    transform: scale(1.03);
    z-index: 1;
  }
}
.pack-gold:hover {
  border-color: rgba(252, 211, 77, 0.85);
  box-shadow: 0 0 32px rgba(251, 191, 36, 0.35);
}
.pack-gold.selected {
  border-color: #fbbf24;
  background: rgba(55, 40, 10, 0.42);
  box-shadow: 0 0 40px rgba(251, 191, 36, 0.45);
}
.pack-gold .pack-name {
  color: #fde68a;
  text-shadow: 0 0 16px rgba(251, 191, 36, 0.55);
}
.pack-gold .pack-tagline {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fef3c7, #fde68a);
  color: #1c1917;
  font-weight: 700;
  font-size: 11px;
}
.pack-gold .pack-price {
  color: #fcd34d;
  text-shadow: 0 0 18px rgba(251, 191, 36, 0.55);
}
.pack-gold .pack-pill {
  background: linear-gradient(180deg, #78350f, #451a03);
  color: #a5f3fc;
  border: 1px solid rgba(251, 191, 36, 0.4);
}
.pack-gold .pack-detail-toggle {
  border-color: rgba(251, 191, 36, 0.45);
  color: #fde68a;
}
.pack-gold .pack-detail-toggle:hover {
  background: rgba(245, 158, 11, 0.12);
}
.pack-gold .pack-detail {
  border-top-color: rgba(251, 191, 36, 0.25);
}
/* Pack Premium — teal / cyan */
.pack-premium {
  border-color: rgba(34, 211, 238, 0.55);
  box-shadow: 0 0 22px rgba(6, 182, 212, 0.18), inset 0 0 50px rgba(8, 47, 73, 0.08);
}
.pack-premium:hover {
  border-color: rgba(103, 232, 249, 0.75);
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.3);
}
.pack-premium.selected {
  border-color: #22d3ee;
  background: rgba(8, 40, 55, 0.45);
  box-shadow: 0 0 36px rgba(34, 211, 238, 0.35);
}
.pack-premium .pack-name {
  color: #a5f3fc;
  text-shadow: 0 0 14px rgba(34, 211, 238, 0.45);
}
.pack-premium .pack-tagline {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ccfbf1, #5eead4);
  color: #0f172a;
  font-weight: 700;
  font-size: 11px;
}
.pack-premium .pack-price {
  color: #ecfeff;
  text-shadow: 0 0 16px rgba(34, 211, 238, 0.4);
}
.pack-premium .pack-pill {
  background: linear-gradient(180deg, #0e7490, #164e63);
  color: #fef9c3;
  border: 1px solid rgba(34, 211, 238, 0.35);
}
.pack-premium .pack-detail-toggle {
  border-color: rgba(34, 211, 238, 0.4);
  color: #a5f3fc;
}
.pack-premium .pack-detail-toggle:hover {
  background: rgba(6, 182, 212, 0.12);
}
.pack-premium .pack-detail {
  border-top-color: rgba(34, 211, 238, 0.22);
}
.pack-name {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pack-price {
  font-family: 'Exo 2', sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-top: 4px;
}
.pack-duration {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.pack-detail-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 12px;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.28);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, border-color 0.2s;
}
.pack-detail-toggle:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}
.pack-detail-arrow {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.pack-detail-open .pack-detail-arrow {
  transform: rotate(180deg);
}
.pack-detail {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.pack-detail-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(232, 236, 245, 0.78);
}
.pack-detail-list li {
  margin-bottom: 5px;
}
.pack-detail-list li::marker {
  color: inherit;
  opacity: 0.7;
}
.pack-pill {
  display: block;
  text-align: center;
  margin-top: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* Options */
.options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
@media (max-width: 520px) {
  .options { grid-template-columns: 1fr; }
}
.opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  cursor: pointer;
  transition: all .2s ease;
}
.opt:hover { border-color: rgba(255,255,255,.15); }
.opt.checked {
  border-color: rgba(0,245,255,.35);
  background: rgba(0,245,255,.06);
}
.opt input { display: none; }
.opt-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}
.opt-desc {
  font-size: 11px;
  line-height: 1.35;
  color: var(--muted);
  font-weight: 400;
}
.opt-label {
  font-size: 13px;
  color: var(--text);
}
.opt-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
  flex-shrink: 0;
}
.opt-price {
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  color: var(--neon-cyan);
  white-space: nowrap;
}
.opt-included-note {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--neon-gold);
  max-width: 130px;
}
.opt.opt-included {
  opacity: 0.85;
  cursor: not-allowed;
  border-style: dashed;
  border-color: rgba(255, 215, 0, 0.35);
  background: rgba(255, 215, 0, 0.04);
}
.opt.opt-included:hover {
  border-color: rgba(255, 215, 0, 0.35);
}

.summary {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0,245,255,.04);
  margin-bottom: 16px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.summary-row.total {
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--neon-cyan);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
@media (max-width: 520px) {
  .kpis { grid-template-columns: 1fr; }
}
.kpi {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.kpi strong { display: block; font-size: 14px; color: var(--neon-cyan); }
.kpi span { color: var(--muted); font-size: 12px; }

.form { display: grid; gap: 20px; }
.form-section {
  padding: 18px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(168,85,247,.06), rgba(0,245,255,.04));
}
.form-section-title {
  margin: 0 0 14px;
  font-family: 'Exo 2', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--neon-purple);
  text-transform: uppercase;
}
.form-section .grid-2,
.form-section > div { margin-bottom: 12px; }
.form-section > div:last-child { margin-bottom: 0; }
.form-section-address {
  background: linear-gradient(135deg, rgba(255,77,141,.05), rgba(0,245,255,.03));
}
.form-section-address .form-section-title { color: var(--neon-pink); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 520px) {
  .grid-2 { grid-template-columns: 1fr; }
}

/* Date & heure block */
.date-time-block {
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(0,245,255,.25);
  background: linear-gradient(160deg, rgba(0,245,255,.08), rgba(168,85,247,.06), rgba(255,77,141,.04));
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0,245,255,.08), inset 0 1px 0 rgba(255,255,255,.06);
}
.date-time-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
  opacity: .8;
}
.date-time-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.date-time-icon {
  font-size: 32px;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(0,245,255,.5));
}
.date-time-title {
  margin: 0 0 4px;
  font-family: 'Exo 2', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .05em;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.date-time-subtitle {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.date-time-input-wrap {
  margin-bottom: 18px;
}
.date-time-input {
  width: 100%;
  padding: 16px 18px;
  font-size: 17px;
  border-radius: 12px;
  border: 2px solid rgba(0,245,255,.35);
  background: rgba(0,0,0,.5);
  color: var(--neon-cyan);
  caret-color: var(--neon-cyan);
  transition: all .25s ease;
  color-scheme: dark;
  font-family: 'Poppins', sans-serif;
}
.date-time-input::-webkit-datetime-edit {
  color: var(--neon-cyan);
}
.date-time-input::-webkit-datetime-edit-fields-wrapper {
  color: var(--neon-cyan);
}
.date-time-input::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(0.9);
  cursor: pointer;
  opacity: .85;
}
.date-time-input::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}
.date-time-input:hover {
  border-color: rgba(0,245,255,.5);
  box-shadow: 0 0 20px rgba(0,245,255,.2);
}
.date-time-input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 24px rgba(0,245,255,.35);
  outline: none;
}
.time-slots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.time-slots-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}
.time-slots-hint {
  font-size: 11px;
  color: var(--muted);
  opacity: .8;
}
.btn-refresh {
  padding: 6px 10px;
  font-size: 16px;
  line-height: 1;
}
.time-slots-count {
  font-size: 12px;
  color: var(--neon-pink);
  margin-left: 8px;
}
.time-slots-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.time-slot {
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(168,85,247,.4);
  background: rgba(168,85,247,.1);
  color: var(--neon-purple);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s ease;
}
.time-slot:hover {
  background: rgba(168,85,247,.25);
  border-color: var(--neon-purple);
  box-shadow: 0 0 16px rgba(168,85,247,.3);
  transform: translateY(-1px);
}
.time-slot.active {
  background: linear-gradient(135deg, rgba(0,245,255,.2), rgba(168,85,247,.2));
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 18px rgba(0,245,255,.4);
}
.time-slot.unavailable,
.time-slot:disabled {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
}
.time-slot:active { transform: translateY(0); }

label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
textarea { min-height: 80px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  border-color: rgba(0,245,255,.4);
  box-shadow: 0 0 0 3px rgba(0,245,255,.15);
}

.hint {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: min(480px, calc(100% - 32px));
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(0,245,255,.4);
  background: rgba(5,6,10,.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--glow-cyan);
  display: none;
  z-index: 100;
}
.toast.show { display: block; animation: toastIn .3s ease; }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.toast strong { display: block; margin-bottom: 2px; color: var(--neon-cyan); }
.toast span { color: var(--muted); }

.section { padding: 14px 0 42px; }
.section-title {
  margin: 0 0 10px;
  font-family: 'Exo 2', sans-serif;
  font-size: 16px;
  letter-spacing: .05em;
}

.list { display: grid; gap: 10px; }
.item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.item h4 { margin: 0 0 6px; font-size: 14px; }
.item p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.4; }
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}
.footer {
  padding: 24px 0 46px;
  color: var(--muted);
  font-size: 12px;
}
.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-block {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
}
.contact-title {
  margin: 0 0 8px;
  font-family: 'Exo 2', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--neon-cyan);
  text-transform: uppercase;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  margin-bottom: 4px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--text);
  transition: all .2s;
}
.contact-link:last-child { margin-bottom: 0; }
.contact-link:hover {
  background: rgba(0,245,255,.06);
  color: var(--neon-cyan);
}
.contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--neon-cyan);
}
.contact-icon-instagram,
.contact-icon-facebook { color: inherit; }
.footer-icon {
  width: 20px;
  height: 20px;
  color: var(--neon-cyan);
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  transition: opacity .2s;
}
.footer-contact a:hover { opacity: .85; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 12px;
  width: 100%;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 12px;
}
.footer-legal a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: var(--neon-cyan);
}
.footer-legal a[aria-current="page"] {
  color: var(--neon-cyan);
  font-weight: 600;
}
.footer-legal-sep {
  opacity: 0.45;
  user-select: none;
}

/* Pages légales */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 20px 40px;
  text-align: left;
}
.legal-page-title {
  margin: 0 0 12px;
  font-family: "Exo 2", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--text);
}
.legal-page-intro {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.legal-section {
  margin-bottom: 24px;
}
.legal-section h2 {
  margin: 0 0 10px;
  font-family: "Exo 2", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--neon-cyan);
}
.legal-section p,
.legal-section li {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}
.legal-section p + p {
  margin-top: 10px;
}
.legal-list {
  margin: 8px 0 0;
  padding-left: 1.25rem;
}
.legal-list li + li {
  margin-top: 8px;
}
.legal-hint {
  margin-top: 10px !important;
  font-size: 12px !important;
  color: var(--muted) !important;
  font-style: italic;
}
.legal-section a {
  color: var(--neon-cyan);
}
.legal-back {
  margin: 32px 0 0;
}
.legal-back .btn {
  display: inline-flex;
}

.form-privacy-note,
.avis-privacy-note {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
}
.form-privacy-note a,
.avis-privacy-note a {
  color: var(--neon-cyan);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ========== Mobile & responsive ========== */
@media (max-width: 480px) {
  .container { width: calc(100% - 20px); }
  .topbar-inner { padding: 12px 0; flex-wrap: wrap; }
  .brand { gap: 8px; }
  .brand > span { font-size: 0.95rem; }
  .logo-img { height: 36px; max-height: 36px; }
  .nav .badge { display: none; }
  .nav { gap: 8px; }
  .btn { padding: 12px 14px; font-size: 14px; min-height: 44px; }
  .booking-section { padding: 16px 12px; }
  .booking-section .card-inner { padding: 16px; }
  .card-title { font-size: 18px; }
  .card-subtitle { font-size: 13px; }
  .pack { padding: 14px 12px 12px; }
  .pack-detail-toggle { min-height: 44px; }
  .opt { padding: 14px 16px; min-height: 44px; }
  .form-section { padding: 14px; }
  .date-time-block { padding: 16px; }
  .date-time-header { flex-direction: column; gap: 10px; margin-bottom: 14px; }
  .date-time-icon { font-size: 28px; }
  .date-time-title { font-size: 16px; }
  .date-time-input {
    padding: 14px 16px;
    font-size: 16px;
    min-height: 48px;
  }
  .time-slots { flex-direction: column; align-items: stretch; gap: 10px; }
  .time-slots-label { white-space: normal; }
  .time-slots-hint { font-size: 11px; }
  .time-slots-list { justify-content: flex-start; }
  .btn-refresh { padding: 10px 14px; min-width: 44px; min-height: 44px; }
  .time-slot {
    padding: 12px 16px;
    min-height: 44px;
    font-size: 15px;
  }
  .actions { flex-direction: column; }
  .actions .btn { width: 100%; justify-content: center; min-height: 48px; }
  .contact-section { padding: 14px 12px; }
  .contact-section-inner { gap: 16px; }
  .contact-link { padding: 10px 14px; min-height: 44px; }
  .toast {
    bottom: max(20px, env(safe-area-inset-bottom));
    width: calc(100% - 24px);
  }
  .footer { padding: 20px 0 30px; }
  .footer-contact a { padding: 10px; min-width: 44px; min-height: 44px; }
  .split { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 380px) {
  .container { width: calc(100% - 16px); }
  .booking-section .card-inner { padding: 12px; }
  .pack-price { font-size: 18px; }
}

/* Admin mobile */
@media (max-width: 480px) {
  #adminRoot .card-inner { padding: 16px; }
  .item { flex-direction: column; align-items: stretch; gap: 12px; }
  .item .actions { justify-content: flex-start; }
  .item .btn { min-height: 44px; }
  .split .badge { font-size: 11px; max-width: 100%; }
  .hero .split { flex-direction: column; align-items: flex-start; }
}
