@import url('fonts.css');

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
:root {
  --font-brand: 'Seibi AI';
  --green:   #2d6a4f;
  --green2:  #40916c;
  --gold:    #b8860b;
  --bg:      #f8f6f2;
  --text:    #1a1a1a;
  --muted:   #6b7280;
  --radius:  12px;
  --shadow:  0 4px 24px rgba(0,0,0,.10);
}
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', system-ui, sans-serif; background: var(--bg); color: var(--text); }
h1, h2, h3, h4, .nav-logo, .section-title, .hero-title, .room-name, .modal-title { font-family: var(--font-brand), Georgia, serif; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; }

/* ── Nav ──────────────────────────────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); border-bottom: 1px solid #e5e5e5; }
.nav-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; height: 60px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-size: 1.5rem; font-weight: 700; color: var(--green); text-decoration: none; letter-spacing: -.5px; display: flex; align-items: center; gap: 8px; line-height: 1; }
.nav-logo-icon { width: 28px; height: 28px; flex-shrink: 0; }
.nav-links { display: flex; align-items: center; }
.nav-links a { margin-left: 24px; text-decoration: none; color: var(--muted); font-size: .88rem; transition: color .2s; }
.nav-links a:hover { color: var(--green); }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero { position: relative; height: 500px; background: linear-gradient(150deg, #1b4332 0%, #2d6a4f 50%, #40916c 100%); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Ccircle cx='40' cy='40' r='30' fill='none' stroke='rgba(255,255,255,.03)' stroke-width='1'/%3E%3C/svg%3E") repeat; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.15); z-index: 0; }
.hero-content { position: relative; text-align: center; color: #fff; padding: 0 24px; z-index: 2; }

/* ── Feuilles animées ─────────────────────────────────────────────────────── */
.leaves-layer { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.ginkgo-leaf {
  position: absolute;
  top: -90px;
  will-change: transform, opacity;
  backface-visibility: hidden;
  filter: sepia(1) saturate(8) hue-rotate(-10deg) brightness(2.6);
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.hero-eyebrow { font-size: .78rem; letter-spacing: 3px; text-transform: uppercase; opacity: .75; margin-bottom: 14px; }
.hero-stars { font-size: 2rem; letter-spacing: 6px; color: #f4c542; margin: 10px 0 16px; line-height: 1; }
.hero-title { font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 800; letter-spacing: -1px; line-height: 1.05; }
.hero-sub { margin-top: 14px; font-size: 1.1rem; opacity: .88; font-style: italic; }
.hero-badges { display: flex; gap: 10px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.hero-badge { font-size: .72rem; border: 1px solid rgba(255,255,255,.4); border-radius: 20px; padding: 5px 14px; color: rgba(255,255,255,.9); letter-spacing: .5px; }

/* ── Search Bar ───────────────────────────────────────────────────────────── */
.search-bar-wrap { position: relative; z-index: 50; display: flex; justify-content: center; margin-top: -36px; padding: 0 24px; }
.search-bar { background: #fff; border-radius: 60px; box-shadow: 0 8px 40px rgba(0,0,0,.16); display: flex; align-items: center; padding: 10px 10px 10px 24px; min-width: min(700px, 100%); }
.sb-field { display: flex; align-items: center; gap: 10px; padding: 6px 16px; cursor: pointer; flex: 1; border-radius: 50px; transition: background .15s; }
.sb-field:hover { background: #f3faf6; }
.sb-field-active { background: #eaf7f0 !important; }
.sb-icon { font-size: 1.2rem; flex-shrink: 0; }
.sb-label { font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.sb-value { font-size: .93rem; font-weight: 600; color: var(--text); white-space: nowrap; }
.sb-divider { width: 1px; height: 32px; background: #e5e5e5; flex-shrink: 0; }
.sb-guests-ctrl { display: flex; align-items: center; gap: 10px; }
.guests-btn { width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid #ccc; background: none; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color .2s, color .2s; }
.guests-btn:hover { border-color: var(--green); color: var(--green); }
.sb-search-btn { margin-left: 8px; background: var(--green); color: #fff; border: none; border-radius: 50px; padding: 14px 28px; font-size: .95rem; font-weight: 700; cursor: pointer; transition: background .2s, transform .1s; white-space: nowrap; flex-shrink: 0; }
.sb-search-btn:hover { background: var(--green2); transform: translateY(-1px); }
.sb-search-btn:active { transform: none; }

/* ── Date Picker ──────────────────────────────────────────────────────────── */
.date-picker-dropdown { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%); background: #fff; border-radius: 20px; box-shadow: 0 12px 48px rgba(0,0,0,.18); padding: 24px; z-index: 200; }
.dp-months { display: flex; gap: 32px; }
.dp-month { min-width: 256px; }
.dp-month-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dp-month-header button { background: none; border: 1.5px solid #ddd; border-radius: 50%; width: 30px; height: 30px; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: border-color .2s, color .2s; }
.dp-month-header button:hover { border-color: var(--green); color: var(--green); }
.dp-month-title { font-weight: 700; font-size: .92rem; text-transform: capitalize; }
.dp-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); margin-bottom: 4px; }
.dp-weekday { text-align: center; font-size: .68rem; color: var(--muted); text-transform: uppercase; padding: 4px 0; font-weight: 600; }
.dp-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 1px; }
.dp-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: .84rem; cursor: pointer; user-select: none; transition: background .12s, color .12s; }
.dp-day:hover:not(.dp-empty):not(.dp-past) { background: #e8f5ee; }
.dp-day.dp-empty, .dp-day.dp-past { cursor: default; color: #d1d5db; }
.dp-day.dp-start { background: var(--green) !important; color: #fff !important; border-radius: 50% !important; }
.dp-day.dp-end   { background: var(--green) !important; color: #fff !important; border-radius: 50% !important; }
.dp-day.dp-range { background: #d1fae5; border-radius: 0; }
.dp-day.dp-start.dp-range { border-radius: 50% 0 0 50%; }
.dp-day.dp-end.dp-range   { border-radius: 0 50% 50% 0; }
.dp-footer { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #f0f0f0; padding-top: 12px; }
#dp-selection-label { font-size: .85rem; color: var(--muted); }
.dp-clear { background: none; border: 1px solid #ccc; border-radius: 20px; padding: 6px 14px; font-size: .8rem; cursor: pointer; }
.dp-clear:hover { border-color: var(--green); color: var(--green); }

/* ── Results Section ──────────────────────────────────────────────────────── */
.results-section { padding: 52px 0 16px; }
.results-header { margin-bottom: 28px; }
.results-header h2 { font-size: 1.6rem; font-weight: 800; }
.results-header p { color: var(--muted); margin-top: 4px; }

/* ── Room Cards ───────────────────────────────────────────────────────────── */
.rooms-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.rooms-grid .room-card { flex: 0 1 340px; min-width: 280px; }
.room-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.room-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.14); }
.room-card-img { height: 200px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; position: relative; background: linear-gradient(135deg, #2d6a4f, #40916c); color: #fff; }
.avail-badge { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,.45); color: #fff; font-size: .72rem; font-weight: 600; padding: 3px 9px; border-radius: 20px; backdrop-filter: blur(4px); }
.room-card-img.type-duplex       { background: linear-gradient(135deg, #374151, #6b7280); }
.room-card-img.type-superieure   { background: linear-gradient(135deg, #2d6a4f, #52b788); }
.room-card-img.type-prestige     { background: linear-gradient(135deg, #92400e, #d97706); }
.room-card-img.type-junior_suite { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.room-card-img.type-suite        { background: linear-gradient(135deg, #5b21b6, #8b5cf6); }
.room-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.room-card-type { font-size: .68rem; text-transform: uppercase; letter-spacing: 1px; color: var(--green); font-weight: 700; margin-bottom: 5px; }
.room-card-name { font-size: 1.12rem; font-weight: 700; margin-bottom: 8px; }
.room-card-desc { font-size: .86rem; color: var(--muted); line-height: 1.55; flex: 1; }
.room-card-amenities { display: flex; flex-wrap: wrap; gap: 5px; margin: 12px 0; }
.amenity-tag { font-size: .68rem; background: #f0faf4; color: var(--green); border-radius: 20px; padding: 3px 9px; }
.amenity-extra { display: contents; }
.amenity-more-btn { font-size: .68rem; background: none; border: 1.5px solid var(--green); color: var(--green); border-radius: 20px; padding: 2px 9px; cursor: pointer; white-space: nowrap; transition: background .15s, color .15s; }
.amenity-more-btn:hover { background: var(--green); color: #fff; }
.room-card-footer { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 14px; padding-top: 14px; border-top: 1px solid #f0f0f0; gap: 8px; }
.room-price { font-size: 1.35rem; font-weight: 800; color: var(--green); }
.room-price span { font-size: .72rem; font-weight: 400; color: var(--muted); }
.room-meta { font-size: .78rem; color: var(--muted); margin-top: 2px; }
.btn-book { background: var(--green); color: #fff; border: none; border-radius: 8px; padding: 10px 18px; font-size: .88rem; font-weight: 700; cursor: pointer; transition: background .2s; white-space: nowrap; }
.btn-book:hover { background: var(--green2); }
.btn-book.unavailable { background: #f3f4f6; color: #9ca3af; cursor: pointer; }
.btn-book.unavailable:hover { background: #e8f5ee; color: var(--green); }

/* ── Room Card Carousel ───────────────────────────────────────────────────── */
.room-card-carousel { background: #111; overflow: hidden; }
.carousel-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .55s ease; }
.carousel-img.active { opacity: 1; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.48); color: #fff; border: none; border-radius: 50%;
  width: 32px; height: 32px; font-size: 1.3rem; line-height: 1;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s, background .2s; z-index: 3; padding: 0; flex-shrink: 0;
}
.room-card-carousel:hover .carousel-btn { opacity: 1; }
.carousel-btn:hover { background: rgba(0,0,0,.72); }
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }
.carousel-dots {
  position: absolute; bottom: 9px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 5px; z-index: 3;
}
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.5); cursor: pointer;
  transition: background .2s, transform .2s;
}
.carousel-dot.active { background: #fff; transform: scale(1.45); }

/* ── Rooms Showcase ───────────────────────────────────────────────────────── */
.rooms-showcase { padding: 80px 0; }
.section-title { font-size: 2rem; font-weight: 800; text-align: center; margin-bottom: 8px; }
.section-sub { text-align: center; color: var(--muted); margin-bottom: 44px; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-eyebrow { font-size: .72rem; text-transform: uppercase; letter-spacing: 3px; color: var(--green); font-weight: 700; margin-bottom: 8px; }

/* ── Spa Section ──────────────────────────────────────────────────────────── */
.spa-section { background: #fff; padding: 80px 0; }
.spa-inner { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center; }
.spa-text h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 14px; }
.spa-text > p { color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.spa-services { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.spa-service { display: flex; gap: 14px; align-items: flex-start; }
.spa-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.spa-service strong { display: block; font-size: .95rem; margin-bottom: 3px; }
.spa-service p { font-size: .84rem; color: var(--muted); line-height: 1.5; }
.spa-pricing { display: flex; gap: 24px; margin-bottom: 16px; flex-wrap: wrap; }
.spa-price-item { display: flex; align-items: baseline; gap: 6px; }
.spa-price-val { font-size: 1.6rem; font-weight: 800; color: var(--green); }
.spa-price-label { font-size: .8rem; color: var(--muted); }
.spa-note { font-size: .82rem; color: var(--muted); line-height: 1.6; border-top: 1px solid #f0f0f0; padding-top: 14px; }
.spa-carousel { height: 460px; border-radius: var(--radius); box-shadow: var(--shadow); }
.spa-icon-img { width: 2.2rem; height: 2.2rem; object-fit: cover; border-radius: 8px; flex-shrink: 0; margin-top: 2px; }

/* ── Breakfast Section ────────────────────────────────────────────────────── */
.breakfast-section { padding: 80px 0; }
.breakfast-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-bottom: 32px; }
.breakfast-card { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); text-align: center; }
.bf-icon { font-size: 2rem; margin-bottom: 12px; }
.breakfast-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.breakfast-card p { font-size: .85rem; color: var(--muted); line-height: 1.55; }
.breakfast-info { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; background: #fff; border-radius: var(--radius); padding: 20px 28px; box-shadow: var(--shadow); }
.bf-info-item { font-size: .9rem; }
.bf-info-item strong { color: var(--green); font-size: 1.1rem; }
.bf-info-sep { color: #d1d5db; font-size: 1.2rem; }

/* ── About Section ────────────────────────────────────────────────────────── */
.about-section { background: linear-gradient(135deg, #f8f6f2 60%, #f0faf4 100%); padding: 80px 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 14px; }
.about-text p { color: var(--muted); line-height: 1.7; margin-bottom: 14px; }
.amenity-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-top: 8px; }
.amenity-list li { color: var(--muted); font-size: .9rem; }
.about-imgs { position: relative; height: 420px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-img-sub { position: absolute; bottom: 0; right: 0; width: 72%; height: 185px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); border: 4px solid #fff; }

/* ── Reviews Section ──────────────────────────────────────────────────────── */
.reviews-section { padding: 80px 0; background: var(--bg); }
.reviews-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 20px;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  scroll-snap-align: start;
  flex: 0 0 320px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-stars { color: #f4c542; font-size: 1.1rem; letter-spacing: 2px; }
.review-quote {
  font-size: .93rem;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}
.review-quote::before { content: '\201C'; }
.review-quote::after  { content: '\201D'; }
.review-author {
  font-size: .78rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.review-date { font-size: .72rem; color: var(--muted); }

/* ── Contact Section ──────────────────────────────────────────────────────── */
.contact-section { background: #fff; padding: 80px 0; }
.contact-inner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.contact-inner h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; color: var(--green); }
.contact-inner p { color: var(--muted); margin-bottom: 8px; line-height: 1.65; font-size: .9rem; }
.contact-inner a { color: var(--green); text-decoration: none; }
.contact-inner a:hover { text-decoration: underline; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer { background: #111; color: #6b7280; text-align: center; padding: 28px 24px; font-size: .82rem; line-height: 1.7; }
.footer a { color: #9ca3af; text-decoration: none; }

/* ── Modal ────────────────────────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 500; display: flex; align-items: center; justify-content: center; padding: 16px; backdrop-filter: blur(4px); }
.modal { background: #fff; border-radius: 20px; padding: 36px; max-width: 560px; width: 100%; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 16px; right: 16px; background: #f3f4f6; border: none; border-radius: 50%; width: 32px; height: 32px; cursor: pointer; font-size: 1rem; line-height: 1; }
.modal h2 { font-size: 1.35rem; font-weight: 800; margin-bottom: 8px; }
.modal-summary { background: #f0faf4; border-radius: 10px; padding: 12px 16px; margin-bottom: 20px; font-size: .88rem; color: var(--green); font-weight: 600; }
.booking-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: .75rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.form-group input, .form-group textarea { border: 1.5px solid #e5e7eb; border-radius: 8px; padding: 10px 13px; font-size: .93rem; outline: none; transition: border-color .2s; font-family: inherit; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--green); }
.modal-price-line { background: #f8f6f2; border-radius: 10px; padding: 13px 16px; font-size: 1rem; font-weight: 700; text-align: right; color: var(--green); }
.btn-book-confirm { background: var(--green); color: #fff; border: none; border-radius: 10px; padding: 14px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background .2s; width: 100%; }
.btn-book-confirm:hover { background: var(--green2); }
.modal-confirm { text-align: center; }
.confirm-icon { font-size: 3rem; margin-bottom: 16px; }
#confirm-details { color: var(--muted); font-size: .93rem; line-height: 1.75; margin: 16px 0; }

/* ── Language Selector ────────────────────────────────────────────────────── */
.lang-select {
  -webkit-appearance: none;
  appearance: none;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236b7280'/%3E%3C/svg%3E") no-repeat right 10px center;
  border: 1.5px solid #d1d5db;
  border-radius: 20px;
  padding: 6px 28px 6px 12px;
  font-size: .82rem;
  cursor: pointer;
  color: var(--muted);
  font-family: inherit;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.lang-select:hover { border-color: var(--green); color: var(--green); }
.lang-select:focus { outline: none; border-color: var(--green); }
.footer-lang { margin-top: 12px; }
.lang-select-footer {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%239ca3af'/%3E%3C/svg%3E");
  border-color: rgba(255,255,255,.18);
  color: #9ca3af;
}
.lang-select-footer:hover { border-color: var(--green2); color: #fff; }

/* ── Booking Modal 2-step ─────────────────────────────────────────────────── */
.modal-booking { max-width: 620px; }
.modal-back {
  background: none; border: none; color: var(--green); font-size: .88rem; font-weight: 600;
  cursor: pointer; padding: 0 0 14px; display: flex; align-items: center; gap: 5px;
}
.modal-back:hover { text-decoration: underline; }

/* Room picker list */
#room-picker-list { max-height: 400px; overflow-y: auto; padding-right: 4px; margin-top: 14px; }
.room-pick-card {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  border: 1.5px solid #e5e7eb; border-radius: 12px; margin-bottom: 10px;
  transition: border-color .2s, background .15s;
}
.room-pick-card:hover { border-color: var(--green2); background: #f9fafb; }
.room-pick-best { background: #f0faf4; border-color: var(--green2); }
.room-pick-img {
  width: 80px; height: 64px; object-fit: cover; border-radius: 8px; flex-shrink: 0;
}
.room-pick-img-ph {
  width: 80px; height: 64px; background: linear-gradient(135deg, #2d6a4f, #40916c);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0; color: #fff;
}
.room-pick-star {
  width: 48px; height: 48px; background: #fff; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: 1.4rem; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.room-pick-info { flex: 1; min-width: 0; }
.room-pick-label { font-size: .68rem; text-transform: uppercase; letter-spacing: .8px; color: var(--green); font-weight: 700; margin-bottom: 2px; }
.room-pick-name { font-size: .95rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.room-pick-meta { font-size: .78rem; color: var(--muted); margin-top: 2px; }
.room-pick-price { font-size: 1rem; font-weight: 800; color: var(--green); margin-top: 3px; }
.room-pick-price span { font-size: .72rem; font-weight: 400; color: var(--muted); }
.room-pick-sep {
  text-align: center; font-size: .78rem; color: var(--muted); margin: 4px 0 12px;
  position: relative;
}
.room-pick-sep::before, .room-pick-sep::after {
  content: ''; position: absolute; top: 50%; height: 1px; background: #e5e7eb; width: 34%;
}
.room-pick-sep::before { left: 0; }
.room-pick-sep::after  { right: 0; }
.room-pick-actions { display: flex; flex-direction: column; gap: 6px; flex-shrink: 0; }
.btn-preview {
  display: inline-flex; align-items: center; justify-content: center;
  background: none; border: 1.5px solid var(--green); color: var(--green);
  border-radius: 8px; padding: 8px 14px; font-size: .82rem; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: background .2s, color .2s; white-space: nowrap;
}
.btn-preview:hover { background: var(--green); color: #fff; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .spa-inner { grid-template-columns: 1fr; }
  .spa-carousel { height: 260px; }
  .contact-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .search-bar { flex-direction: column; border-radius: 20px; padding: 16px; gap: 8px; }
  .sb-divider { display: none; }
  .sb-field { border-radius: 12px; background: #f8f6f2; width: 100%; }
  .sb-search-btn { width: 100%; border-radius: 12px; margin-left: 0; }
  .date-picker-dropdown { width: calc(100vw - 32px); }
  .dp-months { flex-direction: column; }
  .about-inner { grid-template-columns: 1fr; }
  .about-imgs { height: 260px; }
  .about-img-main { height: 170px; }
  .about-img-sub { width: 68%; height: 120px; }
  .contact-inner { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-inner .lang-select { margin-left: auto; }
}
