@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500&display=swap');

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

:root {
  --teal:      #1a7a72;
  --teal-dark: #0f5148;
  --teal-mid:  #21948a;
  --teal-light:#e8f5f4;
  --gold:      #c9a84c;
  --gold-light:#f0dfa0;
  --text:      #1a2e2c;
  --text-soft: #4a6460;
  --white:     #ffffff;
  --bg:        #f7faf9;
  --radius:    12px;
  --header-h:  104px; /* top bar + page nav */
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ─── Header ─── */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--teal-dark);
  border-bottom: 2px solid var(--gold);
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 24px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.logo-ornament { color: var(--gold); font-size: 0.7rem; }

/* hotel tabs */
.hotel-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  padding: 4px;
  border-radius: 50px;
}

.tab-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.65);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s;
}

.tab-btn.active { background: var(--gold); color: var(--teal-dark); font-weight: 600; }
.tab-btn:hover:not(.active) { color: white; background: rgba(255,255,255,0.12); }

/* ─── Language dropdown ─── */
.lang-dropdown {
  position: relative;
}

.lang-selected {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.lang-selected:hover { background: rgba(255,255,255,0.15); }

.lang-flag { font-size: 1rem; line-height: 1; }
.lang-code { letter-spacing: 0.06em; }
.lang-chevron { font-size: 0.65rem; opacity: 0.7; transition: transform 0.2s; }
.lang-dropdown.open .lang-chevron { transform: rotate(180deg); }

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--teal-dark);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  overflow: hidden;
  z-index: 200;
  min-width: 160px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.lang-dropdown.open .lang-menu { display: block; }

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  padding: 10px 16px;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s, color 0.15s;
}

.lang-option:hover { background: rgba(255,255,255,0.08); color: white; }
.lang-option.active { color: var(--gold); background: rgba(201,168,76,0.08); }

/* in-page nav */
.page-nav {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.page-nav-inner {
  display: flex;
  gap: 0;
  justify-content: center;
}

.page-nav-link {
  display: block;
  padding: 9px 22px;
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.page-nav-link:hover { color: var(--gold-light); background: rgba(255,255,255,0.05); }
.page-nav-link.active-nav { color: var(--gold); }

/* ─── Anchor targets ─── */
.anchor-target { display: block; }

/* ─── Hotel sections ─── */
.hotel-section { display: none; }
.hotel-section.active { display: block; }

/* ─── Hero ─── */
.hero {
  position: relative;
  height: 90vh;
  min-height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,40,36,0.1) 0%,
    rgba(10,40,36,0.5) 55%,
    rgba(10,40,36,0.88) 100%
  );
}

.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(45deg,  rgba(201,168,76,0.04) 0px, rgba(201,168,76,0.04) 1px, transparent 1px, transparent 28px),
    repeating-linear-gradient(-45deg, rgba(201,168,76,0.04) 0px, rgba(201,168,76,0.04) 1px, transparent 1px, transparent 28px);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  max-width: 680px;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 10px;
}

.hero-sub {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  letter-spacing: 0.03em;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 50px;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ─── Section body ─── */
.section-body { padding: 64px 24px; }
.section-body--tight { padding-top: 0; }

/* ─── Section title ─── */
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--teal-dark);
  text-align: center;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.section-title::before,
.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title--light { color: var(--white); }
.section-title--light::before,
.section-title--light::after { background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent); }

/* ─── Info grid ─── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 22px;
  border: 1px solid rgba(26,122,114,0.1);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.info-card:hover { box-shadow: 0 8px 32px rgba(26,122,114,0.12); transform: translateY(-2px); }

.info-icon { font-size: 1.7rem; margin-bottom: 12px; }

.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 8px;
}

.info-card p { font-size: 0.88rem; color: var(--text-soft); line-height: 1.65; }
.info-card strong { color: var(--teal-dark); }

/* ─── Gallery Slider ─── */
.slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.slider-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 10px;
  transition: transform 0.35s ease;
}

.slider-item {
  flex: 0 0 calc((100% - 20px) / 3); /* 3 visible, 2 gaps */
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.slider-item::after {
  content: '⊕';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  background: rgba(10,40,36,0);
  transition: background 0.3s;
  pointer-events: none;
}

.slider-item:hover img { transform: scale(1.04); }
.slider-item:hover::after { background: rgba(10,40,36,0.32); }

.slider-arrow {
  flex-shrink: 0;
  background: var(--teal-dark);
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
  font-size: 1.6rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.15s;
  line-height: 1;
  z-index: 2;
}

.slider-arrow:hover { background: rgba(201,168,76,0.2); transform: scale(1.08); }
.slider-arrow:disabled { opacity: 0.3; cursor: default; transform: none; }

/* ─── Rooms section ─── */
.rooms-section {
  background: var(--teal-dark);
  position: relative;
  overflow-x: clip;
}

.rooms-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg,  rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 32px),
    repeating-linear-gradient(-45deg, rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px, transparent 1px, transparent 32px);
  pointer-events: none;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.rooms-placeholder {
  grid-column: 1/-1;
  text-align: center;
  padding: 48px;
  color: rgba(255,255,255,0.4);
  font-size: 0.95rem;
  border: 1px dashed rgba(201,168,76,0.25);
  border-radius: var(--radius);
}

/* room card (used when rooms are added) */
.room-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.room-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

.room-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  cursor: pointer;
}

.room-card-body { padding: 20px; }

.room-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.room-card-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

.room-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.room-feature {
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(201,168,76,0.12);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.2);
}

/* ─── Contacts ─── */
.contacts-block { max-width: 720px; margin: 0 auto; }

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(26,122,114,0.1);
  font-size: 0.95rem;
}

.contact-detail a { color: var(--teal); text-decoration: none; }
.contact-detail a:hover { text-decoration: underline; }

.contact-phones { display: inline; }
.contact-phones a { color: var(--teal); text-decoration: none; }
.contact-phones a:hover { text-decoration: underline; }

.contact-detail-label {
  font-weight: 600;
  color: var(--teal-dark);
  min-width: 90px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 22px;
  border: 1.5px solid var(--teal);
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}

.contact-item:hover { background: var(--teal); color: white; }
.contact-icon { font-size: 1rem; display: inline-flex; align-items: center; }
.contact-icon svg { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }

.map-embed { margin-top: 8px; border-radius: var(--radius); overflow: hidden; }

/* ─── Footer ─── */
.site-footer {
  background: var(--teal-dark);
  border-top: 1px solid rgba(201,168,76,0.2);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 36px 24px;
  font-size: 0.85rem;
}

.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-ornament { color: var(--gold); margin-bottom: 6px; opacity: 0.7; }
.footer-phone a { color: var(--gold-light); text-decoration: none; }
.footer-phone a:hover { text-decoration: underline; }

/* ─── Lightbox ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5,20,18,0.96);
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}

.lightbox-close { top: 20px; right: 20px; font-size: 1rem; }
.lightbox-prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(201,168,76,0.3); }

/* ─── Room type tabs ─── */
.room-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.room-tab-btn {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.25);
  color: rgba(255,255,255,0.6);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 9px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.room-tab-btn:hover { color: var(--gold-light); border-color: var(--gold); }

.room-tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--teal-dark);
  font-weight: 600;
}

/* ─── Room detail panel ─── */
.room-panel {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}

/* Gallery column */
.room-gallery-col { display: flex; flex-direction: column; gap: 10px; }

.room-main-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.room-main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.room-main-photo-wrap:hover .room-main-photo { transform: scale(1.03); }

.room-photo-expand {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(10,40,36,0.7);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
  font-size: 1.3rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}

.room-photo-expand:hover { background: rgba(201,168,76,0.3); }

.room-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(10,40,36,0.65);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 1.8rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 2;
  line-height: 1;
}

.room-arrow--prev { left: 12px; }
.room-arrow--next { right: 12px; }
.room-arrow:hover { background: rgba(201,168,76,0.35); }

.room-photo-counter {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(10,40,36,0.65);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
}

.room-thumbnails {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.room-thumb {
  width: calc(20% - 7px);
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}

.room-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.room-thumb:hover { transform: scale(1.04); }
.room-thumb.active { border-color: var(--gold); }

/* Info column */
.room-info-col {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.room-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.25;
}

.room-size {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: -10px;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.room-amenity-tag {
  font-size: 0.75rem;
  padding: 4px 11px;
  border-radius: 50px;
  background: rgba(201,168,76,0.1);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(201,168,76,0.2);
  white-space: nowrap;
}

.room-beds-block {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.room-beds-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }


.room-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.room-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.room-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
}

.room-btn--primary { background: var(--gold); color: var(--teal-dark); }
.room-btn--primary:hover { background: var(--gold-light); }

.room-btn--secondary {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75);
}
.room-btn--secondary:hover { border-color: white; color: white; }

/* ─── Responsive ─── */
/* ─── Tablet (≤ 900px) ─── */
@media (max-width: 900px) {
  .room-panel { grid-template-columns: 1fr; }
  .room-gallery-col { order: 0; min-width: 0; width: 100%; }
  .room-info-col    { order: 1; min-width: 0; width: 100%; }
}

/* ─── Mobile (≤ 640px) ─── */
@media (max-width: 640px) {

  /* ── Header: компактная шапка ── */
  .header-inner {
    flex-direction: column;
    gap: 8px;
    padding: 10px 16px;
  }

  .logo { font-size: 0.82rem; }
  .hotel-tabs { justify-content: center; }

  .tab-btn { font-size: 0.82rem; padding: 6px 16px; }
  .lang-selected { font-size: 0.78rem; padding: 5px 10px; }

  /* Паж-нав: горизонтальный скролл если не влезает */
  .page-nav { overflow-x: auto; }
  .page-nav-inner { justify-content: flex-start; min-width: max-content; }
  .page-nav-link  { padding: 9px 16px; font-size: 0.78rem; white-space: nowrap; }

  /* ── Hero ── */
  .hero { height: 75vh; min-height: 420px; background-position: right bottom; }
  .hero-content { padding: 32px 20px; }
  .hero-content h1 { font-size: 2.8rem; }
  .hero-sub { font-size: 0.85rem; }

  /* ── Секции ── */
  .section-body { padding: 40px 16px; }
  .section-title { font-size: 1.5rem; }

  /* ── Карточки инфо ── */
  .info-grid { grid-template-columns: 1fr; gap: 14px; margin-bottom: 40px; }
  .info-card { padding: 20px 18px; }

  /* ── Галерея отеля: на мобиле один слайд за раз ── */
  .slider-wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
  .slider-viewport {
    grid-column: 1; grid-row: 1;
  }
  .slider-arrow {
    display: flex;
    grid-column: 1; grid-row: 1;
    align-self: center;
    z-index: 2;
    position: relative;
    transform: none;
    top: auto;
  }
  .slider-arrow--prev { justify-self: start; margin-left: 8px; }
  .slider-arrow--next { justify-self: end;   margin-right: 8px; }
  .slider-viewport {
    width: 100%;
    overflow: visible;
  }
  .slider-track {
    transform: none !important;
    display: block;
  }
  .slider-item {
    width: 100%;
    flex: none;
  }

  /* ── Табы номеров: горизонтальный скролл ── */
  .room-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
    gap: 8px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .room-tabs::-webkit-scrollbar { display: none; }
  .room-tab-btn { flex-shrink: 0; font-size: 0.8rem; padding: 8px 16px; min-width: 0; }

  /* ── Панель номера ── */
  .room-panel { gap: 20px; }

  /* Галерея номера */
  .room-main-photo-wrap { border-radius: 10px; }
  .room-arrow { width: 36px; height: 36px; font-size: 1.4rem; }
  .room-arrow--prev { left: 8px; }
  .room-arrow--next { right: 8px; }
  .room-photo-counter { font-size: 0.72rem; }

  /* Миниатюры: горизонтальный скролл в одну строку */
  .room-thumbnails {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 6px;
  }
  .room-thumbnails::-webkit-scrollbar { display: none; }
  .room-thumb {
    width: 72px;
    min-width: 72px;
    aspect-ratio: 4/3;
  }

  /* Инфо-карточка номера */
  .room-info-col { padding: 20px 16px; gap: 14px; max-width: 100%; width: 100%; }
  .room-name { font-size: 1.25rem; }
  .room-amenities { gap: 5px; }
  .room-amenity-tag { font-size: 0.7rem; padding: 3px 9px; }
  .room-desc { word-break: break-word; overflow-wrap: break-word; }
  .room-panel { max-width: 100%; width: 100%; }
  .room-gallery-col { max-width: 100%; width: 100%; }
  .rooms-section { overflow-x: clip; }
  .section-body { max-width: 100vw; }
  .room-thumbnails { max-width: 100%; }
  .room-tabs { max-width: 100%; }

  /* Кнопки номера */
  .room-actions { flex-direction: column; gap: 10px; }
  .room-btn { padding: 13px 16px; font-size: 0.88rem; }

  /* ── Контакты ── */
  .contact-detail { flex-direction: column; gap: 2px; padding: 12px 0; }
  .contact-detail-label { min-width: unset; }
  .contact-actions { flex-direction: column; gap: 10px; }
  .contact-item { justify-content: center; }

  /* ── Lightbox ── */
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
  .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; }
}
