/* ========================================
   Ardennes-Réservation Booking System
   Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
  --brand-green: #1a3c34;
  --brand-green-light: #2a5246;
  --orange: #d4a853;
  --orange-gradient: linear-gradient(to bottom, #f5b955 0%, #eba542 50%, #e08830 100%);
  --text-dark: #333;
  --text-medium: #555;
  --text-light: #666;
  --text-muted: #888;
  --border-color: #ddd;
  --bg-light: #f7f7f7;
  --bg-white: #fff;
  --success-green: #5cb85c;
  --info-blue: #4a90d9;
  --modal-blue: #6b7cce;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========================================
   Header
   ======================================== */
.header {
  background: var(--bg-white);
  padding: 16px 24px;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-trees {
  width: 50px;
  height: 40px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-tagline {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.logo-name {
  font-size: 24px;
  font-weight: 600;
  color: var(--brand-green);
  font-family: Georgia, 'Times New Roman', serif;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.reserve-link {
  font-size: 15px;
  color: var(--brand-green);
}

.reserve-link:hover {
  text-decoration: underline;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-dark);
}

/* ========================================
   Progress Bar
   ======================================== */
.progress-bar {
  height: 6px;
  width: 100%;
  background: #e5e5e5;
}

.progress-fill {
  height: 100%;
  border-radius: 0 9999px 9999px 0;
  background: linear-gradient(to right, var(--brand-green-light) 0%, var(--brand-green) 100%);
  transition: width 0.3s ease;
}

/* ========================================
   Cards
   ======================================== */
.card {
  background: var(--bg-white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: visible;
}

.card-small {
  padding: 24px;
}

/* ========================================
   Booking Form (Home Page)
   ======================================== */
.booking-section {
  padding: 24px;
}

.booking-container {
  max-width: 1152px;
  margin: 0 auto;
  overflow: visible;
}

.booking-title {
  font-size: 18px;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
}

.booking-form {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: visible;
}

.input-wrapper {
  position: relative;
}

.input-wrapper.date {
  width: 190px;
  position: relative;
}

.input-wrapper.promo {
  flex: 1;
}

.form-input {
  height: 50px;
  width: 100%;
  border-radius: 9999px;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  padding: 0 44px 0 20px;
  font-size: 14px;
  color: var(--text-muted);
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: #999;
}

.form-input.error {
  border-color: #dc3545;
  animation: shake 0.5s ease-in-out;
}

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

.form-input::placeholder {
  color: #aaa;
}

.input-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #bbb;
  pointer-events: none;
}

.btn-reserve {
  height: 50px;
  padding: 0 56px;
  border-radius: 9999px;
  background: var(--brand-green);
  color: white;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.2s, transform 0.1s;
}

.btn-reserve:hover {
  opacity: 0.9;
}

.btn-reserve:active {
  transform: scale(0.98);
}

/* ========================================
   Content Section (Home Page)
   ======================================== */
.content-section {
  padding: 0 24px 32px;
}

.content-container {
  max-width: 1152px;
  margin: 0 auto;
}

.content-grid {
  display: flex;
  gap: 40px;
}

.content-text {
  width: 400px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.content-text p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.content-text p:first-child {
  font-size: 17px;
  color: var(--text-dark);
}

.content-text p:last-of-type {
  font-size: 15px;
  color: var(--text-medium);
}

.content-buttons {
  margin-top: auto;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-primary {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  background: var(--brand-green);
  color: white;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.2s, transform 0.1s;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-secondary {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 2px solid var(--brand-green);
  background: transparent;
  color: var(--brand-green);
  font-size: 16px;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-secondary:hover {
  background: rgba(26, 60, 52, 0.05);
}

/* Gallery */
.content-gallery {
  flex: 1;
}

.gallery-main {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eee;
}

.gallery-main img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.thumb-btn {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  transition: border-color 0.2s;
}

.thumb-btn.active {
  border-color: var(--brand-green);
}

.thumb-btn:hover {
  border-color: rgba(26, 60, 52, 0.3);
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: #f0f0f0;
  padding: 20px 24px;
}

.footer-container {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pci-badge {
  display: flex;
  align-items: center;
}

.comodo-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--success-green);
  padding: 4px 10px;
  border-radius: 4px;
}

.comodo-badge span {
  font-size: 11px;
  font-weight: bold;
  color: white;
}

.comodo-badge small {
  font-size: 9px;
  color: white;
}

.footer-text {
  font-size: 13px;
  color: #777;
}

.footer-text a {
  color: var(--text-medium);
}

.footer-text a:hover {
  text-decoration: underline;
}

.footer-text .powered {
  font-weight: 600;
  color: var(--text-dark);
}

.footer-text .brand {
  font-weight: 500;
  color: var(--brand-green);
}

/* ========================================
   Aperçu Card
   ======================================== */
.apercu-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.apercu-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
}

.change-dates {
  font-size: 13px;
  color: var(--text-light);
}

.change-dates:hover {
  text-decoration: underline;
}

.apercu-dates {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.date-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.date-icon {
  width: 20px;
  height: 20px;
  color: #999;
}

.date-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.date-value {
  font-size: 14px;
  color: var(--text-light);
}

.apercu-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 20px 0;
}

.conditions-link {
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
}

.conditions-link:hover {
  text-decoration: underline;
}

/* ========================================
   Room Offer Card
   ======================================== */
.room-offer {
  display: flex;
  gap: 32px;
}

.room-image {
  width: 220px;
  height: 180px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}

.room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-details {
  flex: 1;
}

.room-title {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.room-type {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.room-type span {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.room-type svg {
  width: 16px;
  height: 16px;
  color: #999;
}

.room-description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 12px;
}

/* Price Section */
.price-section {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.price-info {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 14px;
  color: var(--text-muted);
}

.price-value {
  font-size: 24px;
  color: #999;
  text-decoration: line-through;
}

.price-bar {
  height: 40px;
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #f0f0f0;
  margin-top: 8px;
}

.price-bar span {
  font-size: 14px;
  color: var(--text-light);
}

.persons-select {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.persons-select label {
  font-size: 14px;
  color: var(--text-light);
}

.persons-select select {
  padding: 6px 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: white;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
}

.btn-continue {
  height: 56px;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  background: var(--brand-green);
  color: white;
  font-size: 18px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.btn-continue:hover {
  opacity: 0.9;
}

/* ========================================
   Checkout Form
   ======================================== */
.checkout-layout {
  display: flex;
  gap: 32px;
}

.checkout-form {
  flex: 1;
}

.checkout-sidebar {
  width: 380px;
  flex-shrink: 0;
}

.section-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  flex: 1;
}

.form-group.small {
  width: 140px;
  flex: none;
}

.form-group.medium {
  width: 200px;
  flex: none;
}

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

.form-control {
  height: 48px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  padding: 0 16px;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}

.form-control:focus {
  border-color: #999;
}

.form-control::placeholder {
  color: #bbb;
}

.form-control.error {
  border-color: #dc3545;
}

.form-control.max-width {
  max-width: 400px;
}

.info-box {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid #cce5ff;
  background: #f0f7ff;
}

.info-box svg {
  width: 16px;
  height: 16px;
  color: var(--info-blue);
}

.info-box span {
  font-size: 13px;
  color: var(--info-blue);
}

.form-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 32px 0;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.checkbox-label input {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}

.checkbox-label span {
  font-size: 14px;
  color: #444;
}

.checkbox-label a {
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: underline;
}

.checkbox-label.error span {
  color: #dc3545;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-back {
  font-size: 15px;
  color: var(--text-dark);
  text-decoration: underline;
}

.btn-next {
  height: 52px;
  padding: 0 48px;
  border-radius: 9999px;
  background: var(--brand-green);
  color: white;
  font-size: 16px;
  font-weight: 500;
  transition: opacity 0.2s;
}

.btn-next:hover {
  opacity: 0.9;
}

/* Summary Sidebar */
.summary-details {
  margin-top: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.summary-label {
  font-size: 14px;
  color: var(--text-medium);
}

.summary-value {
  font-size: 14px;
  font-style: italic;
  color: var(--text-muted);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-total .label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.summary-total .value {
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  color: var(--text-dark);
}

/* ========================================
   Extras Page
   ======================================== */
.extras-title {
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.extras-subtitle {
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 24px;
}

.extra-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.extra-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.extra-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.extra-content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.extra-image {
  width: 130px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}

.extra-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.extra-description {
  flex: 1;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

.extra-price {
  display: flex;
  align-items: center;
  gap: 24px;
}

.extra-price .price {
  display: flex;
  align-items: center;
  gap: 4px;
}

.extra-price .price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
}

.extra-price .price svg {
  width: 16px;
  height: 16px;
  color: #999;
}

.btn-add {
  padding: 12px 32px;
  border-radius: 9999px;
  background: var(--orange);
  color: white;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-add.added {
  background: var(--brand-green);
}

/* Insurance Section */
.insurance-section {
  margin-top: 32px;
  border-top: 1px solid #eee;
  padding-top: 24px;
}

.insurance-content {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.insurance-image {
  width: 130px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #e8f4fc;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.insurance-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

.insurance-checkbox label {
  font-size: 13px;
  color: var(--text-light);
}

.insurance-checkbox input {
  width: 20px;
  height: 20px;
}

/* Comments Section */
.comments-section {
  margin-top: 32px;
  border-top: 1px solid #eee;
  padding-top: 24px;
}

.comments-title {
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.comments-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.comments-textarea {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  padding: 16px;
  font-size: 14px;
  color: var(--text-dark);
  outline: none;
  resize: vertical;
}

.comments-textarea::placeholder {
  color: #bbb;
}

/* ========================================
   Payment Page
   ======================================== */
.payment-container {
  max-width: 896px;
  margin: 0 auto;
}

.green-banner {
  background: var(--success-green);
  padding: 16px;
  border-radius: 8px;
  margin-top: 16px;
}

.green-banner p {
  font-size: 14px;
  line-height: 1.6;
  color: white;
}

.payment-title {
  font-size: 26px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.payment-method-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.payment-option {
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  background: #f9f9f9;
  margin-bottom: 24px;
  overflow: hidden;
}

.payment-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #e5e5e5;
}

.payment-option-name {
  display: flex;
  align-items: center;
  gap: 12px;
}

.payment-option-name span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

.payment-badge {
  height: 24px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  background: #005498;
}

.payment-badge span {
  font-size: 10px;
  font-weight: bold;
  color: white;
}

.payment-option-radio {
  width: 20px;
  height: 20px;
}

.payment-option-body {
  padding: 16px;
  display: none;
}

.payment-option-body.active {
  display: block;
}

.payment-notice {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}

.btn-pay {
  padding: 12px 32px;
  border-radius: 9999px;
  background: var(--orange);
  color: white;
  font-size: 15px;
  font-weight: 500;
  float: right;
}

.card-icons {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.card-icon {
  width: 48px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: white;
}

.card-icon.visa span {
  font-size: 10px;
  font-weight: bold;
  color: #1a1f71;
}

.card-icon.mastercard {
  position: relative;
}

.card-icon.mastercard::before,
.card-icon.mastercard::after {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
}

.card-icon.mastercard::before {
  background: #eb001b;
  left: 10px;
  opacity: 0.8;
}

.card-icon.mastercard::after {
  background: #f79e1b;
  right: 10px;
  opacity: 0.8;
}

/* ========================================
   Modal
   ======================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  width: 420px;
  background: white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 4px solid #e8a849;
}

.modal-icon span {
  font-size: 32px;
  font-weight: bold;
  color: #e8a849;
}

.modal-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.modal-message {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.modal-btn {
  padding: 10px 32px;
  border-radius: 8px;
  background: var(--modal-blue);
  color: white;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s;
}

.modal-btn:hover {
  background: #5a6bbf;
}

/* ========================================
   Calendar Dropdown
   ======================================== */
.date-input {
  cursor: pointer;
}

.date-icon-click {
  cursor: pointer;
  pointer-events: auto !important;
}

.calendar-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 300px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 16px;
  z-index: 1000;
  display: none !important;
  visibility: hidden;
  opacity: 0;
  margin-top: 8px;
}

.calendar-dropdown.active {
  display: block !important;
  visibility: visible;
  opacity: 1;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.calendar-nav {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f5f5f5;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: bold;
  transition: background 0.2s;
}

.calendar-nav:hover {
  background: #e5e5e5;
}

.calendar-month-year {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

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

.calendar-weekdays span {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 4px;
}

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

.calendar-day {
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  color: var(--text-dark);
  transition: all 0.2s;
  border: none;
  background: none;
}

.calendar-day:hover:not(.disabled):not(.selected) {
  background: #f0f0f0;
}

.calendar-day.disabled {
  color: #ccc;
  cursor: not-allowed;
}

.calendar-day.selected {
  background: var(--brand-green);
  color: white;
}

.calendar-day.today {
  border: 2px solid var(--brand-green);
}

.calendar-day.empty {
  pointer-events: none;
}

/* Language Switcher Active State */
.lang-btn {
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.lang-btn.active {
  background: var(--brand-green);
  color: white;
}

.lang-btn:hover:not(.active) {
  background: #f0f0f0;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .booking-form {
    flex-wrap: wrap;
  }
  
  .input-wrapper.date,
  .input-wrapper.promo {
    width: 100%;
    flex: none;
  }
  
  .btn-reserve {
    width: 100%;
  }
  
  .content-grid {
    flex-direction: column;
  }
  
  .content-text {
    width: 100%;
  }
  
.checkout-layout {
  flex-direction: column;
  }
  
  .checkout-sidebar {
  width: 100%;
  order: -1;
  }
  
  .room-offer {
    flex-direction: column;
  }
  
  .room-image {
    width: 100%;
    height: 200px;
  }
  
  .price-section {
    flex-direction: column;
    gap: 24px;
  }
  
  .price-bar {
    width: 100%;
  }
  
  .btn-continue {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 12px 16px;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg-white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  }
  
  .header-container {
    gap: 8px;
  }
  
  .logo {
    gap: 8px;
  }
  
  .logo-trees {
    width: 32px;
    height: 26px;
  }
  
  .logo-name {
    font-size: 15px;
    line-height: 1.2;
  }
  
  .logo-tagline {
    font-size: 9px;
    letter-spacing: 0.3px;
  }
  
  .header-right {
    gap: 4px;
  }
  
  .reserve-link {
    display: none;
  }
  
  .language-switcher {
    gap: 2px;
  }
  
  .lang-btn {
    font-size: 0;
    padding: 6px;
    border-radius: 8px;
    background: #f3f4f6;
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
  }
  
  .lang-btn span {
    font-size: 18px;
  }
  
  .lang-btn.active {
    background: var(--brand-green);
    box-shadow: 0 1px 3px rgba(26, 60, 52, 0.3);
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .form-group.small,
  .form-group.medium {
    width: 100%;
  }
  
  .extra-content {
    flex-direction: column;
  }
  
  .extra-price {
    width: 100%;
    justify-content: space-between;
  }
  
  .insurance-content {
    flex-direction: column;
    gap: 16px;
  }
  
  .insurance-image {
    width: 100%;
    height: 80px;
  }
  
  .insurance-content .extra-description {
    font-size: 14px;
    line-height: 1.5;
  }
  
  .insurance-content .extra-price {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
  }
  
  .insurance-checkbox {
    flex-direction: row-reverse;
    gap: 8px;
  }
}

@media (max-width: 380px) {
  .logo-name {
    font-size: 13px;
  }
  
  .logo-trees {
    width: 26px;
    height: 22px;
  }
  
  .lang-btn {
    min-width: 32px;
    min-height: 32px;
    padding: 4px;
  }
  
  .lang-btn span {
    font-size: 16px;
  }
}
