/* Police Shimano SquareBlackNarrow Regular */
@font-face {
  font-family: 'Shimano SquareBlackNarrow';
  src: url('Shimano SquareBlackNarrow Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Police Shimano SquareLight */
@font-face {
  font-family: 'Shimano SquareLight';
  src: url('Shimano-SquareLight.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #faf8f3;
  --bg-elev: #ffffff;
  --text: #131514;
  --muted: #5f6563;
  --gold: #e3b54a; /* ambre chaud pour les accents */
  --gold-600: #c79a34;
  --gold-700: #a57f22;
  --border: #e6e3dd;
  --accent: #e3b54a;
  --teal: #1f6d68; /* bleu canard inspiré des murs/barres */
  --teal-600: #15514d;
  --teal-700: #0f3a37;
  --teal-100: #e6f0ef;
}

/* Force reload - fond blanc pur */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji';
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main { background: var(--bg); }

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(120%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--text); text-decoration: none; }
.brand-mark { width: 36px; height: 36px; }
.brand-mark.small { width: 28px; height: 28px; }
.brand-name { font-family: 'Shimano SquareLight', 'Shimano SquareBlackNarrow', 'Cormorant Garamond', serif; font-size: 20px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-600); }
.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.nav a:hover::before {
  left: 100%;
}

.nav a:nth-child(1) {
  background: linear-gradient(135deg, var(--gold), var(--gold-600));
  color: white;
  box-shadow: 0 4px 15px rgba(201,170,113,0.3);
}

.nav a:nth-child(1):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,170,113,0.4);
}

.nav a:nth-child(2) {
  background: #000000;
  color: var(--gold);
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.nav a:nth-child(2):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  background: #1a1a1a;
}

.nav a:nth-child(3) {
  background: linear-gradient(135deg, var(--teal), var(--teal-600));
  color: white;
  box-shadow: 0 4px 15px rgba(31,109,104,0.3);
}

.nav a:nth-child(3):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31,109,104,0.4);
}

.nav-link, .nav-cta { color: var(--text); text-decoration: none; font-weight: 500; opacity: 0.9; }
.nav-cta { padding: 10px 16px; border: 1px solid var(--gold-600); border-radius: 999px; color: var(--gold-700); background: linear-gradient(180deg, #fff, #fff); transition: background 200ms ease, color 200ms ease; }
.nav-cta:hover { background: var(--gold); color: #0a0a0a; }

/* Hero */
.hero { position: relative; min-height: 92vh; display: grid; place-items: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* overlay réchauffé (ambre + léger teal) pour rappeler les suspensions et l’ambiance */
.hero-overlay { position: absolute; inset: 0; background:
  linear-gradient(180deg, rgba(31,109,104,0.15) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.55) 100%),
  radial-gradient(1000px 600px at 50% 20%, rgba(227,181,74,0.20), transparent 70%);
}
.hero-inner { position: relative; z-index: 2; padding: 120px 0 80px; transform: translateX(-3%); }
.hero-title { font-family: 'Shimano SquareLight', 'Shimano SquareBlackNarrow', 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(48px, 8vw, 90px); letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 16px; color: var(--gold); text-shadow: 0 4px 20px rgba(0,0,0,0.8); }
.hero-subtitle { margin: 0 0 28px; font-size: clamp(20px, 3vw, 28px); color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,0.6); font-weight: 500; }
.hero-actions { display: flex; gap: 12px; justify-content: center; }
.hero-meta { margin-top: 18px; color: #f1f1f1; display: flex; gap: 10px; justify-content: center; align-items: center; flex-wrap: wrap; }
.hero-contact { color: #ffffff; text-decoration: none; opacity: 0.9; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.dot { color: var(--gold); opacity: 0.8; }
.hero-noise { pointer-events: none; position: absolute; inset: 0; opacity: 0.05; mix-blend-mode: overlay; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100" height="100" filter="url(%23n)" opacity="0.6"/></svg>'); z-index: 1; }

.shimmer { background: linear-gradient(110deg, rgba(255,255,255,0.06), rgba(212,175,55,0.8), rgba(255,255,255,0.06)); -webkit-background-clip: text; background-clip: text; color: transparent; background-size: 200% 100%; animation: shine 6s ease-in-out infinite; }
@keyframes shine { 0%{ background-position: 0% 50%; } 50%{ background-position: 100% 50%; } 100%{ background-position: 0% 50%; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 999px; text-decoration: none; font-weight: 600; letter-spacing: 0.02em; transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease; border: 1px solid transparent; position: relative; overflow: hidden; }
.btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 500ms ease; }
.btn:hover::before { left: 100%; }
.btn-primary { background: linear-gradient(180deg, var(--accent), var(--gold)); color: #0a0a0a; box-shadow: 0 6px 24px rgba(227,181,74,0.28), inset 0 1px 0 rgba(255,255,255,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(227,181,74,0.38); }
.btn-ghost { color: #ffffff; border-color: var(--teal-600); background: var(--teal); }
.btn-ghost:hover { background: var(--teal-600); transform: translateY(-2px); }

/* Sections */
.section { padding: 80px 0; position: relative; background: var(--bg); }
.section-head { text-align: center; margin-bottom: 28px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 48px); margin: 0 0 8px; letter-spacing: 0.06em; color: var(--teal); }
.section-desc { margin: 0; color: var(--muted); }

/* Section Ambiance centrée */
#ambiance {
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

#ambiance .container {
  max-width: 800px;
}

#ambiance .section-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 20px;
}

#ambiance .section-subtitle:first-of-type {
  margin-top: 20px;
}

#ambiance .section-subtitle:last-of-type {
  margin-bottom: 0;
}

/* Aperçu Carte */
#apercu-carte {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,250,252,0.95));
  padding: 60px 0;
}

.apercu-header {
  text-align: center;
  margin-bottom: 50px;
}

.apercu-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-top: 12px;
  font-style: italic;
}

.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.menu-preview-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  position: relative;
}

.menu-preview-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.menu-preview-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.menu-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-preview-item:hover .menu-preview-image img {
  transform: scale(1.05);
}

.menu-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.menu-preview-label {
  background: var(--gold);
  color: var(--teal);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-preview-content {
  padding: 25px;
}

.menu-preview-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
  font-family: 'Cormorant Garamond', serif;
}

.menu-preview-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.apercu-cta {
  text-align: center;
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--teal), var(--teal-600));
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(20, 157, 157, 0.3);
}

.btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(20, 157, 157, 0.4);
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
}

.btn-large svg {
  transition: transform 0.3s ease;
}

.btn-large:hover svg {
  transform: translateX(4px);
}

/* Nouveaux boutons élégants et responsives */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn-deliveroo {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  color: var(--teal);
  border: 2px solid var(--teal);
  box-shadow: 0 4px 20px rgba(31, 109, 104, 0.15), inset 0 1px 0 rgba(255,255,255,0.8);
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-deliveroo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(31, 109, 104, 0.1), transparent);
  transition: left 0.6s ease;
}

.btn-deliveroo:hover::before {
  left: 100%;
}

.btn-deliveroo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(31, 109, 104, 0.25), inset 0 1px 0 rgba(255,255,255,0.9);
  background: linear-gradient(135deg, #ffffff, #f0f8f8);
  border-color: var(--teal-600);
}

.btn-deliveroo svg {
  transition: all 0.3s ease;
  filter: drop-shadow(0 1px 2px rgba(31, 109, 104, 0.2));
}

.btn-deliveroo:hover svg {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 2px 4px rgba(31, 109, 104, 0.3));
}

/* Responsive pour les boutons */
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: 14px 24px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .cta-buttons .btn {
    padding: 12px 20px;
    font-size: 15px;
  }
  
  .cta-buttons .btn span {
    font-size: 14px;
  }
}

.video-container {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.video-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
  z-index: 1;
}

.video-overlay-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: linear-gradient(135deg, var(--gold), var(--gold-600));
  color: var(--teal);
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Shimano SquareLight', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 
    0 8px 25px rgba(227, 181, 74, 0.4),
    0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.video-overlay-button:hover {
  transform: translate(-50%, -50%) translateY(-3px);
  box-shadow: 
    0 12px 35px rgba(227, 181, 74, 0.6),
    0 8px 25px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, var(--gold-600), var(--gold-700));
  scale: 1.05;
}

.ambiance-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 350px;
  max-height: 500px;
  position: relative;
  z-index: 0;
}

@media (max-width: 768px) {
  #apercu-carte {
    padding: 40px 0;
  }
  
  .apercu-header {
    margin-bottom: 30px;
  }
  
  .apercu-subtitle {
    font-size: 16px;
  }
  
  .menu-preview-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .menu-preview-image {
    height: 180px;
  }
  
  .menu-preview-content {
    padding: 20px;
  }
  
  .menu-preview-content h3 {
    font-size: 18px;
  }
  
  .btn-large {
    padding: 14px 28px;
    font-size: 16px;
  }
  
  .video-container {
    margin-top: 24px;
    border-radius: 12px;
    border: 2px solid var(--gold);
  }
  
  .ambiance-video {
    min-height: 250px;
    max-height: 350px;
  }
  
  .video-overlay-button {
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 40px;
  }
  
  .video-overlay-button:hover {
    scale: 1.03;
  }
}

@media (max-width: 480px) {
  .video-container {
    margin-top: 20px;
    border-radius: 10px;
    border: 2px solid var(--gold);
  }
  
  .ambiance-video {
    min-height: 200px;
    max-height: 280px;
  }
  
  .video-overlay-button {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 35px;
  }
  
  #ambiance .section-subtitle {
    font-size: 16px;
    padding: 0 10px;
  }
}

/* Section Horaires d'ouverture */
#horaires {
  text-align: center;
  background: var(--bg);
}

.horaires-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.jour {
  background: white;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 60px;
}

.jour:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.jour-nom {
  font-weight: 600;
  color: var(--text);
  font-size: 16px;
  min-width: 80px;
  text-align: left;
}

.horaires {
  color: var(--teal);
  font-weight: 600;
  font-size: 15px;
  text-align: right;
  flex: 1;
  margin-left: 20px;
}

/* Dimanche prend toute la largeur */
.jour:last-child {
  grid-column: 1 / -1;
  justify-content: center;
}

.jour:last-child .jour-nom {
  margin-right: 20px;
}

@media (max-width: 768px) {
  .horaires-grid {
    grid-template-columns: 1fr;
  }
  
  .jour:last-child {
    grid-column: 1;
  }
}

.horaires.ferme {
  color: var(--muted);
  font-style: italic;
}

/* Séparateur avec cloche */
.section-separator {
  text-align: center;
  padding: 20px 0;
  background: var(--bg);
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.section-separator::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 400px;
  height: 1px;
  background: var(--border);
  z-index: 1;
}

.bell-icon {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: white;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin: 0 auto;
}

.bell-icon svg {
  display: block;
  animation: bellRing 3s ease-in-out infinite;
}

@keyframes bellRing {
  0%, 100% { transform: rotate(0deg); }
  10%, 30%, 50%, 70%, 90% { transform: rotate(-5deg); }
  20%, 40%, 60%, 80% { transform: rotate(5deg); }
}

/* Menu */
.menu-categories { display: grid; gap: 32px; margin-top: 24px; }
.menu-category { background: linear-gradient(180deg, #ffffff, #ffffff); border: 1px solid var(--border); border-left: 4px solid var(--teal); border-radius: 14px; padding: 24px; transform: translateY(20px); opacity: 0; transition: transform 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 800ms ease, box-shadow 400ms ease; box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.menu-category.show { transform: translateY(0); opacity: 1; box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.menu-category:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.10); }
.category-title { font-family: 'Shimano SquareBlackNarrow', 'Cormorant Garamond', serif; font-size: 24px; margin: 0 0 16px; color: var(--teal); letter-spacing: 0.06em; text-transform: uppercase; position: relative; }
.category-title::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 60px; height: 2px; background: linear-gradient(90deg, var(--teal), transparent); }
.menu-items { display: grid; gap: 16px; }
.menu-item { border-bottom: 1px solid rgba(31,109,104,0.12); padding-bottom: 12px; transform: translateX(-10px); opacity: 0; transition: transform 600ms ease, opacity 600ms ease; }
.menu-category.show .menu-item { transform: translateX(0); opacity: 1; }
.menu-item:nth-child(1) { transition-delay: 100ms; }
.menu-item:nth-child(2) { transition-delay: 200ms; }
.menu-item:nth-child(3) { transition-delay: 300ms; }
.menu-item:nth-child(4) { transition-delay: 400ms; }
.menu-item:nth-child(5) { transition-delay: 500ms; }
.menu-item:last-child { border-bottom: none; padding-bottom: 0; }
.menu-item:hover { transform: translateX(4px); }
.item-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 4px; }
.item-header h4 { margin: 0; font-size: 16px; font-weight: 600; letter-spacing: 0.02em; transition: color 200ms ease; }
.menu-item:hover .item-header h4 { color: var(--teal); }
.price { color: var(--gold-700); font-weight: 700; font-size: 16px; white-space: nowrap; transition: transform 200ms ease; }
.menu-item:hover .price { transform: scale(1.04); }
.item-desc { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.4; }
.menu-actions { display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; margin-top: 24px; }
.card { background: linear-gradient(180deg, rgba(201,170,113,0.08), rgba(10,10,10,0.6)); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; transform: translateY(8px); opacity: 0; transition: transform 600ms ease, opacity 600ms ease, box-shadow 400ms ease; box-shadow: 0 10px 40px rgba(0,0,0,0.25); }
.card.show { transform: translateY(0); opacity: 1; }
.card-media { aspect-ratio: 3/2; background: #0b0b0b; position: relative; }
.card-body { padding: 14px 14px 18px; }
.card-title { margin: 0 0 6px; font-size: 18px; letter-spacing: 0.02em; }
.card-text { margin: 0; color: var(--muted); font-size: 14px; }

/* Galerie */
.gallery-grid { columns: 2 320px; column-gap: 18px; }
.gallery-grid canvas { width: 100%; height: auto; border-radius: 16px; border: 1px solid var(--border); margin-bottom: 18px; box-shadow: 0 10px 40px rgba(0,0,0,0.25); opacity: 0; transform: translateY(8px); transition: opacity 600ms ease, transform 600ms ease; }
.gallery-grid canvas.show { opacity: 1; transform: translateY(0); }

/* Reservation */
.form { display: grid; gap: 12px; margin-top: 16px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.form-full { display: block; }
.form label span { display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form input, .form textarea { width: 100%; background: #ffffff; border: 1px solid var(--border); color: var(--text); padding: 12px 14px; border-radius: 12px; outline: none; transition: border-color 160ms ease, box-shadow 160ms ease; }
.form input:focus, .form textarea:focus { border-color: var(--teal-600); box-shadow: 0 0 0 3px rgba(31,109,104,0.15); }
select { width: 100%; background: #ffffff; border: 1px solid var(--border); color: var(--text); padding: 12px 14px; border-radius: 12px; outline: none; }
select:focus { border-color: var(--teal-600); box-shadow: 0 0 0 3px rgba(31,109,104,0.15); }
.help { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.form-actions .btn { flex: 1; min-width: 200px; color: white; }
.form-legal { margin: 6px 0 0; color: var(--muted); font-size: 12px; }
.form-actions .btn-primary { background: linear-gradient(180deg, var(--gold), var(--gold-600)); }

/* Footer */
/* Localisation */
#localisation {
  background: var(--bg);
  padding: 60px 0;
}

.map-container {
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
}

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

@media (max-width: 768px) {
  .map-container iframe {
    height: 300px;
  }
}

/* Site Footer */
.site-footer { 
  background: var(--teal); 
  margin-top: 40px; 
  color: white;
}

.footer-inner { 
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
  align-items: start;
}

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

.footer-brand { 
  display: flex; 
  align-items: center; 
  gap: 10px; 
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 12px;
  font-family: 'Cormorant Garamond', serif;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.footer-section-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 12px;
  font-family: 'Cormorant Garamond', serif;
}

.footer-section .contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-section .contact-info a,
.address-link { 
  color: rgba(255,255,255,0.9); 
  text-decoration: none; 
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-section .contact-info a:hover,
.address-link:hover { 
  color: white;
  transform: translateX(4px);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  padding: 6px 0;
  transition: all 0.3s ease;
  font-size: 14px;
}

.social-link:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  background: var(--teal-600);
  padding: 20px 0;
}

.footer-bottom-content {
  text-align: center;
}

.footer-awards {
  font-size: 14px;
  color: var(--gold);
  margin: 0 0 8px;
  font-weight: 500;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding: 30px 0;
  }
  
  .footer-main {
    max-width: none;
  }
  
  .footer-brand {
    justify-content: center;
  }
  
  .footer-info {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-section .contact-info {
    align-items: center;
  }
  
  .social-links {
    align-items: center;
  }
  
  .footer-section .contact-info a:hover,
  .address-link:hover,
  .social-link:hover {
    transform: translateY(-2px);
  }
}

/* Gelati Section */
.gelati-section {
  margin-bottom: 30px;
}

.gelati-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--teal);
  margin: 0 0 20px;
  font-family: 'Cormorant Garamond', serif;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  display: inline-block;
}

.parfums {
  margin-top: 20px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(227, 181, 74, 0.05), rgba(227, 181, 74, 0.1));
  border-radius: 12px;
  border-left: 4px solid var(--gold);
}

.parfums-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--teal);
  margin: 0 0 8px;
  font-family: 'Cormorant Garamond', serif;
}

.parfums-list {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
  font-style: italic;
}

/* Toast */
.toast { position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%) translateY(20px); background: linear-gradient(180deg, rgba(201,170,113,0.16), rgba(10,10,10,0.85)); border: 1px solid var(--gold-600); color: var(--text); padding: 12px 16px; border-radius: 12px; box-shadow: 0 8px 30px rgba(0,0,0,0.4); opacity: 0; pointer-events: none; transition: opacity 240ms ease, transform 240ms ease; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Reveal on scroll */
.reveal { visibility: hidden; }

/* Ambiance cards */
.amb-card { background: #ffffff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transform: translateY(8px); opacity: 0; transition: transform 600ms ease, opacity 600ms ease; }
.amb-card.show { transform: translateY(0); opacity: 1; }

/* --- Bouton flottant de réservation --- */
.floating-reserve-btn {
  position: fixed;
  right: 20px;
  bottom: 27px;
  background: var(--teal);
  color: white;
  border: none;
  padding: 16px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(31,109,104,0.3);
  transition: all 0.3s ease;
  z-index: 1000;
  white-space: nowrap;
}

.floating-reserve-btn:hover {
  background: var(--teal-600);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(31,109,104,0.4);
}

.floating-reserve-btn:active {
  transform: translateY(0);
}

/* --- Pop-up de réservation avec calendrier --- */
.reservation-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 450px;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 2000;
  backdrop-filter: blur(5px);
}

.reservation-modal.show {
  display: block;
}

.modal-content {
  background: var(--teal);
  color: white;
  border-radius: 20px 0 0 20px;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Shimano SquareLight', 'Shimano SquareBlackNarrow', 'Cormorant Garamond', serif;
  color: var(--gold-600);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.modal-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.modal-body {
  padding: 20px;
}

.welcome-text {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.contact-info, .closing-text {
  font-size: 14px;
  margin: 5px 0;
  opacity: 0.9;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
}

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

.contact-restaurant {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.contact-restaurant p {
  margin: 5px 0;
  color: var(--muted);
}

.contact-restaurant a {
  color: var(--teal);
  text-decoration: none;
}

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

.guests-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.guests-icon {
  font-size: 20px;
}

.guests-text {
  font-weight: 600;
  flex: 1;
}

.guests-dropdown {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

.guests-dropdown option {
  background: var(--teal);
  color: white;
}

.separator {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 20px 0;
}

.calendar-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.calendar-icon {
  font-size: 18px;
}

.today-text {
  font-weight: 600;
  font-size: 16px;
}

.month-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.current-month {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.calendar-grid {
  margin-bottom: 20px;
}

.weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 10px;
}

.weekdays span {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.8;
  padding: 8px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.calendar-day.other-month {
  opacity: 0.3;
}

.calendar-day.available {
  background: rgba(255, 255, 255, 0.1);
}

.calendar-day.available:hover {
  background: rgba(255, 255, 255, 0.2);
}

.calendar-day.selected {
  background: white;
  color: var(--teal);
  font-weight: 600;
}

.calendar-day.unavailable {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.time-slot {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 12px 8px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.time-slot:hover {
  background: rgba(255, 255, 255, 0.2);
}

.time-slot.selected {
  background: white;
  color: var(--teal);
  font-weight: 600;
}

.reservation-footer {
  text-align: center;
  margin-top: 20px;
}

.reservation-footer p {
  margin: 5px 0;
  font-size: 12px;
  opacity: 0.8;
}

.powered-by {
  font-weight: 600;
}

/* --- Système par étapes --- */
.reservation-step {
  display: none;
}

.reservation-step.active {
  display: block;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.step-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.btn-back {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.btn-back:hover {
  background: rgba(255, 255, 255, 0.3);
}

.form-section {
  margin: 25px 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s;
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
  background: var(--teal);
  color: white;
}

.step-actions {
  margin-top: 30px;
  text-align: center;
}

.btn-next,
.btn-confirm {
  background: white;
  color: var(--teal);
  border: none;
  padding: 14px 28px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 200px;
}

.btn-next:hover,
.btn-confirm:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
}

.btn-confirm:disabled {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
  cursor: not-allowed;
  transform: none;
}

.btn-confirm:disabled:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: none;
}

@media (max-width: 720px) {
  .hero-inner { padding: 100px 0 60px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* Responsive pour la modal de réservation */
@media (max-width: 768px) {
  .reservation-modal {
    width: 100%;
    right: 0;
    left: 0;
    border-radius: 0;
  }
  
  .modal-content {
    border-radius: 0;
    padding: 20px;
  }
  
  .modal-header {
    padding: 15px 0;
  }
  
  .modal-header h2 {
    font-size: 24px;
  }
  
  .welcome-text {
    font-size: 16px;
  }
  
  .contact-info {
    font-size: 13px;
  }
  
  .form-section {
    gap: 15px;
  }
  
  .form-group input,
  .form-group select {
    padding: 12px;
    font-size: 16px;
  }
  
  .calendar-section {
    margin: 20px 0;
  }
  
  .calendar-grid {
    font-size: 14px;
  }
  
  .calendar-days {
    gap: 5px;
  }
  
  .day {
    padding: 8px;
    font-size: 14px;
  }
  
  .time-slots {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .time-slot {
    padding: 10px;
    font-size: 14px;
  }
  
  .btn-next,
  .btn-confirm,
  .btn-back {
    padding: 12px 20px;
    font-size: 16px;
    width: 100%;
    margin: 10px 0;
  }
}

/* --- Section Livraison --- */
.livraison-section {
  background: linear-gradient(135deg, rgba(31, 109, 104, 0.03) 0%, rgba(227, 181, 74, 0.05) 100%);
  padding: 80px 0;
}

.livraison-header {
  text-align: center;
  margin-bottom: 50px;
}

.livraison-header .section-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin-top: 12px;
  font-style: italic;
}

.formules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.formule-card {
  background: white;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  border: 2px solid transparent;
  overflow: hidden;
}

.formule-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.formule-card:hover::before {
  transform: scaleX(1);
}

.formule-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(31, 109, 104, 0.2);
  border-color: var(--teal);
}

.formule-card.popular {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(227, 181, 74, 0.25);
}

.formule-card.popular::before {
  background: var(--gold);
  transform: scaleX(1);
}

.formule-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal), var(--teal-600));
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.popular-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-600));
  color: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.formule-title {
  font-family: 'Shimano SquareLight', 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.formule-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
}

.formule-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.formule-list li {
  padding: 10px 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(31, 109, 104, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.formule-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.formule-list li:last-child {
  border-bottom: none;
}

.formule-list li.highlight {
  color: var(--teal);
  font-weight: 500;
}

.formule-list li.highlight strong {
  color: var(--gold);
  font-weight: 700;
}

/* Informations livraison */
.livraison-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
  padding: 40px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-600) 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(31, 109, 104, 0.3);
}

.livraison-info-card {
  text-align: center;
  color: white;
  padding: 20px;
  transition: transform 0.3s ease;
}

.livraison-info-card:hover {
  transform: translateY(-5px);
}

.info-icon {
  margin-bottom: 15px;
  animation: float 3s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-icon svg {
  color: white;
  width: 48px;
  height: 48px;
}

.livraison-info-card:nth-child(1) .info-icon {
  animation-delay: 0s;
}

.livraison-info-card:nth-child(2) .info-icon {
  animation-delay: 0.5s;
}

.livraison-info-card:nth-child(3) .info-icon {
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.livraison-info-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
}

.livraison-info-card p {
  font-size: 15px;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.livraison-info-card a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
}

.livraison-info-card a:hover {
  color: white;
  transform: scale(1.05);
}

/* Responsive pour la section livraison */
@media (max-width: 768px) {
  .livraison-section {
    padding: 50px 0;
  }
  
  .livraison-header {
    margin-bottom: 35px;
  }
  
  .formules-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 35px;
  }
  
  .formule-card {
    padding: 25px 20px;
  }
  
  .formule-title {
    font-size: 20px;
  }
  
  .formule-price {
    font-size: 32px;
  }
  
  .livraison-info {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 20px;
    margin-top: 35px;
  }
  
  .info-icon svg {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .livraison-header .section-title {
    font-size: 28px;
  }
  
  .livraison-header .section-subtitle {
    font-size: 16px;
  }
  
  .formule-card {
    padding: 20px 18px;
  }
  
  .formule-title {
    font-size: 18px;
  }
  
  .formule-price {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .formule-list li {
    font-size: 14px;
    padding: 8px 0;
  }
  
  .livraison-info {
    padding: 25px 15px;
  }
  
  .livraison-info-card h4 {
    font-size: 18px;
  }
  
  .livraison-info-card p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .reservation-modal {
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
  }
  
  .modal-content {
    border-radius: 0;
    padding: 15px;
    height: 100%;
    overflow-y: auto;
  }
  
  .modal-header {
    padding: 10px 0;
    margin-bottom: 15px;
  }
  
  .modal-header h2 {
    font-size: 20px;
  }
  
  .welcome-text {
    font-size: 15px;
    margin-bottom: 8px;
  }
  
  .contact-info {
    font-size: 12px;
    margin: 3px 0;
  }
  
  .closing-text {
    font-size: 12px;
  }
  
  .form-section {
    gap: 12px;
    margin: 20px 0;
  }
  
  .form-group label {
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .form-group input,
  .form-group select {
    padding: 10px;
    font-size: 16px;
    border-radius: 8px;
  }
  
  .step-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .btn-back {
    padding: 8px 12px;
    font-size: 14px;
    align-self: flex-start;
  }
  
  .calendar-section {
    margin: 15px 0;
  }
  
  .calendar-header {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .month-navigation {
    gap: 15px;
  }
  
  .month-navigation h3 {
    font-size: 16px;
  }
  
  .nav-btn {
    padding: 8px 12px;
    font-size: 16px;
  }
  
  .calendar-grid {
    font-size: 12px;
  }
  
  .weekdays {
    font-size: 11px;
  }
  
  .calendar-days {
    gap: 3px;
  }
  
  .day {
    padding: 6px;
    font-size: 12px;
    min-height: 30px;
  }
  
  .time-slots {
    grid-template-columns: 1fr;
    gap: 6px;
    margin: 15px 0;
  }
  
  .time-slot {
    padding: 8px;
    font-size: 13px;
  }
  
  .step-actions {
    margin: 20px 0;
  }
  
  .btn-next,
  .btn-confirm {
    padding: 14px 20px;
    font-size: 16px;
    width: 100%;
    margin: 8px 0;
  }
  
  .reservation-footer {
    padding: 15px 0;
    margin-top: 20px;
  }
  
  .reservation-footer p {
    font-size: 12px;
  }
}




