.lang-switcher {
  display: flex;
  gap: 0.25rem;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.2s;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lang-btn.active {
  background: white;
  color: #667eea;
  border-color: white;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.time-slot {
  padding: 0.6rem 0.4rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 0.9rem;
  font-weight: 500;
  background: white;
}

.time-slot:hover:not(.unavailable) {
  border-color: #667eea;
  background: #f0f4ff;
}

.time-slot.selected {
  border-color: #667eea;
  background: #667eea;
  color: white;
}

.time-slot.unavailable {
  background: #f5f5f5;
  color: #ccc;
  cursor: not-allowed;
  border-color: #eee;
}

.time-slot .slot-avail {
  font-size: 0.7rem;
  color: #888;
  display: block;
  margin-top: 0.15rem;
}

.time-slot.selected .slot-avail {
  color: rgba(255, 255, 255, 0.8);
}

.time-slot.unavailable .slot-avail {
  color: #ccc;
}

.guest-stepper {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.stepper-btn {
  width: 40px;
  height: 40px;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  background: white;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: #333;
}

.stepper-btn:hover {
  border-color: #667eea;
  color: #667eea;
}

#guestCount {
  font-size: 1.5rem;
  font-weight: 600;
  min-width: 2rem;
  text-align: center;
}

.info-message {
  background: #fff3cd;
  color: #856404;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.success-card {
  text-align: center;
  padding: 2rem 1rem;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: #10b981;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.success-card h2 {
  margin-bottom: 0.5rem;
  color: #222;
}

.success-card p {
  color: #666;
  margin-bottom: 1rem;
}

.booking-summary {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
  text-align: left;
  margin-top: 1rem;
}

.booking-summary p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.calendar-picker {
  margin-top: 1rem;
  padding: 1.5rem;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  background: white;
}
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.calendar-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  font-size: 1.25rem;
  color: #222;
  transition: opacity 0.2s;
}
.calendar-nav-btn:hover {
  opacity: 0.7;
}
.calendar-month-year {
  font-weight: 600;
  font-size: 1rem;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.calendar-day-header {
  text-align: center;
  padding: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #717171;
}
.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  font-size: 0.875rem;
  transition: all 0.2s;
  padding: 2px;
  gap: 1px;
}
.cal-day-num {
  line-height: 1;
}
.cal-day-min {
  font-size: 0.55rem;
  color: #999;
  line-height: 1;
  white-space: nowrap;
}
.calendar-day.selected .cal-day-min {
  color: rgba(255,255,255,0.7);
}
.calendar-day.disabled .cal-day-min {
  color: #e0e0e0;
}
.calendar-day.closed .cal-day-min {
  color: #ccc;
  font-style: italic;
}
.calendar-day:hover:not(.disabled) {
  background: #f7f7f7;
  border: 1px solid #222;
}
.calendar-day.disabled {
  color: #ddd;
  cursor: not-allowed;
}
.calendar-day.selected {
  background: #222;
  color: white;
}
.calendar-day.empty {
  cursor: default;
}
.calendar-day.today {
  border: 1px solid #667eea;
}

@media (max-width: 480px) {
  .time-slots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
