/* ============================================================
   TON PIERRE — Stylesheet
   Palette : tons pierre, beige, terracotta
   ============================================================ */

/* --- Variables -------------------------------------------- */
:root {
  --stone-50:  #faf7f2;
  --stone-100: #f2ece0;
  --stone-200: #e5d9c3;
  --stone-300: #d0bc98;
  --stone-400: #b89970;
  --stone-500: #9e7d55;
  --stone-600: #876849;
  --stone-700: #6e543d;
  --stone-800: #5a4433;
  --stone-900: #3d2e22;

  --terracotta: #c4785a;
  --terracotta-dark: #a85e42;
  --green:  #4a7c59;
  --white:  #ffffff;
  --black:  #1a1209;

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans:  'Montserrat', 'Helvetica Neue', sans-serif;

  --shadow-sm: 0 1px 3px rgba(61,46,34,.08);
  --shadow-md: 0 4px 16px rgba(61,46,34,.12);
  --shadow-lg: 0 12px 40px rgba(61,46,34,.18);

  --radius: 4px;
  --transition: .3s ease;
}

/* --- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-sans);
  color: var(--stone-800);
  background: var(--stone-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--stone-900);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--stone-700); line-height: 1.8; }

.section-title { text-align: center; margin-bottom: .5rem; }
.section-sub   { text-align: center; color: var(--stone-500); font-size: .95rem; margin-bottom: 3rem; letter-spacing: .04em; }
.section-divider {
  width: 60px; height: 2px;
  background: var(--terracotta);
  margin: 1rem auto 1.5rem;
}

/* --- Buttons --------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-size: .9rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition); border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--terracotta); color: var(--white);
  box-shadow: 0 4px 14px rgba(196,120,90,.35);
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,120,90,.45); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,.7);
}
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: var(--white); }
.btn-stone {
  background: var(--stone-800); color: var(--white);
}
.btn-stone:hover { background: var(--stone-900); }
.btn-ghost {
  background: transparent; color: var(--stone-700);
  border: 1.5px solid var(--stone-300);
}
.btn-ghost:hover { background: var(--stone-100); border-color: var(--stone-400); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1.25rem; font-size: .8rem; }

/* --- Header / Nav ----------------------------------------- */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 1.25rem 0;
}
#header.scrolled {
  background: rgba(250,247,242,.97);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
  padding: .75rem 0;
}
.nav-container {
  max-width: 1400px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.7rem; font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
  transition: color var(--transition);
}
#header.scrolled .nav-logo { color: var(--stone-900); }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: .82rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px;
  background: var(--terracotta); transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--white); }
#header.scrolled .nav-links a { color: var(--stone-700); }
#header.scrolled .nav-links a:hover { color: var(--stone-900); }

/* Language switcher */
.lang-switcher {
  position: relative;
}
.lang-btn {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: .35rem .8rem;
  border-radius: 20px;
  cursor: pointer; display: flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 600;
  transition: var(--transition);
}
#header.scrolled .lang-btn {
  background: var(--stone-100);
  border-color: var(--stone-300);
  color: var(--stone-800);
}
.lang-dropdown {
  position: absolute; top: calc(100% + .5rem); right: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 150px; overflow: hidden;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
}
.lang-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown a {
  display: flex; align-items: center; gap: .6rem;
  padding: .65rem 1rem;
  font-size: .85rem; color: var(--stone-700);
  transition: background var(--transition);
}
.lang-dropdown a:hover { background: var(--stone-100); }
.lang-dropdown a.active { background: var(--stone-100); font-weight: 600; color: var(--stone-900); }

/* Mobile nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .3rem; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); display: block; }
#header.scrolled .nav-toggle span { background: var(--stone-800); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero --------------------------------------------- */
#hero {
  height: 100vh; min-height: 600px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-slider {
  position: absolute; inset: 0;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(30,20,10,.35) 0%, rgba(30,20,10,.55) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  max-width: 900px; padding: 0 2rem;
}
.hero-badge {
  display: inline-block;
  padding: .35rem 1rem;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 20px;
  font-size: .75rem; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,.9);
}
.hero-content h1 {
  color: var(--white); margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-content p {
  color: rgba(255,255,255,.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 1.5rem;
}
.hero-promo-badge {
  display: inline-block;
  background: rgba(196,120,90,.92);
  color: #fff;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-family: var(--font-sans);
  font-weight: 500;
  padding: .65rem 1.6rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  letter-spacing: .01em;
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,.25);
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.hero-promo-badge strong {
  font-weight: 800;
  font-size: 1.1em;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: .75rem; letter-spacing: .1em;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  cursor: pointer; z-index: 2;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.6));
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine { 0%,100% { opacity: 0; } 50% { opacity: 1; } }

/* Slider dots */
.hero-dots {
  position: absolute; bottom: 2rem; right: 3rem; z-index: 3;
  display: flex; gap: .5rem;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer; transition: var(--transition);
  border: none;
}
.hero-dot.active { background: var(--white); transform: scale(1.3); }

/* --- Highlights ------------------------------------------ */
#highlights {
  background: var(--stone-900);
  padding: 3rem 2rem;
}
.highlights-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.highlight-item {
  text-align: center; padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,.1);
}
.highlight-item:last-child { border-right: none; }
.highlight-icon {
  font-size: 2rem; margin-bottom: .75rem;
}
.highlight-item h3 {
  color: var(--white); font-size: 1.4rem; margin-bottom: .35rem;
}
.highlight-item p {
  color: var(--stone-300); font-size: .85rem;
}

/* --- Sections Layout ------------------------------------- */
.section {
  padding: 6rem 2rem;
  overflow: hidden; /* évite tout débordement horizontal */
  max-width: 100vw;
}
.section-alt { background: var(--stone-100); }
.container {
  max-width: 1200px; margin: 0 auto;
}
.container-wide { max-width: 1400px; margin: 0 auto; }

/* --- Description ----------------------------------------- */
#about .about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
#about .about-text p { margin-bottom: 1.2rem; }
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  margin: 2rem 0;
}
.stat-card {
  background: var(--white);
  padding: 1.25rem; border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem; color: var(--terracotta);
  display: block; line-height: 1;
}
.stat-label { font-size: .8rem; color: var(--stone-500); text-transform: uppercase; letter-spacing: .06em; }
.about-img-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.about-img-grid img {
  border-radius: var(--radius);
  height: 220px; object-fit: cover; width: 100%;
}
.about-img-grid img:first-child {
  grid-column: 1/-1; height: 280px;
}

/* --- Spaces --------------------------------------------- */
#spaces .spaces-tabs {
  display: flex; gap: .5rem; justify-content: center; margin-bottom: 3rem;
}
.space-tab {
  padding: .6rem 1.5rem;
  border: 1.5px solid var(--stone-300);
  border-radius: 30px; cursor: pointer;
  font-size: .85rem; font-weight: 600; letter-spacing: .04em;
  color: var(--stone-600); background: transparent;
  transition: var(--transition);
}
.space-tab.active, .space-tab:hover {
  background: var(--stone-900); color: var(--white); border-color: var(--stone-900);
}
.space-panel { display: none; }
.space-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.space-panel img {
  border-radius: var(--radius); height: 420px; object-fit: cover; width: 100%;
  box-shadow: var(--shadow-lg);
}
.space-info h3 { margin-bottom: 1rem; }
.space-info p { margin-bottom: 1.5rem; }
.space-features { display: flex; flex-direction: column; gap: .6rem; }
.space-feature {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9rem; color: var(--stone-700);
}
.space-feature::before {
  content: '';
  width: 6px; height: 6px; background: var(--terracotta); border-radius: 50%; flex-shrink: 0;
}

/* --- Bedrooms ------------------------------------------- */
.bedrooms-group {
  margin-bottom: 2.5rem;
}
.bedrooms-twocols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.bedrooms-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
}
.bedrooms-col:first-child {
  border-right: 2px solid var(--stone-200);
  padding-left: 0;
}
.bedrooms-twocols--nosep .bedrooms-col:first-child {
  border-right: none;
}
.bedrooms-col:last-child {
  padding-right: 0;
}
.bedrooms-col .bedroom-card {
  max-width: 340px;
  width: 100%;
}
.bedrooms-col .bedroom-card--photo {
  max-width: 400px;
  width: 100%;
}
.bedrooms-group-label {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--stone-700);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1.5px solid var(--stone-200);
}
/* En-tête de groupe : photo entière (non rognée) + titre en surimpression */
.bedrooms-group-header {
  position: relative;
  width: 100%;
  max-width: 460px;             /* taille modeste, ne domine pas la page */
  margin: 0 auto 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
  isolation: isolate;
  line-height: 0;               /* évite l'espace blanc sous l'image */
}
.bedrooms-group-photo {
  display: block;
  width: 100%;
  height: auto;                 /* la photo dicte sa propre hauteur, plus de crop */
  transition: transform .6s ease;
}
.bedrooms-group-header:hover .bedrooms-group-photo {
  transform: scale(1.02);
}
.bedrooms-group-header:hover .bedrooms-group-photo {
  transform: scale(1.04);
}
/* Voile sombre uniquement en bas (zone du titre) pour ne pas assombrir toute la photo */
.bedrooms-group-header::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 35%;                  /* seul le bas est concerné */
  background: linear-gradient(
    180deg,
    rgba(20,12,4,0)    0%,
    rgba(20,12,4,.55) 70%,
    rgba(20,12,4,.85) 100%
  );
  z-index: 2;
  pointer-events: none;
}
.bedrooms-group-header .bedrooms-group-label {
  position: absolute;
  left: 2rem;
  bottom: 1.5rem;
  margin: 0;
  padding: 0;
  border: 0;
  color: #fff;
  font-size: 2rem;
  line-height: 1.1;
  z-index: 3;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
@media (max-width: 768px) {
  .bedrooms-group-header::before {
    background: linear-gradient(
      180deg,
      rgba(20,12,4,0)   0%,
      rgba(20,12,4,.4)  55%,
      rgba(20,12,4,.85) 100%
    );
  }
  .bedrooms-group-header .bedrooms-group-label {
    left: 1.2rem;
    right: 1.2rem;
    bottom: 1rem;
    font-size: 1.5rem;
    text-align: left;
  }
}
.bedrooms-floor-label {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--terracotta);
  margin: 1.2rem 0 .75rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.bedrooms-floor-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--terracotta);
  opacity: .6;
}
.bedrooms-grid {
  display: grid;
  gap: 1rem;
}
.bedrooms-grid--6 { grid-template-columns: repeat(6, 1fr); }
.bedrooms-grid--3 { grid-template-columns: repeat(3, 1fr); }
.bedrooms-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 500px; }
.bedroom-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bedroom-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
/* Carte avec photo : photo paysage à gauche + texte à droite */
.bedroom-card--photo {
  flex-direction: row;
  padding: 0;
  align-items: stretch;
  height: 168px;
  cursor: pointer;
  overflow: hidden;
}
.bedroom-card-img {
  flex: 0 0 75%;
  overflow: hidden;
  position: relative;
}
.bedroom-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .45s ease;
}
.bedroom-card--photo:hover .bedroom-card-img img { transform: scale(1.04); }
/* Icône zoom au survol */
.bedroom-card-img::after {
  content: '🔍';
  position: absolute;
  bottom: .5rem; right: .5rem;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: .85rem;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.bedroom-card--photo:hover .bedroom-card-img::after { opacity: 1; }
.bedroom-card-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: .75rem .5rem;
  text-align: center;
  box-sizing: border-box;
}
.bedroom-num {
  font-family: var(--font-serif);
  font-size: 2.2rem; color: var(--stone-400);
}
.bedroom-card h4 { font-size: 1.1rem; margin: .3rem 0; color: var(--stone-800); }
.bedroom-card p { font-size: 1rem; color: var(--stone-500); line-height: 1.6; }
.bedroom-card-info h4 { font-size: .76rem; margin: .15rem 0; }
.bedroom-card-info p  { font-size: .68rem; line-height: 1.35; color: var(--stone-500); }
.bedroom-card-info .bedroom-num { font-size: 1.45rem; }

/* ── Lightbox chambre ── */
.bedroom-lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 9500;
  background: rgba(0,0,0,.88);
  align-items: center; justify-content: center;
}
.bedroom-lightbox.open { display: flex; }
.bedroom-lightbox-inner {
  position: relative;
  max-width: 90vw; max-height: 90vh;
}
.bedroom-lightbox-inner img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.bedroom-lightbox-close {
  position: absolute;
  top: -2rem; right: 0;
  background: none; border: none;
  color: #fff; font-size: 2rem; cursor: pointer;
  line-height: 1;
  opacity: .8; transition: opacity .2s;
}
.bedroom-lightbox-close:hover { opacity: 1; }
.bedroom-lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  border: none; color: #fff;
  font-size: 2.5rem; line-height: 1;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: .8; transition: opacity .2s, background .2s;
  z-index: 2;
}
.bedroom-lightbox-nav:hover { opacity: 1; background: rgba(0,0,0,.7); }
.bedroom-lightbox-prev { left: -56px; }
.bedroom-lightbox-next { right: -56px; }
@media (max-width: 768px) {
  .bedroom-lightbox-prev { left: -36px; }
  .bedroom-lightbox-next { right: -36px; }
}
@media (max-width: 520px) {
  .bedroom-lightbox-prev { left: 4px; }
  .bedroom-lightbox-next { right: 4px; }
}
.bedroom-lightbox-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: .6rem;
  gap: 1rem;
}
.bedroom-lightbox-caption {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}
.bedroom-lightbox-counter {
  color: rgba(255,255,255,.55);
  font-size: .85rem;
  white-space: nowrap;
}
/* Badge nombre de photos sur la carte */
.bedroom-photo-count {
  position: absolute;
  bottom: .4rem; left: .4rem;
  background: rgba(0,0,0,.5);
  color: #fff;
  font-size: .72rem;
  padding: .1rem .35rem;
  border-radius: 10px;
  pointer-events: none;
}

/* --- Gallery -------------------------------------------- */
#gallery { padding: 6rem 0; overflow: hidden; }
#gallery .container { padding: 0 2rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 6px;
  margin-top: 3rem;
}
.gallery-item {
  overflow: hidden; cursor: pointer; position: relative;
  border-radius: 2px;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(30,20,10,.0);
  transition: background var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { background: rgba(30,20,10,.3); }
.gallery-zoom {
  color: var(--white); font-size: 1.5rem;
  opacity: 0; transform: scale(.7);
  transition: var(--transition);
}
.gallery-item:hover .gallery-zoom { opacity: 1; transform: scale(1); }
.gallery-more {
  text-align: center; margin-top: 2rem;
}

/* Lightbox */
#lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,6,2,.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
#lightbox.open { opacity: 1; visibility: visible; }
.lightbox-img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  color: var(--white); font-size: 1.8rem; cursor: pointer;
  background: none; border: none; line-height: 1; opacity: .7;
  transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--white); font-size: 2rem; cursor: pointer;
  background: rgba(255,255,255,.1); border: none;
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,.2); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.6); font-size: .85rem;
}

/* --- Amenities ------------------------------------------ */
#amenities .amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.amenity-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  aspect-ratio: 1 / 1;
}
.amenity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.amenity-icon { font-size: 2.8rem; margin-bottom: 1rem; line-height: 1; }
.amenity-card p { font-size: 1rem; color: var(--stone-600); font-weight: 500; }

/* --- Ouverture ------------------------------------------ */
.ouverture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.ouverture-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 2.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.ouverture-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ouverture-icon { font-size: 3rem; margin-bottom: .5rem; line-height: 1; }
.ouverture-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--stone-800);
  margin: 0;
}
.ouverture-card p {
  font-size: .9rem;
  color: var(--stone-500);
  margin: 0;
}
.ouverture-periode {
  display: inline-block;
  margin-top: .6rem;
  background: var(--terracotta);
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .3rem 1rem;
  border-radius: 50px;
}
.ouverture-note {
  font-size: .78rem;
  color: var(--stone-400);
  font-style: italic;
  min-height: 1.1rem;
}
@media (max-width: 600px) {
  .ouverture-grid { grid-template-columns: 1fr; gap: 1rem; }
  .ouverture-card { padding: 1.5rem 1rem; }
}

/* --- Booking -------------------------------------------- */
#booking {
  background: var(--stone-100);
  padding: 6rem 2rem 3rem;
}
#booking .section-title { color: var(--stone-900); }
#booking .section-sub   { color: var(--stone-700); }
#booking .section-divider { background: var(--terracotta); }
.booking-container {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: stretch;
}
.booking-calendar-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  overflow-x: auto;
}
/* Supprime le délai de 300ms sur les taps mobiles dans le calendrier */
.booking-calendar-wrap,
.booking-calendar-wrap * {
  touch-action: manipulation;
}
/* Bandeau d'instruction tap mobile */
.cal-tap-hint {
  display: none; /* caché sur desktop */
  background: var(--stone-100);
  border-bottom: 1px solid var(--stone-200);
  padding: .6rem 1rem;
  font-size: .82rem;
  color: var(--stone-700);
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  .cal-tap-hint { display: block; }
}
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  height: 100%;
  box-sizing: border-box;
}
.booking-form-wrap h3 {
  margin-bottom: 1.5rem; font-size: 1.3rem;
}
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: .8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--stone-600); margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .7rem .9rem;
  border: 1.5px solid var(--stone-200);
  border-radius: var(--radius);
  font-size: .9rem; color: var(--stone-800);
  background: var(--stone-50);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--terracotta);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }

/* Pricing summary */
.price-summary {
  background: var(--stone-50);
  border-radius: var(--radius); padding: 1.25rem;
  margin: 1.25rem 0;
}
.price-row {
  display: flex; justify-content: space-between;
  font-size: .9rem; padding: .4rem 0;
  border-bottom: 1px solid var(--stone-200);
  color: var(--stone-700);
}
.price-row:last-child { border-bottom: none; font-weight: 700; color: var(--stone-900); font-size: 1rem; }
.price-row.deposit { color: var(--terracotta); font-weight: 600; }

/* Sélecteur de prestation dans le résumé */
.prestation-selector-row { align-items: center; gap: .5rem; flex-wrap: wrap; }
.prestation-selector-label {
  font-size: .8rem; font-weight: 600; color: var(--stone-600);
  white-space: nowrap;
}
.prestation-btns { display: flex; gap: .35rem; flex-wrap: wrap; }
.prestation-btns--grid { display: grid; grid-template-columns: 1fr 1fr; gap: .4rem; }
.prestation-btns--cards { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.prestation-btn {
  border: 1.5px solid var(--stone-300);
  background: var(--white);
  color: var(--stone-600);
  border-radius: 20px;
  padding: .2rem .65rem;
  font-size: .72rem; font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
  white-space: nowrap;
}
.prestation-btn:hover { border-color: var(--terracotta); color: var(--terracotta); }
.prestation-btn.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--white);
}

/* Mariage sub-selector */
.mariage-sub-row {
  border-top: 1px solid var(--stone-200);
  padding-top: .85rem;
  margin-top: .25rem;
}
.mariage-sub-label {
  font-size: .75rem; font-weight: 600; color: var(--stone-500);
  text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: .6rem;
}
.mariage-sub-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}
.mariage-formula-btn {
  display: flex; flex-direction: column; align-items: center;
  gap: .15rem;
  border: 1.5px solid var(--stone-200);
  background: var(--stone-50);
  border-radius: var(--radius);
  padding: .7rem .5rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
  text-align: center;
}
.mariage-formula-btn:hover {
  border-color: var(--terracotta);
  background: #fff;
}
.mariage-formula-btn.active {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(180,74,55,.12);
}
.mfb-title {
  font-size: .78rem; font-weight: 700; color: var(--stone-700);
}
.mfb-price {
  font-family: var(--font-serif);
  font-size: 1.25rem; color: var(--terracotta); line-height: 1.1;
}
.mfb-price small { font-size: .65rem; font-family: var(--font-sans); color: var(--stone-500); }
.mfb-desc {
  font-size: .7rem; color: var(--stone-500);
}
.mariage-formula-btn.active .mfb-title { color: var(--terracotta); }

/* Payment methods */
.payment-methods {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: 1rem;
}
.payment-option {
  border: 2px solid var(--stone-200);
  border-radius: var(--radius); padding: .75rem;
  cursor: pointer; text-align: center;
  transition: var(--transition);
}
.payment-option.selected {
  border-color: var(--terracotta); background: rgba(196,120,90,.06);
}
.payment-option input { display: none; }
.payment-option span { font-size: .85rem; font-weight: 600; display: block; }
.payment-option small { font-size: .75rem; color: var(--stone-500); }

/* Wire transfer info box */
/* Politique d'annulation */
.cancellation-policy-box {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  background: #fff8f0;
  border: 1.5px solid #e07b39;
  border-radius: var(--radius);
  padding: .9rem 1rem;
  margin-bottom: 1rem;
  font-size: .85rem;
  line-height: 1.5;
  color: #7a3a10;
}
.cancellation-policy-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: .05rem; }
.cancellation-policy-text strong { display: block; margin-bottom: .25rem; font-size: .9rem; color: #c0510f; }
.cancellation-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .85rem;
  color: var(--stone-700, #555);
  cursor: pointer;
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.cancellation-checkbox-label input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  margin-top: .15rem;
  accent-color: #c0510f;
  cursor: pointer;
}

.wire-info-box {
  background: var(--stone-50, #faf9f7);
  border: 1.5px solid var(--stone-200);
  border-radius: var(--radius);
  padding: .9rem 1rem;
  margin-bottom: 1rem;
}
.wire-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .3rem 0;
  font-size: .85rem;
  border-bottom: 1px solid var(--stone-100);
}
.wire-info-row:last-of-type { border-bottom: none; }
.wire-info-row span { color: var(--stone-500); }
.wire-info-row strong { font-weight: 700; letter-spacing: .02em; }
.wire-info-note {
  margin-top: .6rem;
  font-size: .78rem;
  color: var(--stone-500);
  margin-bottom: 0;
}

/* Stripe card element */
#stripe-card-section {
  margin-bottom: 1rem;
  transition: var(--transition);
}
#stripe-card-element {
  background: var(--white);
  border: 1.5px solid var(--stone-200);
  border-radius: var(--radius);
  padding: .85rem 1rem;
}
#stripe-card-element.StripeElement--focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196,120,90,.15);
}
#stripe-card-element.StripeElement--invalid {
  border-color: #e53e3e;
}
.stripe-error {
  color: #e53e3e;
  font-size: .8rem;
  margin-top: .35rem;
  min-height: 1.2em;
}

/* --- Prices -------------------------------------------- */
#prices .prices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 1.5rem;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
}
.price-card:hover { border-color: var(--terracotta); box-shadow: var(--shadow-md); }
.price-card.featured {
  border-color: var(--terracotta);
  background: linear-gradient(135deg, var(--stone-900) 0%, var(--stone-800) 100%);
}
.price-card.featured * { color: var(--white) !important; }
.price-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--terracotta); color: var(--white);
  padding: .25rem .9rem; border-radius: 20px;
  font-size: .75rem; font-weight: 700; letter-spacing: .05em;
  white-space: nowrap;
}
.price-season {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--stone-500); margin-bottom: .25rem;
}
.price-season-sub {
  font-size: .78rem; color: var(--stone-400); margin-bottom: .75rem; font-style: italic;
}
.price-card.featured .price-season-sub { color: rgba(255,255,255,.55) !important; }
.price-block { margin-bottom: .5rem; }
.price-block-alt {
  padding-top: .75rem; border-top: 1px dashed var(--stone-200);
  margin-bottom: 1rem;
}
.price-card.featured .price-block-alt { border-top-color: rgba(255,255,255,.2) !important; }

/* Mariage two-column layout */
.price-card--mariage { grid-column: span 1; }
.mariage-cols {
  display: flex;
  gap: 0;
  align-items: flex-start;
}
.mariage-col {
  flex: 1;
  min-width: 0;
}
.mariage-col-sep {
  width: 1px;
  background: rgba(255,255,255,.2);
  align-self: stretch;
  margin: 0 1.1rem;
  flex-shrink: 0;
}
.price-amount {
  font-family: var(--font-serif);
  font-size: 2.6rem; color: var(--stone-900); line-height: 1;
}
.price-amount sup { font-size: 1.3rem; vertical-align: super; }
.price-amount span { font-size: .95rem; color: var(--stone-500); }
.price-dates { font-size: .82rem; color: var(--stone-500); margin: .3rem 0 .5rem; }
.price-card hr { border-color: var(--stone-200); margin: 1.25rem 0; }
.price-included-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--stone-500);
  margin-bottom: .4rem;
}
.price-notes { list-style: none; margin-bottom: .75rem; }
.price-notes li {
  font-size: .83rem; color: var(--stone-600);
  padding: .25rem 0; display: flex; align-items: center; gap: .5rem;
}
.price-notes li::before { content: '✓'; color: var(--green); font-weight: 700; }
.price-deposit-note {
  font-size: .78rem; color: var(--stone-400);
  border-top: 1px solid var(--stone-200);
  padding-top: .75rem; margin-top: .25rem;
  font-style: italic;
}
.prices-footer {
  text-align: center; margin-top: 2.5rem;
  color: var(--stone-500); font-size: .85rem;
}

/* ── Price Builder ── */
.price-builder {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.price-builder-step {
  background: var(--white);
  border-radius: 10px;
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
}
.price-builder--inline .price-builder-step {
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.price-step-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.price-step-num {
  width: 32px; height: 32px;
  background: var(--terracotta);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.price-step-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--stone-800);
  margin-bottom: .2rem;
}
.price-step-sub { font-size: .83rem; color: var(--stone-500); }
.price-day-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.price-day-card {
  border: 2px solid var(--stone-200);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  overflow: hidden;
}
.price-day-card input[type="radio"] { display: none; }
.price-day-card.active {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(196,120,90,.15);
}
.price-day-inner {
  padding: 1.1rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.price-day-badge { font-size: 1.3rem; }
.price-day-label { font-size: .75rem; color: var(--stone-500); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.price-day-amount { font-family: var(--font-serif); font-size: 1.7rem; color: var(--stone-800); font-weight: 600; }
.price-day-amount small { font-size: .72rem; color: var(--stone-500); margin-left: .2rem; font-family: var(--font-sans); }

.price-options-list { display: grid; grid-template-columns: 1fr 1fr; gap: .45rem; }
.price-option-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem 1rem;
  border: 1.5px solid var(--stone-200);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
  background: var(--stone-50);
  user-select: none;
}
.price-option-row:hover { border-color: var(--stone-300); background: #fff; }
.price-option-row.selected {
  border-color: var(--terracotta);
  background: #fff9f6;
  box-shadow: 0 0 0 2px rgba(196,120,90,.1);
}
.price-option-row input[type="checkbox"] { display: none; }
.price-opt-check {
  width: 22px; height: 22px;
  border: 2px solid var(--stone-300);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem;
  color: transparent;
  flex-shrink: 0;
  transition: background .15s, border-color .15s, color .15s;
  font-weight: 700;
}
.price-option-row.selected .price-opt-check {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
}
.price-opt-icon { font-size: 1.3rem; flex-shrink: 0; }
.price-opt-text { flex: 1; min-width: 0; }
.price-opt-name { display: block; font-weight: 600; font-size: .9rem; color: var(--stone-800); }
.price-opt-sub { display: block; font-size: .76rem; color: var(--stone-500); margin-top: .1rem; }
.price-opt-amount {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--terracotta);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 80px;
  text-align: right;
}
.price-opt-amount em {
  font-style: italic;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 400;
  color: var(--stone-500);
}
.price-option-quote .price-opt-name { color: var(--stone-600); }

.price-option-disabled {
  opacity: .45;
  pointer-events: none;
  cursor: default;
}
.price-option-disabled .price-opt-name { color: var(--stone-500); }

.price-builder-total {
  background: var(--stone-800);
  color: var(--white);
  border-radius: 10px;
  padding: 1.75rem 2rem;
}
.price-total-breakdown { margin-bottom: .75rem; display: flex; flex-direction: column; gap: .25rem; }
.price-breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: .83rem;
  color: rgba(255,255,255,.6);
  padding: .2rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.price-breakdown-row:last-child { border-bottom: none; }
.price-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: .75rem;
  border-top: 2px solid rgba(255,255,255,.2);
  margin-top: .25rem;
}
.price-total-row > span:first-child {
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
}
.price-total-amount {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}
.price-total-amount small {
  font-size: .78rem;
  font-family: var(--font-sans);
  font-weight: 400;
  color: rgba(255,255,255,.5);
  margin-left: .2rem;
}
.price-quote-note {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-top: .6rem;
  font-style: italic;
}
.price-total-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.price-total-actions .btn-ghost {
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.price-total-actions .btn-ghost:hover { background: rgba(255,255,255,.1); }

@media (max-width: 600px) {
  .price-day-selector { grid-template-columns: 1fr; }
  .price-builder-step { padding: 1.1rem 1rem; }
  .price-options-list { grid-template-columns: 1fr; }
  .price-opt-sub { display: none; }
  .price-total-actions { flex-direction: column; }
  .price-total-actions .btn { width: 100%; text-align: center; }
}

/* --- Events -------------------------------------------- */
#events { background: var(--stone-100); padding-top: 3rem; }
.events-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;
}
.event-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid; grid-template-columns: auto 1fr;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.event-icon-wrap {
  width: 80px; background: var(--stone-900);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; flex-shrink: 0;
}
.event-body { padding: 1.75rem; }
.event-body h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.event-body p { font-size: .88rem; margin-bottom: 1rem; }

/* --- Reviews -------------------------------------------- */
#reviews { background: var(--stone-900); padding: 6rem 2rem; }
#reviews .section-title { color: var(--white); }
#reviews .section-divider { background: var(--terracotta); }
.reviews-score {
  text-align: center; margin-bottom: 3rem;
}
.score-num {
  font-family: var(--font-serif);
  font-size: 4rem; color: var(--white); line-height: 1;
}
.score-stars { font-size: 1.5rem; color: #f0c040; }
.score-label { color: var(--stone-400); font-size: .9rem; margin-top: .25rem; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.review-card {
  background: rgba(255,255,255,.06);
  border-radius: var(--radius); padding: 1.75rem;
  border: 1px solid rgba(255,255,255,.08);
}
.review-header {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem;
}
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--terracotta); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.review-name { color: var(--white); font-weight: 600; font-size: .9rem; }
.review-meta { color: var(--stone-400); font-size: .78rem; }
.review-stars { color: #f0c040; font-size: .85rem; }
.review-text { color: var(--stone-300); font-size: .88rem; line-height: 1.7; }
.reviews-airbnb {
  text-align: center; margin-top: 2.5rem;
  color: var(--stone-400); font-size: .85rem;
}
.reviews-airbnb a { color: var(--terracotta); text-decoration: underline; }

/* --- Location ------------------------------------------ */
#location .location-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.map-embed {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); height: 400px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; }
.location-info h3 { margin-bottom: 1.5rem; }
.location-list { display: flex; flex-direction: column; gap: .75rem; }
.location-item {
  display: flex; align-items: center; gap: 1rem;
  padding: .75rem 1rem;
  background: var(--stone-100); border-radius: var(--radius);
  font-size: .9rem; color: var(--stone-700);
}
.location-item-icon { font-size: 1.2rem; flex-shrink: 0; }

/* --- Activities ---------------------------------------- */
.activities-section {
  margin-top: 4rem;
  border-top: 1.5px solid var(--stone-200);
  padding-top: 2.5rem;
}
.activities-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--stone-800);
  margin-bottom: 2rem;
  text-align: center;
}
.activities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.activity-card {
  flex: 0 1 calc(33.333% - 1rem);
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.activity-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.activity-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.activity-card:hover .activity-img-wrap img { transform: scale(1.05); }
.activity-distance {
  position: absolute;
  top: .75rem; right: .75rem;
  background: rgba(61,46,34,.75);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  padding: .3rem .7rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.activity-body {
  padding: 1.25rem;
}
.activity-body h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--stone-900);
  margin-bottom: .5rem;
}
.activity-body p {
  font-size: .9rem;
  color: var(--stone-600);
  line-height: 1.6;
}

/* Hint "Voir les photos" sur les cartes avec galerie */
.activity-gallery-hint {
  position: absolute;
  bottom: .75rem; left: 50%; transform: translateX(-50%);
  background: rgba(196,120,90,.9);
  color: #fff;
  font-size: .75rem; font-weight: 600;
  padding: .3rem .9rem;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.activity-card--gallery { cursor: pointer; }
.activity-card--gallery:hover .activity-gallery-hint { opacity: 1; }

/* Modale galerie activité */
.act-gallery-modal {
  display: none;
  position: fixed; inset: 0; z-index: 9000;
}
.act-gallery-modal.open { display: flex; align-items: center; justify-content: center; }
.act-gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(20,12,6,.92);
  backdrop-filter: blur(6px);
}
.act-gallery-inner {
  position: relative; z-index: 1;
  width: min(95vw, 900px);
  max-height: 95vh;
  display: flex; flex-direction: column; align-items: center;
  gap: .75rem;
}
.act-gallery-close {
  position: absolute; top: -2.5rem; right: 0;
  background: none; border: none; color: #fff;
  font-size: 1.8rem; cursor: pointer; line-height: 1;
  opacity: .8; transition: opacity .2s;
}
.act-gallery-close:hover { opacity: 1; }
.act-gallery-title {
  color: #fff; font-family: var(--font-serif);
  font-size: 1.4rem; text-align: center;
  margin-bottom: .25rem;
}
.act-gallery-main {
  display: flex; align-items: center; gap: .5rem;
  width: 100%;
}
.act-gallery-img {
  flex: 1; max-height: 60vh; width: 100%;
  object-fit: contain; border-radius: var(--radius);
}
.act-gallery-prev,
.act-gallery-next {
  background: rgba(255,255,255,.15); border: none; color: #fff;
  font-size: 2.5rem; line-height: 1;
  width: 2.8rem; height: 2.8rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: background .2s;
}
.act-gallery-prev:hover, .act-gallery-next:hover { background: rgba(255,255,255,.3); }
.act-gallery-counter {
  color: rgba(255,255,255,.6); font-size: .85rem;
}
.act-gallery-thumbs {
  display: flex; gap: .4rem; flex-wrap: wrap; justify-content: center;
  max-height: 110px; overflow-y: auto;
  padding: .25rem;
}
.act-gallery-thumb {
  width: 64px; height: 48px; object-fit: cover;
  border-radius: 3px; cursor: pointer; opacity: .55;
  border: 2px solid transparent;
  transition: opacity .2s, border-color .2s;
  flex-shrink: 0;
}
.act-gallery-thumb:hover { opacity: .85; }
.act-gallery-thumb.active { opacity: 1; border-color: var(--terracotta); }

/* --- Contact ------------------------------------------ */
#contact { background: var(--stone-100); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 1.5rem; }
.contact-details { display: flex; flex-direction: column; gap: .75rem; }
.contact-detail {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9rem; color: var(--stone-700);
}
.contact-detail-icon { font-size: 1.1rem; }
.contact-form { background: var(--white); padding: 2.5rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* --- Footer ------------------------------------------- */
#footer {
  background: var(--stone-900);
  padding: 4rem 2rem 2rem;
  color: var(--stone-300);
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { color: var(--white); display: block; margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: .9rem; margin-bottom: 1.25rem; font-family: var(--font-sans); text-transform: uppercase; letter-spacing: .08em; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { font-size: .88rem; color: var(--stone-400); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: var(--stone-500);
}
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: var(--stone-500); transition: color var(--transition); }
.footer-legal a:hover { color: var(--white); }

/* --- Toast / Notifications ------------------------------ */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 3000;
  background: var(--stone-900); color: var(--white);
  padding: 1rem 1.5rem; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); font-size: .9rem;
  transform: translateY(100px); opacity: 0;
  transition: var(--transition);
  max-width: 380px;
  border-left: 4px solid var(--terracotta);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-color: var(--green); }
.toast.error { border-color: #c0392b; }

/* --- FullCalendar overrides ----------------------------- */
.fc {
  --fc-border-color: #e5d9c3;
  --fc-daygrid-event-dot-width: 8px;
  --fc-today-bg-color: rgba(196,120,90,.08);
  --fc-page-bg-color: #ffffff;
  --fc-neutral-bg-color: #d0bc98;
  font-family: var(--font-sans);
}

/* Barre navigation (mois + flèches) — fond sombre */
.fc .fc-toolbar {
  background: var(--stone-900) !important;
  padding: 1rem 1.5rem !important;
  margin-bottom: 0 !important;
  border-radius: 0 !important;
}
.fc .fc-toolbar-title {
  color: #ffffff !important;
  font-family: var(--font-serif);
  font-size: 1.3rem !important;
}
.fc .fc-button {
  background: rgba(255,255,255,.1) !important;
  border-color: rgba(255,255,255,.2) !important;
  color: #ffffff !important;
}
.fc .fc-button:hover { background: rgba(255,255,255,.25) !important; }

/* En-tête colonnes (lun. mar. ...) */
.fc .fc-col-header,
.fc .fc-col-header-cell {
  background: #f2ece0 !important;
}
.fc .fc-col-header-cell-cushion {
  color: #876849 !important;
  font-size: .72rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .06em !important;
  padding: .5rem .25rem !important;
  text-decoration: none !important;
}

/* Toutes les cellules jours — fond BLANC par défaut */
.fc .fc-daygrid-day,
.fc table,
.fc td,
.fc th {
  background: #ffffff !important;
}
/* Rétablir l'en-tête après le reset */
.fc .fc-col-header-cell { background: #f2ece0 !important; }

.fc .fc-daygrid-day-frame { min-height: 72px !important; }
.fc .fc-daygrid-day-number {
  color: #5a4433 !important;
  font-size: .82rem !important;
  padding: .35rem .5rem !important;
  text-decoration: none !important;
}

/* Prix dans chaque case — tarif unique */
.fc .fc-daygrid-day-frame { min-height: 64px !important; }

/* Nouveau : prix unique centré dans la case */
.fc-day-price {
  text-align: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--terracotta);
  padding: .1rem .2rem .25rem;
  pointer-events: none;
  letter-spacing: .01em;
}

/* "Non Dispo" dans les cases réservées */
.fc-day-unavail {
  text-align: center;
  font-size: .68rem;
  font-weight: 700;
  color: var(--stone-600);
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 0 .25rem .4rem;
  opacity: .75;
}

/* 1er tap mobile : date d'arrivée en attente du départ */
.fc .fc-daygrid-day.fc-tap-checkin {
  background: rgba(196,120,90,.25) !important;
}
.fc .fc-daygrid-day.fc-tap-checkin .fc-daygrid-day-number {
  color: var(--terracotta) !important;
  font-weight: 700 !important;
}

/* Aujourd'hui */
.fc .fc-day-today,
.fc .fc-day-today td {
  background: rgba(196,120,90,.1) !important;
}
.fc .fc-day-today .fc-daygrid-day-number {
  color: #c4785a !important;
  font-weight: 700 !important;
}

/* Cases "autre mois" (débordement) — cliquables et sélectionnables */
.fc .fc-day-other {
  pointer-events: auto !important;
  cursor: pointer !important;
  opacity: .85;
}
.fc .fc-day-other .fc-daygrid-day-frame {
  pointer-events: auto !important;
}

/* Cases RÉSERVÉES — couleur pierre (#d0bc98) */
.fc .fc-daygrid-day.fc-day-disabled,
.fc td.fc-day-disabled {
  background: #d0bc98 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}
.fc .fc-daygrid-day.fc-day-disabled .fc-daygrid-day-number {
  color: #876849 !important;
  opacity: .8 !important;
}

/* Jours passés — grisés + barrés, style Airbnb (non-cliquables) */
.fc .fc-daygrid-day.fc-day-past,
.fc td.fc-day-past {
  background: #f5f2ec !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}
.fc .fc-daygrid-day.fc-day-past .fc-daygrid-day-number {
  color: #b8b0a4 !important;
  text-decoration: line-through !important;
  opacity: .55 !important;
}
.fc .fc-daygrid-day.fc-day-past .fc-daygrid-day-events,
.fc .fc-daygrid-day.fc-day-past .lcdp-price {
  opacity: .35 !important;
  text-decoration: line-through !important;
}

/* Supprimer les overlays colorés — la couleur pierre suffit */
.fc-event-unavailable,
.fc-event-booked,
.fc .fc-bg-event {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  opacity: 0 !important;
}

/* --- Loading Spinner ------------------------------------ */
.spinner {
  width: 40px; height: 40px;
  border: 3px solid rgba(255,255,255,.2);
  border-top-color: var(--terracotta);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  margin: 2rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Responsive ----------------------------------------- */
@media (max-width: 1100px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-item:nth-child(2) { border-right: none; }
  #about .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .space-panel.active { grid-template-columns: 1fr; }
  .space-panel img { height: 300px; }
  .bedrooms-grid--6 { grid-template-columns: repeat(3, 1fr); }
  .bedrooms-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .bedrooms-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 340px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  #amenities .amenities-grid { grid-template-columns: repeat(4, 1fr); }
  #prices .prices-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .activities-grid { flex-wrap: wrap; }
  .activity-card { flex: 0 1 calc(50% - .75rem); }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 1rem; }
  .nav-links.open {
    display: flex; position: fixed; inset: 0; top: 60px;
    background: rgba(250,247,242,.98); padding: 2rem;
    backdrop-filter: blur(8px); z-index: 999;
  }
  .nav-links.open a { color: var(--stone-800); font-size: 1rem; }
  .nav-toggle { display: flex; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .bedrooms-grid--6, .bedrooms-grid--3, .bedrooms-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: none; }
  #amenities .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  #prices .prices-grid { grid-template-columns: 1fr; }
  /* Mariage card : colonnes → lignes sur mobile */
  .mariage-cols { flex-direction: column; gap: 1rem; }
  .mariage-col-sep { width: 100%; height: 1px; margin: 0; }
  .events-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  #location .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .section { padding: 4rem 1.25rem; }
  /* Activités : 2 colonnes sur tablette */
  .activity-card { flex: 0 1 calc(50% - .75rem); min-width: 0; }
  /* Chambres : colonnes empilées sur mobile */
  .bedrooms-twocols { grid-template-columns: 1fr; }
  .bedrooms-col { padding: 0 .25rem; width: 100%; }
  .bedrooms-col:first-child { border-right: none; border-bottom: 2px solid var(--stone-200); padding-bottom: 1.5rem; }
  .bedrooms-col .bedroom-card { max-width: none; }
  /* Tarifs formule : taille réduite */
  .mfb-price { font-size: 1.05rem; }
  .mfb-desc  { font-size: .65rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }

  /* ① Équipements : 2 colonnes carrées et égales */
  #amenities .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .amenity-card { padding: 1.2rem .75rem; }
  .amenity-icon { font-size: 2.2rem; margin-bottom: .6rem; }
  .amenity-card p { font-size: .85rem; }

  /* ② Chambres : 2 par ligne bien alignées */
  .bedrooms-grid--6, .bedrooms-grid--3, .bedrooms-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: none; gap: .75rem; }
  .bedrooms-col { padding: 0 .25rem; }
  .bedrooms-col .bedroom-card { max-width: none; }
  .bedroom-num { font-size: 1.5rem; }
  .bedroom-card h4 { font-size: .88rem; }
  .bedroom-card p { font-size: .8rem; }
  .bedroom-card:not(.bedroom-card--photo) { min-height: 132px; padding: .8rem .5rem; }

  /* ③ Carte Mariage : centrer le contenu empilé */
  .mariage-cols { align-items: center; }
  .mariage-col { text-align: center; }

  /* ③b Cartes tarifs : centrer les listes "Inclus" */
  .price-notes { display: flex; flex-direction: column; align-items: center; }
  .price-notes li { justify-content: center; }
  .price-included-label { text-align: center; }
  .price-deposit-note { text-align: center; }
  .price-block { text-align: center; }
  .price-block-alt { text-align: center; }

  /* ④ Formulaire : champs Arrivée/Départ plus courts */
  #booking { padding: 4rem 1rem; }
  .form-group input[type="date"],
  .form-group input[type="text"] { padding: .45rem .7rem; font-size: .85rem; }
  .form-row { grid-template-columns: 1fr; }
  .payment-methods { grid-template-columns: 1fr; }

  /* ⑤ Calendrier : pleine largeur, prix empilés label/valeur */
  #booking .booking-container { padding: 0; }
  .booking-calendar-wrap { border-radius: 0; margin: 0 -1rem; }

  /* Prix unique dans les cases du calendrier */
  .fc-day-price {
    font-size: .6rem !important;
    padding: .05rem .1rem .1rem !important;
  }

  /* Numéro du jour : tout petit en haut à droite */
  .fc .fc-daygrid-day-number {
    font-size: .6rem !important;
    padding: .1rem .2rem !important;
    line-height: 1 !important;
  }

  /* Hauteur des cases */
  .fc .fc-daygrid-day-frame {
    min-height: 0 !important;
    overflow: visible !important;
    position: relative !important;
  }

  .hero-actions { flex-direction: column; align-items: center; }
  .activity-card { flex: 0 1 100%; }
  .prestation-btns--cards { grid-template-columns: 1fr 1fr; width: 100%; }
  .mariage-formula-btn { padding: .55rem .4rem; }
  /* Tarif selector : passe en colonne pour que les 4 boutons prennent toute la largeur */
  .price-row.prestation-selector-row { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .prestation-selector-label { margin-bottom: .15rem; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-item { border-right: none !important; padding: 1rem .75rem; }
  .highlight-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1) !important; }

  /* Calendrier : conteneur pleine largeur, texte plus petit */
  .booking-calendar-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .fc .fc-daygrid-day-frame { min-height: 52px !important; }

  /* Options réservation : montant sur la ligne */
  .price-option-row { padding: .7rem .75rem; gap: .5rem; }
  .price-opt-amount { min-width: 60px; font-size: .9rem; }

  /* Règlement : 1 colonne sur très petit écran */
  .rules-grid { grid-template-columns: 1fr; }

  /* Sections : padding réduit */
  .section { padding: 3.5rem 1rem; }

  /* Contact grid : 1 colonne */
  .contact-grid { grid-template-columns: 1fr !important; }

  /* Prix total : padding réduit */
  .price-builder-total { padding: 1.2rem 1rem; }
}

/* --- Animations ----------------------------------------- */
[data-aos] {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos].aos-animate { opacity: 1; transform: none; }

/* --- Utility -------------------------------------------- */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── WhatsApp floating button ─────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: .55rem;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  padding: .6rem 1.1rem .6rem .65rem;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  letter-spacing: .01em;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(37,211,102,.55);
  color: #fff;
}
.whatsapp-float svg { width: 2rem; height: 2rem; flex-shrink: 0; }
@media (max-width: 600px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: .6rem; border-radius: 50%; }
}

/* ============================================================
   RÈGLEMENT DU SÉJOUR
   ============================================================ */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.rule-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--stone-200, #e7e0d5);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
.rule-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: .1rem;
}
.rule-body h4 {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--stone-800, #2d2620);
  margin: 0 0 .4rem;
}
.rule-body p {
  font-size: .9rem;
  color: var(--stone-600, #6b5e54);
  line-height: 1.6;
  margin: 0;
}
.rules-footer {
  text-align: center;
  font-size: .95rem;
  color: var(--stone-700, #4a3f37);
  margin-top: 1rem;
  padding: 1rem 2rem;
  background: rgba(180,120,60,.08);
  border-radius: 8px;
  border-left: 4px solid var(--terracotta, #b47a3c);
}

/* ============================================================
   LASER GAME POPUP
   ============================================================ */
.price-option-popup {
  cursor: pointer;
  transition: background .2s;
}
.price-option-popup:hover { background: #faf7f4; }
.price-option-popup.selected { background: #fdf3e7; border-color: var(--terracotta,#b47a3c); }

.laser-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.laser-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 780px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  padding: 2rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.laser-modal-close {
  position: absolute; top: 1rem; right: 1.2rem;
  background: none; border: none; font-size: 1.8rem;
  cursor: pointer; color: #888; line-height: 1;
}
.laser-modal-close:hover { color: #333; }
.laser-modal-header {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
}
.laser-modal-icon { font-size: 2.5rem; }
.laser-modal-header h2 { margin: 0; font-size: 1.4rem; }
.laser-modal-header p  { margin: .2rem 0 0; color: #777; font-size: .9rem; }

.laser-category { margin-bottom: 1.5rem; }
.laser-category h4 {
  font-size: .85rem; text-transform: uppercase; letter-spacing: .08em;
  color: #888; margin: 0 0 .75rem;
}
.laser-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: .75rem;
}
.laser-card {
  border: 2px solid #e7e0d5;
  border-radius: 10px;
  padding: .9rem 1rem;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .15s;
  background: #fafaf9;
}
.laser-card:hover {
  border-color: #c9956a;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}
.laser-card.selected {
  border-color: var(--terracotta,#b47a3c);
  background: #fdf3e7;
  box-shadow: 0 0 0 3px rgba(180,122,60,.15);
}
.laser-card-title { font-weight: 700; font-size: .95rem; margin-bottom: .3rem; }
.laser-card-price {
  font-size: 1.5rem; font-weight: 800;
  color: var(--terracotta,#b47a3c); margin-bottom: .5rem;
}
.laser-card-price small { font-size: .75rem; font-weight: 500; color: #888; }
.laser-card ul { margin: 0; padding: 0; list-style: none; }
.laser-card ul li { font-size: .8rem; color: #666; line-height: 1.8; }

.laser-persons-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin: 1.2rem 0 .5rem;
  padding: .9rem 1.1rem;
  background: #f9f6f2;
  border-radius: 8px;
}
.laser-persons-row label { font-weight: 600; font-size: .95rem; }
.laser-persons-counter {
  display: flex; align-items: center; gap: .8rem;
}
.laser-persons-counter button {
  width: 2.2rem; height: 2.2rem;
  border-radius: 50%; border: 2px solid var(--terracotta,#b47a3c);
  background: #fff; font-size: 1.2rem; cursor: pointer;
  color: var(--terracotta,#b47a3c); font-weight: 700;
  transition: background .15s;
}
.laser-persons-counter button:hover { background: var(--terracotta,#b47a3c); color: #fff; }
.laser-persons-counter span { font-size: 1.4rem; font-weight: 700; min-width: 2rem; text-align: center; }

.laser-slot-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin: .5rem 0;
  padding: .9rem 1.1rem;
  background: #f9f6f2;
  border-radius: 8px;
}
.laser-slot-row label { font-weight: 600; font-size: .95rem; }
.laser-slot-btns { display: flex; gap: .6rem; }
.laser-slot-btn {
  padding: .45rem 1.1rem;
  border-radius: 50px;
  border: 2px solid var(--terracotta, #b47a3c);
  background: #fff;
  color: var(--terracotta, #b47a3c);
  font-size: .9rem; font-weight: 600;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.laser-slot-btn:hover { background: rgba(180,122,60,.1); }
.laser-slot-btn.active { background: var(--terracotta, #b47a3c); color: #fff; }

.laser-total-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .8rem 1.1rem;
  background: var(--terracotta,#b47a3c);
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.laser-total-row strong { font-size: 1.4rem; }

.laser-modal-actions {
  display: flex; gap: .8rem; justify-content: flex-end; margin-top: .5rem;
}
.laser-note {
  font-size: .78rem; color: #999; margin-top: 1rem;
  border-top: 1px solid #eee; padding-top: .8rem;
}
@media (max-width: 500px) {
  .laser-modal { padding: 1.2rem; }
  .laser-cards { grid-template-columns: 1fr 1fr; }
}

/* Karting popup — cartes centrées */
#karting-popup-overlay .laser-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}
#karting-popup-overlay .laser-card {
  width: 190px;
  flex-shrink: 0;
  flex-grow: 0;
}

/* Laser Game popup — cartes centrées */
#laser-popup-overlay .laser-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}
#laser-popup-overlay .laser-card {
  width: 190px;
  flex-shrink: 0;
  flex-grow: 0;
}

/* Paintball popup — cartes centrées */
#paintball-popup-overlay .laser-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}
#paintball-popup-overlay .laser-card {
  width: 190px;
  flex-shrink: 0;
  flex-grow: 0;
}
