/* ==========================================
   RESTAURANT RESERVATION SYSTEM
   Dark/warm aesthetic - conversion-focused
   ========================================== */

:root {
  --bg-dark: #1a1a2e;
  --bg-card: #16213e;
  --bg-input: #0f3460;
  --gold: #d4a853;
  --gold-light: #e8c97a;
  --cream: #f5f0e8;
  --cream-dim: #c4b9a8;
  --burgundy: #8b2252;
  --green: #2ecc71;
  --amber: #f39c12;
  --red: #e74c3c;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --radius: 12px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg-dark);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(72px + var(--safe-bottom));
  overflow-x: hidden;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================
   HERO
   ========================================== */
#hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,168,83,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(139,34,82,0.06) 0%, transparent 50%);
  animation: ambientGlow 15s ease-in-out infinite alternate;
}

@keyframes ambientGlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-3%, -3%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,46,0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 24px;
}

.hero-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.2rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(212,168,83,0.3);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--cream-dim);
  margin-bottom: 32px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.hero-event {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,168,83,0.12);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: 40px;
  padding: 10px 20px;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease;
}

.event-badge {
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 20px;
}

.event-name {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.95rem;
}

.countdown {
  color: var(--cream-dim);
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--bg-dark);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 36px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212,168,83,0.35);
}

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

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-lg {
  padding: 16px 48px;
  font-size: 1.1rem;
  width: 100%;
  max-width: 360px;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--cream-dim);
  font-size: 0.95rem;
  padding: 12px 28px;
  border: 1px solid rgba(196,185,168,0.3);
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-text {
  background: none;
  border: none;
  color: var(--cream-dim);
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 12px;
}

/* ==========================================
   SECTIONS
   ========================================== */
section {
  padding: 60px 0;
}

.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.8rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  color: var(--cream-dim);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.section-badge {
  display: inline-block;
  background: var(--burgundy);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* ==========================================
   TONIGHT'S EVENT SPOTLIGHT
   ========================================== */
.event-spotlight {
  background: var(--bg-card);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.spotlight-info h2 {
  font-family: Georgia, serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.spotlight-info p {
  color: var(--cream-dim);
  margin-bottom: 16px;
  line-height: 1.7;
}

.spotlight-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--cream-dim);
  font-size: 0.9rem;
}

.meta-item.spots {
  color: var(--amber);
  font-weight: 600;
}

.countdown-large {
  background: rgba(212,168,83,0.08);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  margin-bottom: 20px;
}

.countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cream-dim);
  margin-bottom: 6px;
}

.countdown-digits {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  letter-spacing: 2px;
}

/* ==========================================
   RESERVATION WIZARD
   ========================================== */
#reserve {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #12122a 100%);
}

.progress-bar {
  height: 4px;
  background: rgba(212,168,83,0.15);
  border-radius: 4px;
  margin-bottom: 8px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  transition: width 0.4s ease;
}

.step-indicator {
  text-align: center;
  font-size: 0.8rem;
  color: var(--cream-dim);
  margin-bottom: 28px;
}

.step {
  display: none;
  animation: fadeInUp 0.4s ease;
  text-align: center;
  min-height: 260px;
}

.step.active {
  display: block;
}

.step h3 {
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 20px;
}

.step-hint {
  color: var(--cream-dim);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Party Size Grid */
.size-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 320px;
  margin: 0 auto 16px;
}

.size-btn {
  background: var(--bg-card);
  border: 2px solid rgba(212,168,83,0.15);
  color: var(--cream);
  font-size: 1.3rem;
  font-weight: 600;
  padding: 16px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
}

.size-btn:hover, .size-btn.selected {
  border-color: var(--gold);
  background: rgba(212,168,83,0.12);
  color: var(--gold);
}

.size-btn.popular {
  position: relative;
}

.hint {
  font-size: 0.85rem;
  color: var(--cream-dim);
}

/* Date Scroll */
.date-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 0 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.date-scroll::-webkit-scrollbar { display: none; }

.date-card {
  flex-shrink: 0;
  scroll-snap-align: center;
  background: var(--bg-card);
  border: 2px solid rgba(212,168,83,0.15);
  border-radius: var(--radius);
  padding: 14px 18px;
  cursor: pointer;
  text-align: center;
  min-width: 80px;
  transition: all 0.2s;
}

.date-card:hover, .date-card.selected {
  border-color: var(--gold);
  background: rgba(212,168,83,0.12);
}

.date-card .day-name {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cream-dim);
  margin-bottom: 4px;
}

.date-card .day-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
}

.date-card .month {
  font-size: 0.7rem;
  color: var(--cream-dim);
}

.date-card.selected .day-num { color: var(--gold); }
.date-card.today { border-color: var(--gold); }
.date-card.today .day-name { color: var(--gold); }

.date-card.has-event::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--burgundy);
  border-radius: 50%;
  margin: 6px auto 0;
}

/* Time Grid */
.time-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.time-btn {
  background: var(--bg-card);
  border: 2px solid rgba(212,168,83,0.15);
  border-radius: var(--radius);
  padding: 14px 8px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.time-btn:hover:not(.disabled), .time-btn.selected {
  border-color: var(--gold);
  background: rgba(212,168,83,0.12);
}

.time-btn .time-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
}

.time-btn .time-label {
  font-size: 0.7rem;
  margin-top: 4px;
  display: block;
}

.time-btn .time-label.available { color: var(--green); }
.time-btn .time-label.limited { color: var(--amber); font-weight: 600; }
.time-btn .time-label.full { color: var(--red); }

.time-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.time-btn.selected .time-value { color: var(--gold); }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.time-btn .time-label.limited { animation: pulse 2s infinite; }

/* Seating Grid */
.seating-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}

.seating-btn {
  background: var(--bg-card);
  border: 2px solid rgba(212,168,83,0.15);
  border-radius: var(--radius);
  padding: 20px 12px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.seating-btn:hover, .seating-btn.selected {
  border-color: var(--gold);
  background: rgba(212,168,83,0.12);
}

.seating-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 8px;
}

.seating-label {
  display: block;
  font-weight: 600;
  color: var(--cream);
  font-size: 0.95rem;
}

.seating-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--cream-dim);
  margin-top: 4px;
}

/* Event Add-on */
.addon-card {
  background: var(--bg-card);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: var(--radius);
  padding: 20px;
  margin: 16px auto;
  max-width: 400px;
  text-align: left;
}

.addon-card .addon-title {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.addon-card .addon-desc {
  color: var(--cream-dim);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.addon-card .addon-spots {
  color: var(--amber);
  font-size: 0.85rem;
  font-weight: 600;
}

.addon-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
}

/* Form Inputs */
.form-group {
  margin-bottom: 16px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.form-input {
  width: 100%;
  background: var(--bg-card);
  border: 2px solid rgba(212,168,83,0.15);
  border-radius: var(--radius);
  color: var(--cream);
  font-size: 1rem;
  padding: 14px 16px;
  transition: border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
}

.form-input::placeholder {
  color: rgba(196,185,168,0.5);
}

/* Confirmation Card */
.confirm-card {
  background: var(--bg-card);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 400px;
  margin: 20px auto;
  text-align: left;
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(212,168,83,0.08);
}

.confirm-row:last-child { border-bottom: none; }

.confirm-label {
  color: var(--cream-dim);
  font-size: 0.9rem;
}

.confirm-value {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
}

/* Success */
.success-wrap {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--green), #27ae60);
  color: white;
  font-size: 2.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.success-hint {
  color: var(--cream-dim);
  font-size: 0.85rem;
  margin: 16px 0 24px;
}

/* Loading */
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 0;
  color: var(--cream-dim);
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(212,168,83,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==========================================
   EVENTS LISTING
   ========================================== */
#events {
  background: var(--bg-dark);
}

.events-grid {
  display: grid;
  gap: 16px;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid rgba(212,168,83,0.12);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
  cursor: pointer;
}

.event-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.event-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.event-card-title {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: var(--gold);
}

.event-card-type {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(139,34,82,0.3);
  color: var(--cream);
  padding: 3px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}

.event-card-desc {
  color: var(--cream-dim);
  font-size: 0.9rem;
  margin-bottom: 14px;
  line-height: 1.6;
}

.event-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.event-card-date {
  color: var(--cream-dim);
  font-size: 0.85rem;
}

.event-card-spots {
  font-size: 0.85rem;
  font-weight: 600;
}

.event-card-spots.available { color: var(--green); }
.event-card-spots.limited { color: var(--amber); animation: pulse 2s infinite; }
.event-card-spots.urgent { color: var(--red); animation: pulse 1.5s infinite; }
.event-card-spots.sold-out { color: var(--cream-dim); opacity: 0.6; }

.event-card-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
}

.event-card-cta:hover {
  box-shadow: 0 4px 15px rgba(212,168,83,0.3);
}

.empty-state {
  text-align: center;
  color: var(--cream-dim);
  padding: 40px;
}

/* ==========================================
   CHAT WIDGET
   ========================================== */
.chat-widget {
  position: fixed;
  bottom: calc(80px + var(--safe-bottom));
  right: 16px;
  z-index: 999;
}

.chat-toggle {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-dark);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(212,168,83,0.4);
  transition: all 0.2s;
  position: relative;
}

.chat-toggle:hover {
  transform: scale(1.08);
}

.chat-toggle.open {
  background: var(--bg-card);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.chat-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--red);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-panel {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 320px;
  max-width: calc(100vw - 32px);
  background: var(--bg-card);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  overflow: hidden;
  animation: chatSlideUp 0.3s ease;
}

@keyframes chatSlideUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-header {
  background: rgba(212,168,83,0.08);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--gold);
  font-size: 0.95rem;
}

.chat-close {
  background: none;
  border: none;
  color: var(--cream-dim);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
}

.chat-body {
  padding: 16px;
  max-height: 360px;
  overflow-y: auto;
}

.chat-message {
  margin-bottom: 12px;
}

.chat-message.bot p {
  background: rgba(212,168,83,0.08);
  color: var(--cream);
  padding: 12px 16px;
  border-radius: 16px 16px 16px 4px;
  font-size: 0.9rem;
  display: inline-block;
}

.chat-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-btn {
  background: var(--bg-dark);
  border: 1px solid rgba(212,168,83,0.2);
  color: var(--cream);
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.chat-btn:hover {
  border-color: var(--gold);
  background: rgba(212,168,83,0.08);
}

.chat-hesitation {
  padding: 16px;
  background: rgba(231,76,60,0.08);
  border-top: 1px solid rgba(231,76,60,0.2);
  text-align: center;
  animation: fadeInUp 0.3s ease;
}

.chat-hesitation p {
  color: var(--cream-dim);
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.btn-call-now {
  display: inline-block;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 20px;
  font-size: 0.95rem;
}

/* ==========================================
   STICKY BOTTOM BAR
   ========================================== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  background: var(--bg-card);
  border-top: 1px solid rgba(212,168,83,0.12);
  padding: 0;
  padding-bottom: var(--safe-bottom);
}

.bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 0;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  background: none;
}

.bar-call {
  color: var(--green);
}

.bar-whatsapp {
  color: #25d366;
}

.bar-reserve {
  color: var(--gold);
  background: rgba(212,168,83,0.08);
}

.bar-btn:hover {
  background: rgba(212,168,83,0.08);
}

/* ==========================================
   TOAST NOTIFICATION
   ========================================== */
.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid rgba(212,168,83,0.2);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.85rem;
  z-index: 2000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  animation: toastIn 0.3s ease, toastOut 0.3s ease 3.7s forwards;
  max-width: calc(100vw - 40px);
  text-align: center;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-12px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes toastOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .size-grid {
    max-width: 360px;
  }

  .time-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .chat-panel {
    width: 360px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 800px;
  }

  section {
    padding: 80px 0;
  }
}

/* ==========================================
   REVIEWS SECTION
   ========================================== */
#reviews-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #12122a 100%);
}

.reviews-carousel {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0 16px;
  scrollbar-width: none;
}

.reviews-carousel::-webkit-scrollbar { display: none; }

.review-card {
  flex-shrink: 0;
  scroll-snap-align: center;
  background: var(--bg-card);
  border: 1px solid rgba(212,168,83,0.12);
  border-radius: var(--radius);
  padding: 24px;
  min-width: 280px;
  max-width: 320px;
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.review-text {
  color: var(--cream);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: italic;
}

.review-author {
  color: var(--cream-dim);
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-source {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(212,168,83,0.1);
  padding: 2px 8px;
  border-radius: 10px;
}

/* ==========================================
   LOYALTY SECTION
   ========================================== */
#loyalty-section {
  background: var(--bg-dark);
}

.loyalty-tiers {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-bottom: 28px;
  scrollbar-width: none;
}

.loyalty-tiers::-webkit-scrollbar { display: none; }

.loyalty-tier-card {
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid rgba(212,168,83,0.12);
  border-radius: var(--radius);
  padding: 20px;
  min-width: 160px;
  text-align: center;
  transition: all 0.2s;
}

.loyalty-tier-card:hover {
  border-color: var(--gold);
}

.tier-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.tier-name {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.tier-visits {
  color: var(--cream-dim);
  font-size: 0.75rem;
  margin-bottom: 8px;
}

.tier-reward {
  color: var(--cream);
  font-size: 0.8rem;
  line-height: 1.4;
}

.tier-discount {
  display: inline-block;
  background: rgba(46,204,113,0.15);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin-top: 6px;
}

.loyalty-check {
  text-align: center;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid rgba(212,168,83,0.12);
  border-radius: var(--radius);
}

.loyalty-check p {
  color: var(--cream-dim);
  margin-bottom: 16px;
}

.loyalty-check-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.loyalty-result-card {
  background: rgba(212,168,83,0.08);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 20px;
  text-align: center;
}

.loyalty-result-tier {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}

.loyalty-result-visits {
  color: var(--cream);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.loyalty-result-next {
  color: var(--cream-dim);
  font-size: 0.85rem;
}

.loyalty-progress {
  height: 6px;
  background: rgba(212,168,83,0.15);
  border-radius: 6px;
  margin: 12px auto;
  max-width: 300px;
  overflow: hidden;
}

.loyalty-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 6px;
  transition: width 0.5s ease;
}

/* ==========================================
   LOCATION SECTION
   ========================================== */
#location-section {
  background: linear-gradient(180deg, #12122a 0%, var(--bg-dark) 100%);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item strong {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.info-item p, .info-item a {
  color: var(--cream);
  font-size: 0.95rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  color: var(--cream);
  font-size: 0.9rem;
}

.hours-grid span:nth-child(even) {
  color: var(--cream-dim);
  text-align: right;
}

.location-map {
  background: var(--bg-card);
  border: 1px solid rgba(212,168,83,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
  padding: 40px;
  color: var(--cream-dim);
}

.map-placeholder p {
  margin-top: 10px;
  font-size: 0.9rem;
}

/* ==========================================
   MODAL (Waitlist)
   ========================================== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
}

.modal-content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 420px;
  width: 100%;
  animation: fadeInUp 0.3s ease;
  text-align: center;
}

.modal-content h3 {
  color: var(--cream);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--cream-dim);
  font-size: 1.3rem;
  cursor: pointer;
}

.waitlist-success {
  color: var(--green);
  font-weight: 600;
}

.waitlist-position {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
}
