* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #222;
}

.hidden {
  display: none;
}

.booking-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.booking-card {
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  padding: 32px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.booking-language-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 14px;
}

.language-select {
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  color: #111;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
}

.language-select:focus {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.restaurant-info {
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c0392b;
}

h1 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.2;
}

.subtitle {
  margin: 0 0 12px;
  color: #666;
  line-height: 1.5;
}

.restaurant-detail {
  margin: 6px 0 0;
  color: #333;
  line-height: 1.5;
  font-size: 14px;
}

.booking-note {
  margin: 14px 0 0;
  padding: 12px;
  border-radius: 8px;
  background: #fff4e6;
  color: #6b3d00;
  font-size: 14px;
  line-height: 1.5;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

label {
  font-weight: bold;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  font-family: Arial, sans-serif;
}

textarea {
  resize: vertical;
}

button {
  margin-top: 8px;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.message {
  min-height: 22px;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.message.success {
  color: #1e8449;
}

.message.error {
  color: #c0392b;
}