/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #FAFAF7;
  --bg-warm: #F5F3EE;
  --card-bg: #FFFFFF;
  --text-primary: #1A1A1A;
  --text-secondary: #6B6B6B;
  --text-muted: #999;
  --accent: #4E5655;
  --accent-light: #6B7372;
  --accent-dark: #3A4140;
  --accent-bg: #ECEEED;
  --border: #E5E2DC;
  --border-light: #F0EDE8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.1);
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --max-width: 1200px;
  --header-height: 64px;
}
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
img { display: block; max-width: 100%; }
input { font-family: inherit; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-height);
  background: #FFFFFF;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 3vw, 48px);
  transition: box-shadow 0.3s;
  border-bottom: 1px solid var(--border);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-left {
  display: flex; align-items: center; gap: 10px;
  min-width: 200px;
}
.nav-call-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted);
}
.nav-call-label svg { width: 14px; height: 14px; }
.nav-phone {
  font-size: 13px; font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}
.nav-phone:hover { color: var(--accent); }

.nav-center {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.nav-logo-icon {
  width: 28px; height: 28px;
  border: 1.5px solid var(--accent);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 16px; height: 16px; color: var(--accent); }

.nav-right {
  display: flex; align-items: center; gap: 20px;
  min-width: 200px;
  justify-content: flex-end;
}
.nav-lang {
  font-size: 12px; font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-muted);
}
.nav-lang a {
  color: var(--text-muted);
  transition: color 0.2s;
  padding: 0 2px;
}
.nav-lang a:hover,
.nav-lang a.active { color: var(--text-primary); }
.nav-lang .sep { margin: 0 3px; }
.nav-book-link {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #fff;
  padding: 8px 18px;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}
.nav-book-link:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.nav-book-link svg { width: 14px; height: 14px; }

/* ===== HERO ===== */
.hero {
  margin-top: var(--header-height);
  padding: 40px clamp(20px, 4vw, 48px) 0;
  max-width: var(--max-width);
  margin-left: auto; margin-right: auto;
}
.hero-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 16px;
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  letter-spacing: 3px;
  line-height: 1.15;
  color: var(--text-primary);
}
.hero-features {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-top: 14px;
}
.hero-feature {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--text-secondary);
  letter-spacing: 0.3px;
}
.hero-feature svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.hero-price-tag {
  text-align: right;
  flex-shrink: 0;
}
.hero-price-tag .amount {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--text-primary);
}
.hero-price-tag .per {
  font-size: 13px; color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ===== GALLERY (peek carousel) ===== */
.gallery-wrapper {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  margin-bottom: 48px;
  padding: 4px 0;
  touch-action: pan-y;
}
.gallery-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.gallery-slide {
  flex: 0 0 55vw;
  height: 440px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.5s ease;
  transform: scale(0.94);
  opacity: 0.5;
}
.gallery-slide.active {
  transform: scale(1);
  opacity: 1;
}
.gallery-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gallery-slide .placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 20px; color: rgba(255,255,255,0.55);
  letter-spacing: 5px;
  text-transform: uppercase;
}
.gallery-slide:nth-child(1) .placeholder { background: linear-gradient(145deg, #8B9A7B 0%, #5C6C4E 60%, #3D4D2F 100%); }
.gallery-slide:nth-child(2) .placeholder { background: linear-gradient(145deg, #A89880 0%, #7A6A52 60%, #5C4C34 100%); }
.gallery-slide:nth-child(3) .placeholder { background: linear-gradient(145deg, #7B8B9A 0%, #4D5D6C 60%, #2F3D4C 100%); }
.gallery-slide:nth-child(4) .placeholder { background: linear-gradient(145deg, #9A8B7B 0%, #6C5D4D 60%, #4E3F2F 100%); }
.gallery-slide:nth-child(5) .placeholder { background: linear-gradient(145deg, #8B7B9A 0%, #5D4D6C 60%, #3F2F4E 100%); }

.gallery-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all 0.2s;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.gallery-btn:hover { background: #fff; box-shadow: var(--shadow-lg); transform: translateY(-50%) scale(1.08); }
.gallery-btn:active { transform: translateY(-50%) scale(0.95); }
.gallery-btn svg { width: 20px; height: 20px; color: var(--text-primary); }
.gallery-btn.prev { left: 4%; }
.gallery-btn.next { right: 4%; }
.gallery-dots {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 20px;
}
.gallery-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.gallery-dot:hover { background: var(--accent-light); }
.gallery-dot.active { background: var(--accent); transform: scale(1.35); }

@media (max-width: 960px) {
  .gallery-slide { flex: 0 0 70vw; height: 380px; }
  .gallery-track { gap: 14px; }
}
@media (max-width: 640px) {
  .gallery-slide { flex: 0 0 85vw; height: 280px; }
  .gallery-track { gap: 10px; }
  .gallery-btn { width: 36px; height: 36px; opacity: 0.7; }
  .gallery-btn svg { width: 14px; height: 14px; }
  .gallery-btn.prev { left: 2%; }
  .gallery-btn.next { right: 2%; }
  .gallery-dots { gap: 5px; margin-top: 14px; }
  .gallery-dot { width: 5px; height: 5px; }
  .gallery-dot.active { transform: scale(1.4); }
}

/* ===== MAIN LAYOUT ===== */
.main-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px) 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* ===== LEFT COLUMN (ABOUT + AMENITIES) ===== */
.content-left { min-width: 0; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.about-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 600px;
}
.about-text p + p { margin-top: 16px; }
.divider {
  height: 1px;
  background: var(--border);
  margin: 40px 0;
}

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.amenity-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-secondary);
}
.amenity-item:nth-child(odd) { padding-right: 20px; }
.amenity-item:nth-child(even) { padding-left: 20px; }
.amenity-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-bg);
  border-radius: var(--radius-sm);
}
.amenity-icon svg { width: 18px; height: 18px; color: var(--accent); }

/* ===== BOOKING CARD (RIGHT) ===== */
.booking-card-wrapper {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}
.booking-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.booking-price-row {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}
.booking-price-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent);
}
.booking-price-amount {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--text-primary);
}
.booking-price-per {
  font-size: 14px;
  color: var(--text-muted);
}

/* Date inputs */
.date-inputs {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 12px;
}
.date-input-group {
  padding: 12px 14px;
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
}
.date-input-group:hover { background: var(--bg); }
.date-input-group:first-child { border-right: 1px solid var(--border); }
.date-input-group.active { background: var(--accent-bg); }
.date-input-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 4px;
}
.date-input-value {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}
.date-input-value.placeholder { color: var(--text-muted); font-weight: 400; }

/* Guest selector */
.guest-selector {
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 20px;
}
.guest-label-area {}
.guest-label-top {
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-secondary);
}
.guest-label-value {
  font-size: 14px; font-weight: 500;
  color: var(--text-primary);
}
.guest-controls {
  display: flex; align-items: center; gap: 14px;
}
.guest-btn {
  width: 32px; height: 32px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--text-secondary);
  transition: all 0.15s;
}
.guest-btn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-bg);
}
.guest-btn:disabled {
  opacity: 0.3; cursor: not-allowed;
}
.guest-count {
  font-size: 16px; font-weight: 600;
  min-width: 24px; text-align: center;
}

/* Nights summary */
.nights-summary {
  text-align: center;
  font-size: 13px;
  color: var(--accent-dark);
  font-weight: 500;
  margin-bottom: 16px;
  padding: 8px;
  background: var(--accent-bg);
  border-radius: var(--radius-sm);
  display: none;
}
.nights-summary.visible { display: block; }

/* Price breakdown */
.price-breakdown {
  margin-bottom: 20px;
}
.price-row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
}
.price-row.total {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 14px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
}
.price-row .underline {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  cursor: help;
}

/* CTA */
.book-btn {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.book-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 100%);
}
.book-btn:hover {
  background: var(--accent-dark);
  box-shadow: 0 4px 20px rgba(78,86,85,0.35);
  transform: translateY(-1px);
}
.book-btn:active { transform: translateY(0); }
.book-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* ===== BOOKING STEPS (form + confirmation) ===== */
.booking-step {
  display: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.booking-step.active {
  display: block;
}
.booking-step.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Step 1: default booking content (price, dates, guests, etc.) */
.booking-step-1 { display: block; opacity: 1; transform: none; }

/* ===== DESKTOP BOOKING MODE ===== */
/* Left column: original content vs form/confirmation */
.content-left-original {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.content-left-original.hiding {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}
.content-left-original.hidden { display: none; }

.content-left-booking {
  display: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.content-left-booking.active { display: block; }
.content-left-booking.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Form card on left (desktop) */
.bf-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.bf-back-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 24px;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}
.bf-back-row:hover { color: var(--text-primary); }
.bf-back-row svg { width: 16px; height: 16px; }

.bf-header {
  margin-bottom: 28px;
}
.bf-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.bf-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.bf-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bf-field {}
.bf-field.full-width { grid-column: 1 / -1; }
.bf-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.bf-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--text-primary);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.bf-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-bg);
}
.bf-input::placeholder { color: var(--text-muted); }
.bf-input.error {
  border-color: #D4644A;
  box-shadow: 0 0 0 3px rgba(212,100,74,0.1);
}
.bf-error-msg {
  font-size: 11px;
  color: #D4644A;
  margin-top: 4px;
  display: none;
}
.bf-error-msg.visible { display: block; }
textarea.bf-input {
  resize: vertical;
  min-height: 90px;
  font-family: inherit;
}

.bf-submit-row {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.bf-submit-btn {
  flex: 1;
  padding: 16px 24px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}
.bf-submit-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 100%);
}
.bf-submit-btn:hover {
  background: var(--accent-dark);
  box-shadow: 0 4px 20px rgba(78,86,85,0.35);
  transform: translateY(-1px);
}
.bf-submit-btn:active { transform: translateY(0); }
.bf-secure-note {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
}
.bf-secure-note svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

/* Summary card on right (replaces booking card step 1) */
.bs-card-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}
.bs-card-icon {
  width: 36px; height: 36px;
  background: var(--accent-bg);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bs-card-icon svg { width: 18px; height: 18px; color: var(--accent); }
.bs-card-header-text {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
}

.bs-villa-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.bs-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border-light);
}
.bs-row-icon {
  width: 32px; height: 32px;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.bs-row-icon svg { width: 16px; height: 16px; color: var(--accent); }
.bs-row-content { flex: 1; min-width: 0; }
.bs-row-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.bs-row-value {
  font-size: 14px; font-weight: 500;
  color: var(--text-primary);
}

.bs-price-section {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1.5px solid var(--border);
}
.bs-price-row {
  display: flex; justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-secondary);
}
.bs-price-row.total {
  border-top: 1px solid var(--border);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
}
.bs-price-row.total .bs-price-val {
  font-family: var(--font-serif);
  font-size: 22px;
}

/* Confirmation on left */
.bc-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.bc-checkmark {
  width: 80px; height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--accent-bg);
  display: flex; align-items: center; justify-content: center;
  animation: bc-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes bc-pop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.bc-checkmark svg {
  width: 40px; height: 40px;
  color: var(--accent);
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: bc-draw 0.6s 0.3s ease forwards;
}
@keyframes bc-draw { to { stroke-dashoffset: 0; } }

.bc-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.bc-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.bc-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  text-align: left;
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 28px;
}
.bc-detail-cell {
  padding: 14px 16px;
}
.bc-detail-cell-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.bc-detail-cell-value {
  font-size: 14px; font-weight: 500;
  color: var(--text-primary);
  word-break: break-word;
}

.bc-new-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--accent);
  cursor: pointer;
  transition: all 0.2s;
}
.bc-new-btn:hover { background: var(--accent-bg); }
.bc-new-btn svg { width: 16px; height: 16px; }

@media (max-width: 640px) {
  .bf-fields { grid-template-columns: 1fr; }
  .bf-submit-row { flex-direction: column; }
  .bf-secure-note { justify-content: center; }
  .bc-details-grid { grid-template-columns: 1fr; }
}

/* ===== CALENDAR MODAL ===== */
.calendar-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.calendar-overlay.open { opacity: 1; pointer-events: all; }

.calendar-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 28px;
  z-index: 501;
  min-width: 340px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.calendar-modal.open {
  opacity: 1; pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.calendar-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.calendar-header .month-year {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
}
.calendar-nav-btns { display: flex; gap: 4px; }
.cal-nav-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: all 0.15s;
}
.cal-nav-btn:hover { background: var(--bg); color: var(--text-primary); }
.cal-nav-btn svg { width: 16px; height: 16px; }

.calendar-range-summary {
  text-align: center;
  padding: 10px;
  margin-bottom: 16px;
  background: var(--accent-bg);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--accent-dark);
  font-weight: 500;
  display: none;
}
.calendar-range-summary.visible { display: block; }

.calendar-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 0; margin-bottom: 4px;
}
.calendar-weekday {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 0;
}
.calendar-days {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  border-radius: 50%;
  transition: all 0.15s;
  cursor: pointer;
  position: relative;
  color: var(--text-primary);
}
.cal-day:hover:not(.disabled):not(.empty) {
  background: var(--accent-bg);
}
.cal-day.disabled {
  color: var(--text-muted);
  opacity: 0.4;
  cursor: not-allowed;
}
.cal-day.empty { cursor: default; }
.cal-day.today {
  font-weight: 600;
}
.cal-day.today::after {
  content: '';
  position: absolute; bottom: 4px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.cal-day.selected-start,
.cal-day.selected-end {
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 600;
}
.cal-day.in-range {
  background: var(--accent-bg);
  border-radius: 0;
}
.cal-day.in-range:first-child,
.cal-day.selected-start { border-radius: 50% 0 0 50%; }
.cal-day.in-range:last-child,
.cal-day.selected-end { border-radius: 0 50% 50% 0; }
.cal-day.selected-start { border-radius: 50%; }
.cal-day.selected-end { border-radius: 50%; }

.calendar-actions {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.cal-clear-btn {
  font-size: 13px; font-weight: 500;
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cal-clear-btn:hover { color: var(--text-primary); }
.cal-done-btn {
  padding: 10px 24px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.cal-done-btn:hover { background: var(--accent-dark); }

/* ===== MOBILE BOTTOM BAR ===== */
.mobile-bottom-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  z-index: 90;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  justify-content: space-between;
  align-items: center;
}
.mobile-bottom-bar .mobile-price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
}
.mobile-bottom-bar .mobile-price span {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}
.mobile-book-trigger {
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: background 0.2s;
}
.mobile-book-trigger:hover { background: var(--accent-dark); }

/* Mobile Slide-up Panel */
.mobile-panel-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 300;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-panel-overlay.open { opacity: 1; }
.mobile-panel {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--card-bg);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 301;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 8px 24px 32px;
}
.mobile-panel.open { transform: translateY(0); }
.mobile-panel-handle {
  width: 36px; height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 8px auto 20px;
}
.mobile-panel-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg);
}
.mobile-panel-close svg { width: 16px; height: 16px; }

/* Mobile panel steps */
.mp-step {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mp-step.hiding {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}
.mp-step.hidden { display: none; }

.mp-form,
.mp-confirm {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mp-form.active,
.mp-confirm.active { display: block; }
.mp-form.visible,
.mp-confirm.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile form styling */
.mp-form-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.mp-form-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.mp-summary-bar {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  padding: 12px 14px;
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
}
.mp-summary-bar svg { width: 13px; height: 13px; color: var(--accent); vertical-align: -2px; margin-right: 4px; }
.mp-summary-bar .mp-sep { color: var(--border); }
.mp-field { margin-bottom: 14px; }
.mp-field:last-of-type { margin-bottom: 20px; }

/* Mobile confirmation */
.mp-confirm-inner { text-align: center; padding: 8px 0; }
.mp-confirm-check {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--accent-bg);
  display: flex; align-items: center; justify-content: center;
  animation: bc-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.mp-confirm-check svg {
  width: 32px; height: 32px; color: var(--accent);
  stroke-dasharray: 60; stroke-dashoffset: 60;
  animation: bc-draw 0.6s 0.3s ease forwards;
}
.mp-confirm-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.mp-confirm-sub {
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 20px; line-height: 1.6;
}
.mp-confirm-grid {
  text-align: left;
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  padding: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
}
.mp-confirm-cell { padding: 10px 12px; }
.mp-confirm-cell-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 2px;
}
.mp-confirm-cell-value {
  font-size: 13px; font-weight: 500;
  color: var(--text-primary); word-break: break-word;
}

/* ===== AVAILABILITY SECTION ===== */
.availability-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px) 0;
}
.availability-calendar {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 520px;
}
.avail-cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.avail-cal-header .avail-month-year {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 500;
}
.avail-cal-nav { display: flex; gap: 4px; }
.avail-cal-nav button {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: all 0.15s;
}
.avail-cal-nav button:hover { background: var(--bg); color: var(--text-primary); }
.avail-cal-nav button svg { width: 16px; height: 16px; }
.avail-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}
.avail-weekday {
  text-align: center; font-size: 11px; font-weight: 600;
  color: var(--text-muted); letter-spacing: 1px;
  text-transform: uppercase; padding: 6px 0;
}
.avail-days {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.avail-day {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; border-radius: 50%;
  color: var(--text-primary);
}
.avail-day.empty { cursor: default; }
.avail-day.past { color: var(--text-muted); opacity: 0.35; text-decoration: line-through; }
.avail-day.available { color: var(--accent-dark); font-weight: 500; }
.avail-day.booked {
  color: var(--text-muted); text-decoration: line-through;
  opacity: 0.45;
}
.avail-day.today {
  font-weight: 700;
  background: var(--accent);
  color: #fff;
}
.avail-legend {
  display: flex; gap: 20px; margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}
.avail-legend-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-secondary);
}
.avail-legend-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.avail-legend-dot.available-dot { background: var(--accent); }
.avail-legend-dot.booked-dot { background: var(--border); }

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.reviews-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap; gap: 12px;
}
.reviews-header-left {}
.reviews-rating-row {
  display: flex; align-items: center; gap: 10px;
  margin-top: 6px;
}
.reviews-stars { display: flex; gap: 2px; }
.reviews-stars svg { width: 18px; height: 18px; fill: #F5A623; color: #F5A623; }
.reviews-rating-text {
  font-size: 15px; font-weight: 600; color: var(--text-primary);
}
.reviews-count { font-size: 14px; color: var(--text-secondary); }
.reviews-nav-btns { display: flex; gap: 8px; }
.reviews-nav-btn {
  width: 40px; height: 40px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: all 0.15s;
}
.reviews-nav-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-bg); }
.reviews-nav-btn svg { width: 16px; height: 16px; }

.reviews-track-wrapper {
  overflow: hidden;
  margin: 0 -4px;
  padding: 4px;
  touch-action: pan-y;
}
.reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.review-card {
  flex: 0 0 calc(33.333% - 14px);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  min-height: 220px;
  display: flex; flex-direction: column;
  transition: box-shadow 0.3s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-top {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 10px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--text-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
.review-meta {}
.review-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.review-info { font-size: 12px; color: var(--text-muted); }
.review-stars-date {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.review-mini-stars { display: flex; gap: 1px; }
.review-mini-stars svg { width: 14px; height: 14px; fill: #F5A623; color: #F5A623; }
.review-mini-stars svg.empty { fill: none; stroke: #ccc; }
.review-date { font-size: 12px; color: var(--text-muted); }
.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 960px) {
  .review-card { flex: 0 0 calc(50% - 10px); }
}
@media (max-width: 640px) {
  .review-card { flex: 0 0 calc(85vw - 20px); }
  .reviews-track { gap: 14px; }
}

/* ===== FULL-WIDTH DIVIDER ===== */
.section-divider-full {
  max-width: var(--max-width);
  margin: 48px auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.section-divider-full .divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ===== MAP SECTION ===== */
.map-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.map-address {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-address svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.map-container {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-warm);
  z-index: 1;
  isolation: isolate;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.mvb-map-pin { background: none !important; border: none !important; }

.map-pin-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -100%);
  z-index: 2;
  pointer-events: none;
}
.map-pin {
  width: 48px; height: 48px;
  background: var(--text-primary);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.map-pin svg {
  width: 22px; height: 22px;
  color: #fff;
  transform: rotate(45deg);
}
.map-open-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-dark);
  transition: color 0.2s;
}
.map-open-link:hover { color: var(--text-primary); }
.map-open-link svg { width: 14px; height: 14px; }

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

/* ===== CONTACT SECTION ===== */
.contact-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.contact-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 640px;
}
.contact-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(78,86,85,0.25);
}
.contact-details { flex: 1; min-width: 0; }
.contact-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.contact-role {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}
.contact-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.contact-row:hover { color: var(--text-primary); }
.contact-row-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: var(--accent-bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row-icon svg { width: 16px; height: 16px; color: var(--accent); }
.contact-row a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-row a:hover { color: var(--accent-dark); }
.contact-response {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  font-size: 13px;
  color: var(--text-muted);
}
.contact-response svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

@media (max-width: 640px) {
  .contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 24px;
  }
  .contact-row { justify-content: center; }
  .contact-response { justify-content: center; }
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px clamp(20px, 4vw, 48px);
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.footer span { color: var(--accent); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  opacity: 0;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===== MOBILE HAMBURGER MENU ===== */
.nav-hamburger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 0;
  transition: opacity 0.2s;
  cursor: pointer;
  flex-shrink: 0;
  background: transparent;
  border: none;
  padding: 0;
}
.nav-hamburger:hover { opacity: 0.6; }
.nav-hamburger svg { width: 24px; height: 24px; color: var(--text-primary); }

/* Slide-out Info Panel */
.info-panel-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.info-panel-overlay.open { opacity: 1; pointer-events: all; }

.info-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: #fff;
  z-index: 401;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s 0.4s;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
  overflow-y: auto;
  pointer-events: none;
  visibility: hidden;
}
.info-panel.open {
  transform: translateX(0);
  pointer-events: all;
  visibility: visible;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s 0s;
}

.info-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
}
.info-panel-header-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--text-primary);
}
.info-panel-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  transition: all 0.2s;
  cursor: pointer;
}
.info-panel-close:hover { background: var(--border); }
.info-panel-close svg { width: 18px; height: 18px; color: var(--text-secondary); }

.info-panel-body {
  flex: 1;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-panel-host {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 12px;
}
.info-panel-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 4px 16px rgba(78,86,85,0.3);
}
.info-panel-host-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
}
.info-panel-host-role {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.info-panel-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.info-panel-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.2s;
}
.info-panel-item:first-child { border-top: 1px solid var(--border-light); }
.info-panel-item:hover { color: var(--text-primary); }
.info-panel-item-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  background: var(--accent-bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-panel-item-icon svg { width: 18px; height: 18px; color: var(--accent); }
.info-panel-item-content {
  display: flex; flex-direction: column; gap: 2px;
  min-width: 0;
}
.info-panel-item-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.info-panel-item-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  word-break: break-word;
}

.info-panel-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-light);
  flex-shrink: 0;
}
.info-panel-book-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  transition: all 0.25s;
  cursor: pointer;
}
.info-panel-book-btn:hover {
  background: var(--accent-dark);
  box-shadow: 0 4px 20px rgba(78,86,85,0.35);
}
.info-panel-book-btn svg { width: 16px; height: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .main-content {
    grid-template-columns: 1fr;
    padding-bottom: 120px;
  }
  .booking-card-wrapper { display: none; }
  .mobile-bottom-bar { display: flex; }
  .mobile-panel-overlay { display: block; }
  .nav-left { display: none; }
  .nav-book-link { display: none; }
  .nav-center { position: static; transform: none; order: -1; }
  .nav-right { min-width: auto; gap: 12px; }
  .nav-lang { display: flex; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 640px) {
  .hero-top { flex-direction: column; gap: 8px; }
  .hero-price-tag { text-align: left; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .amenity-item:nth-child(odd) { padding-right: 10px; }
  .amenity-item:nth-child(even) { padding-left: 10px; }
  .amenity-item { gap: 8px; font-size: 12px; padding: 10px 0; }
  .amenity-icon { width: 30px; height: 30px; }
  .amenity-icon svg { width: 15px; height: 15px; }
  .calendar-modal {
    min-width: auto;
    width: calc(100% - 32px);
    padding: 20px;
  }
  .nav-book-link { display: none; }
}
