/* ==========================================================================
   CHATYSNOV – Resido / ChatySnov koncept (resido.space/chaty-snov)
   Serif: Playfair Display · Sans: Montserrat
   Vendor CSS a fonty: partials/sc-head-performance.php (nie @import – render blocking)
   ========================================================================== */


#frontendeditor {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 120px;
  background: transparent;
  display: block;
  z-index: 99999999999999;
}

#frontendeditor .switch {
  position: absolute;
  display: inline-block;
  width: 60px;
  height: 34px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#frontendeditor .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

#frontendeditor .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

#frontendeditor .slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--d);
  -webkit-transition: .4s;
  transition: .4s;
}

#frontendeditor input:checked+.slider {
  background-color: #75c11d;
}

#frontendeditor input:focus+.slider {
  box-shadow: 0 0 1px #75c11d;
}

#frontendeditor input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

#frontendeditor .slider.round {
  border-radius: 34px;
}

#frontendeditor .slider.round:before {
  border-radius: 50%;
}

p:empty {
  display: none;
}

#modaleditor {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(2, 13, 25, 0.8);
  display: none;
}

#modal-close, #modal-save {
  display: inline-block;
  background: #ff0045;
  color: var(--d);
  cursor: pointer;
  padding: 5px 20px;
  margin: 20px 15px;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: 600;
  width: 50px;
  border-radius: 30px;
  transition: 400ms;
  outline: none
}

#modal-close:hover {
  background: #bf0739;
}

#modal-save {
  background: #76c11e;
  margin-left: 0;
  margin-right: 10px;
}

#modal-save:hover {
  background: #528a10;
}

#modal-in textarea {
  margin: 0px;
  width: 800px;
  min-height: 280px;
  resize: vertical;
  border: none;
  border-radius: 3px;
  padding: 10px;
  font-size: 15px;
  color: var(--d);
}

#modal-in .cke_chrome {
  border: none;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 20px
}

#modal-buttons {
  position: fixed;
  bottom: 14px;
  right: 100px;
  text-align: center;
  display: none;
}


:root {
  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  /* Paleta Resido / premium horský koncept */
  --c-navy-header: #1a2433;
  --c-dark: #1a2b4b;
  --c-gold: #c5a059;
  --c-gold-hover: #b8934a;
  --c-text: #1e2a3a;
  --c-muted: #5c6678;
  --c-light: #8b95a5;
  --c-border: #e4dfd4;
  --c-bg: #ffffff;
  --c-bg-page: #f5f2eb;
  --c-bg-soft: #efeae1;
  --c-bg-card: #f9f8f3;
  --c-accent: #c5a059;
  --c-white: #fff;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --shadow-sm: 0 1px 3px rgba(26, 36, 51, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 36, 51, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 36, 51, 0.12);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --max-w: 1200px;
  --max-w-wide: 1400px;

  /* Typografia & rytmus (8px grid) */
  --lh-tight: 1.12;
  --lh-ui: 1.2;
  --lh-body: 1.55;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 80px;
  --space-section-y: var(--space-7);
  --space-section-y-md: var(--space-5);
  --space-section-y-sm: 40px;
}

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

body.sc {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  color: var(--c-text);
  background: var(--c-bg-page);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
  overscroll-behavior-x: none;
}

html:has(body.sc) {
  overflow-x: hidden;
  max-width: 100%;
  overscroll-behavior-x: none;
}

body.sc img { max-width: 100%; height: auto; display: block; }
body.sc a {text-decoration: none; transition: var(--transition); }
body.sc ul, body.sc ol { list-style: none; margin: 0; padding: 0; }
body.sc h1, body.sc h2, body.sc h3, body.sc h4, body.sc h5, body.sc h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: var(--lh-tight);
  color: var(--c-dark);
  letter-spacing: -0.01em;
  margin: 0;
}
body.sc p { margin: 0; }
body.sc main { padding: 0; }
body.sc header, body.sc footer, body.sc nav { padding: 0; margin: 0; }
body.sc select, body.sc input, body.sc button { font-family: var(--font); }

/* Text na fotkách (starý layout slide) */
body.sc .sc-hero2:not(.sc-hero2--fullscreen) .sc-hero2__slide-content h1 {
  color: var(--c-white);
}
body.sc .sc-hero2:not(.sc-hero2--fullscreen) .sc-hero2__slide-content p {
  color: rgba(255, 255, 255, 0.75);
}
body.sc .sc-bento__body h3 {
  color: var(--c-white);
}
body.sc .sc-deal-card__info h3 {
  color: var(--c-white);
}
body.sc .sc-footer__heading {
  color: var(--c-gold);
}

/* --- Container --- */
.sc-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.sc-container--wide {
  max-width: var(--max-w-wide);
}

/* --- Section spacing --- */
.sc-section {
  padding: var(--space-section-y) 0;
  background: var(--c-white);
}
.sc-section--sm {
  padding: var(--space-5) 0;
}

/* --- Section header --- */
.sc-section__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.sc-section__header h2 {
  font-size: clamp(28px, 4vw, 42px);
  max-width: 550px;
  line-height: var(--lh-tight);
}
.sc-section__header p {
  font-size: 16px;
  color: var(--c-muted);
  max-width: 380px;
  line-height: var(--lh-body);
}

/* --- Tag / Badge --- */
.sc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(197, 160, 89, 0.14);
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: 100px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-navy-header);
}
.sc-tag--dark {
  background: var(--c-dark);
  border-color: var(--c-dark);
  color: var(--c-gold);
}
.sc-tag--white {
  background: rgba(255,255,255,.9);
  border-color: transparent;
  backdrop-filter: blur(8px);
}

/* --- Buttons --- */
.sc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: 12px 28px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  line-height: var(--lh-tight);
  border-radius: 100px;
  border: 1px solid var(--c-border);
  background: var(--c-bg);
  color: var(--c-dark);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.sc-btn:hover {
  background: var(--c-dark);
  color: var(--c-white);
  border-color: var(--c-dark);
}
.sc-btn--dark {
  background: var(--c-dark);
  color: var(--c-white);
  border-color: var(--c-dark);
}
.sc-btn--dark:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-dark);
}
.sc-btn--gold {
  background: var(--c-gold);
  color: var(--c-dark);
  border-color: var(--c-gold);
}
.sc-btn--gold:hover {
  background: #c9a94f;
  border-color: #c9a94f;
}
.sc-btn--lg {
  padding: 16px 36px;
  font-size: 15px;
  margin-top: 18px;
}
.sc-btn--arrow::after {
  content: '\2192';
  font-size: 16px;
  transition: transform var(--transition);
}
.sc-btn--arrow:hover::after {
  transform: translateX(4px);
}

.sc-btn--magnetic {
  will-change: transform;
}

/* ==========================================================================
   HEADER (Resido – plná šírka, tmavá navy, zlatá CTA)
   ========================================================================== */
.sc-header {
  --sc-header-h: 72px;
  position: relative;
  top: 0;
  z-index: 200;
  width: 100%;
  padding: 0;
  margin: 0;
  background: var(--c-navy-header);
  border: none;
  height: auto;
  display: block;
}
.sc-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding-top: 8px;
  padding-bottom: 8px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.4s ease, -webkit-backdrop-filter 0.4s ease;
}
.sc-header.sc-header--scrolled .sc-header__inner {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.sc-header.sc-header--scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.sc-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  min-width: 140px;
}
.sc-header__logo img {
  height: 44px;
  width: auto;
  max-width: 200px;
  min-height: 32px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}
body.sc .sc-header__logo img {
  max-width: 200px;
  height: 44px;
}
.sc-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.sc-header__nav a {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
}

.sc-header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--c-gold);
  transition: width .25s ease;
}
.sc-header__nav a:hover {
  color: var(--c-gold);
}
.sc-header__nav a:hover::after {
  width: 100%;
}
.sc-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.sc-header__lang {
  display: flex;
  gap: 4px;
}
.sc-header__lang a {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: .06em;
}
.sc-header__lang a:hover {
  color: var(--c-gold);
}

.sc-header__actions .sc-btn {
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 10px;
  background: var(--c-gold);
  color: var(--c-navy-header);
  border: none;
}
.sc-header__actions .sc-btn:hover {
  background: var(--c-gold-hover);
  color: var(--c-navy-header);
}

/* Mobile nav toggle */
.sc-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.sc-header__toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1px;
  transition: var(--transition);
}

/* Mobile: prepínač jazyka namiesto desktop lang + CTA */
.sc-header__quick-select,
.sc-header__lang-select {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-white);
  background: rgba(255, 255, 255, 0.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat right 10px center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 8px 28px 8px 12px;
  width: 72px;
  min-width: 72px;
  max-width: 72px;
  cursor: pointer;
  line-height: 1.2;
  text-align: center;
  text-align-last: center;
}
.sc-header__quick-select:focus {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
}

/* Homepage hero – mobilný trigger + fullscreen panel */
.sc-booking-mobile-trigger {
  display: none;
  width: 100%;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  background: rgba(26, 36, 51, 0.92);
  color: var(--c-white);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  transition: var(--transition);
}
.sc-booking-mobile-trigger:hover,
.sc-booking-mobile-trigger:focus-visible {
  border-color: rgba(197, 160, 89, 0.55);
  outline: none;
}
.sc-booking-mobile-trigger__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.18);
  color: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-booking-mobile-trigger__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sc-booking-mobile-trigger__title {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  line-height: var(--lh-tight);
}
.sc-booking-mobile-trigger__summary {
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sc-booking-panel__backdrop {
  display: none;
}
.sc-booking-panel__head {
  display: none;
}
.sc-booking-panel__sheet {
  width: 100%;
}
body.sc.sc-booking-panel-open {
  overflow: hidden;
}
@media (min-width: 769px) {
  .sc-booking-mobile-trigger {
    display: none !important;
  }
  .sc-booking-panel {
    position: static;
    visibility: visible;
    pointer-events: auto;
  }
  .sc-booking-panel__sheet {
    position: static;
    transform: none !important;
    background: transparent;
    overflow: visible;
  }
  .sc-booking-panel__body {
    padding: 0;
    overflow: visible;
  }
}

/* ==========================================================================
   HERO v2 – fullscreen slider (homepage, vzor Resido)
   ========================================================================== */
.sc-hero2.sc-hero2--fullscreen {
  position: relative;
  padding: 0;
  margin: calc(-1 * var(--sc-header-h)) 0 0;
  background: var(--c-navy-header);
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}
.sc-hero2.sc-hero2--fullscreen .sc-hero2__inner {
  position: relative;
  display: block;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
}
.sc-hero2.sc-hero2--fullscreen .sc-hero2__slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  z-index: 0;
}
.sc-hero2.sc-hero2--fullscreen .sc-hero2__slider .swiper-container {
  width: 100%;
  height: 100% !important;
  min-height: 100%;
}
.sc-hero2.sc-hero2--fullscreen .sc-hero2__slider .swiper-wrapper,
.sc-hero2.sc-hero2--fullscreen .sc-hero2__slider .swiper-slide {
  height: 100% !important;
}
.sc-hero2__slider .swiper-container,
.sc-hero2__slider .swiper-wrapper,
.sc-hero2__slider .swiper-slide {
  height: 100%;
}
.sc-hero2__slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.sc-hero2.sc-hero2--fullscreen .sc-hero2__slide {
  min-height: 100%;
  height: 100%;
  justify-content: center;
}
.sc-hero2__slide-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -10%;
  height: 120%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  overflow: hidden;
}
.sc-hero2__slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.sc-hero2.sc-hero2--fullscreen .sc-hero2__slide-bg {
  top: 0;
  height: 100%;
}
.sc-hero2__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 60%);
  border-radius: inherit;
  z-index: 1;
}
.sc-hero2.sc-hero2--fullscreen .sc-hero2__slide::after {
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(26, 36, 51, 0.5) 0%, rgba(26, 36, 51, 0.35) 40%, rgba(15, 22, 32, 0.55) 100%);
}
.sc-hero2__slide-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  color: var(--c-white);
}
.sc-hero2__slide-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Paginácia hneď pod bookovacou lištou (v strede hero) */
.sc-hero2.sc-hero2--fullscreen .sc-hero2__text .sc-hero2__pagination {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  z-index: 5;
  width: auto !important;
  text-align: center;
  pointer-events: auto;
  flex-shrink: 0;
  margin: 20px auto 0;
  padding-bottom: 0;
}
.sc-hero2__slider .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 40px;
  text-align: left;
  z-index: 4;
  width: auto;
}
.sc-hero2__pagination .swiper-pagination-bullet,
.sc-hero2__slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,.4);
  opacity: 1;
  border-radius: 4px;
  transition: var(--transition);
  margin: 3px;
}
.sc-hero2__pagination .swiper-pagination-bullet-active,
.sc-hero2__slider .swiper-pagination-bullet-active {
  background: var(--c-gold);
  width: 24px;
}

/* Vrstva: text + bookovacia lišta + swiper – vertikálne v strede hero */
.sc-hero2.sc-hero2--fullscreen .sc-hero2__layer {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--sc-header-h) + 24px) 0 max(32px, env(safe-area-inset-bottom, 0));
  box-sizing: border-box;
  pointer-events: none;
}
.sc-hero2.sc-hero2--fullscreen .sc-hero2__layer-inner {
  pointer-events: none;
  width: 100%;
}
.sc-hero2.sc-hero2--fullscreen .sc-hero2__text {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 24px;
}
.sc-hero2.sc-hero2--fullscreen .sc-hero2__booking {
  pointer-events: auto;
  width: 100%;
  max-width: var(--max-w-wide);
  margin-top: 28px;
  align-self: stretch;
}
.sc-hero2.sc-hero2--fullscreen .sc-hero2__booking .sc-booking-bar__inner {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}
.sc-hero2.sc-hero2--fullscreen .sc-hero2__eyebrow {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--c-gold);
  margin-bottom: 16px;
}
.sc-hero2.sc-hero2--fullscreen .sc-hero2__title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5.5vw, 56px);
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}
.sc-hero2.sc-hero2--fullscreen .sc-hero2__sub {
  font-family: var(--font);
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}
.sc-btn.sc-btn--hero-cta {
  background: var(--c-gold);
  color: var(--c-navy-header);
  border: none;
  border-radius: 10px;
  font-weight: 600;
}
.sc-btn.sc-btn--hero-cta:hover {
  background: var(--c-gold-hover);
  color: var(--c-navy-header);
  border: none;
}

/* Hero text (fallback ak by niekde ostal starý dvojstĺpcový layout) */
.sc-hero2__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0 60px 60px;
}
.sc-hero2__eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-gold);
  margin-bottom: 20px;
}
.sc-hero2__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--c-dark);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
}
.sc-hero2__sub {
  font-size: 16px;
  color: var(--c-muted);
  line-height: var(--lh-body);
  max-width: 380px;
  margin-bottom: var(--space-4);
}

/* ==========================================================================
   BOOKING BAR (globálne štýly .sc-booking-bar__inner; na homepage je v hero)
   ========================================================================== */
.sc-booking-bar {
  padding: 36px 0 48px;
  border-bottom: none;
  background: var(--c-bg-page);
}
.sc-booking-bar__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
  align-items: stretch;
  gap: 10px 12px;
  background: rgba(26, 36, 51, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 16px 24px;
  box-shadow: 0 16px 48px rgba(26, 36, 51, 0.22);
}
.sc-booking-bar__form {
  display: contents;
}
.sc-booking-bar__inner .location {
  min-width: 0;
}
.sc-booking-bar__inner .location select {
  appearance: none;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 36px 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.97) 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='%23444'/%3E%3C/svg%3E") right 12px center no-repeat;
  cursor: pointer;
  color: var(--c-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sc-booking-bar__inner .homepage-book-panel {
  display: contents;
}

/* Kalendár a výber hostí – viditeľné len s triedou .sc-visible (b_script.js); detail izby: .sc-room-cal-inline */
body.sc #calendar-block:not(.sc-visible):not(.sc-room-cal-inline),
body.sc #js-peoples:not(.sc-visible) {
  display: none !important;
}

/* Mriežka kalendára (CMS web_booking) – na Scapia homepage sa nenačítava chatysnov25.css */
body.sc #calendar-block.sc-visible #js-calendar,
body.sc .sc-room-page #calendar-block.sc-room-cal-inline #js-calendar {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 380px;
  overflow: hidden;
  margin: 0 auto;
  border-bottom: 1px dashed var(--c-border);
}
/* Ak by #calendar-block nebol pod .sc-room-page (napr. starý presun do body), zachová výšku mriežky */
body.sc #calendar-block.sc-room-cal-inline #js-calendar {
  position: relative;
  width: 100%;
  height: 460px;
  min-height: 460px;
  overflow: hidden;
  margin: 0 auto;
  border-bottom: 1px solid var(--c-border);
}
/* Detail izby: šípky abs. vpravo hore – nezaberajú šírku mriežky (žiadne „tlčenie“) */
body.sc .sc-room-page #calendar-block.sc-room-cal-inline.sc-room-cal__shell {
  display: block !important;
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--c-bg-soft) 0%, var(--c-bg) 72px);
  overflow: hidden;
  padding: 52px 14px 14px !important;
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.06);
}
body.sc .sc-room-flexicalendar {
  position: relative;
  width: 100%;
  max-width: 100%;
}
body.sc #calendar-block #calendar-wrapper {
  width: calc(380px * 15);
  position: absolute;
  left: 0;
  top: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
body.sc #calendar-block .month-block {
  float: none;
  margin: 8px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body.sc #calendar-block .mb-header {
  width: 100%;
  max-width: 360px;
  text-align: center;
  opacity: 0.5;
}
body.sc #calendar-block #js-calendar .mb-content {
  width: 360px;
  max-width: 100%;
  float: left;
  clear: both;
}
body.sc #calendar-block .mb-day,
body.sc #calendar-block .mb-empty,
body.sc #calendar-block .caldayname {
  width: 14.28%;
  display: inline-block;
  float: left;
  text-align: center;
  line-height: 32px;
  height: 42px;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
}
body.sc #calendar-block .mb-day:not(.selectable) {opacity: .2 !important;}
body.sc #calendar-block.isfxpc .mb-day,
body.sc #calendar-block.isfxpc .mb-empty,
body.sc #calendar-block.isfxpc .caldayname {
  line-height: 40px;
  height: 40px;
  font-size: 14px;
}
body.sc #calendar-block .js-closecalendar {
  display: block;
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: auto;
  left: auto;
  z-index: 50;
  width: 40px;
  height: 40px;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s, background 0.2s, border-color 0.2s;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--c-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
body.sc #calendar-block .js-closecalendar::before {
  content: '\00D7';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-size: 26px;
  line-height: 1;
  color: var(--c-dark);
  font-weight: 300;
  font-family: var(--font), system-ui, sans-serif;
  pointer-events: none;
}
body.sc #calendar-block .js-closecalendar:hover {
  opacity: 1;
  background: var(--c-bg-soft);
  border-color: rgba(20, 43, 76, 0.15);
}
body.sc #calendar-block .js-closecalendar:hover::before {
  color: var(--c-dark);
}
body.sc #calendar-block #js-cb-prev,
body.sc #calendar-block #js-cb-next {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50px;
  z-index: 30;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--c-border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: background 0.2s, box-shadow 0.2s, opacity 0.2s;
}
body.sc #calendar-block #js-cb-prev:hover,
body.sc #calendar-block #js-cb-next:hover {
  background: var(--c-bg-soft);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
body.sc #calendar-block #js-cb-prev {
  left: 8px;
}
/* Vedľa .js-closecalendar (pravý horný rok, z-index 50) — inak klik na „ďalej“ zatvorí modal */
body.sc #calendar-block #js-cb-next {
  right: 56px;
}
/* Šípky (na Scapia homepage nie je web_booking_css — inak sú tlačidlá prázdne) */
body.sc #calendar-block #js-cb-prev::before,
body.sc #calendar-block #js-cb-next::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  box-sizing: border-box;
  border: solid var(--c-text);
  border-width: 0 2px 2px 0;
  pointer-events: none;
}
body.sc #calendar-block #js-cb-prev::before {
  transform: translate(-35%, -50%) rotate(135deg);
}
body.sc #calendar-block #js-cb-next::before {
  transform: translate(-65%, -50%) rotate(-45deg);
}
body.sc #calendar-block #js-cb-next.disabled,
body.sc #calendar-block #js-cb-prev.disabled {
  opacity: 0.3;
  pointer-events: none;
}
body.sc #calendar-block .mobile-info {
  padding: 8px 12px;
  text-align: center;
  font-size: 13px;
  color: var(--c-muted);
}
body.sc #calendar-block #js-calendar .mb-content::after {
  content: '';
  display: table;
  clear: both;
}
body.sc #calendar-block .selectable {
  opacity: 1 !important;
}

/* ==========================================================================
   FEATURES / ADVANTAGES ROW
   ========================================================================== */
.sc-features {
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--c-border);
  background: var(--c-white);
}
.sc-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.sc-feature-card {
  text-align: center;
  padding: var(--space-4) var(--space-2);
}
.sc-feature-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--space-2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 160, 89, 0.15);
  border-radius: var(--radius-md);
}
.sc-feature-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--c-gold);
}
.sc-feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--space-1);
  line-height: var(--lh-tight);
}
.sc-feature-card p {
  font-size: 14px;
  color: var(--c-muted);
  line-height: var(--lh-body);
}

/* ==========================================================================
   SEARCH RESULTS
   ========================================================================== */
.sc-search-results {
  padding: var(--space-7) 0;
  display: none;
  background: var(--c-bg-page);
}
.sc-search-results.active {
  display: block;
}
.sc-search-results__header {
  text-align: center;
  margin-bottom: var(--space-5);
}
.sc-search-results__header h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.sc-search-results__header p {
  color: var(--c-muted);
  font-size: 15px;
}

/* Výsledky vyhľadávania (HTML z /utility/bookingsearchfromhp/) — karty .oneapp / .oneapart */
.sc-search-results.active #resulthead-placeholder {
  display: none;
}
.sc-search-results #js-result {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.sc-search-results #js-result > .col-md-12 {
  grid-column: 1 / -1;
}
.sc-search-results #js-result #resulthead {
  text-align: center;
  margin-bottom: 8px;
}
.sc-search-results #js-result #resulthead h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--c-dark);
  margin: 0 0 10px;
}
.sc-search-results #js-result #resulthead p {
  color: var(--c-muted);
  font-size: 15px;
  margin: 0;
}
.sc-search-results #js-result > .showmap {
  grid-column: 1 / -1;
  text-align: center;
  padding: 20px 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-gold);
  cursor: pointer;
}
#searchres .oneapp {
  min-width: 0;
}
#searchres .oneapart {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-white);
  color: var(--c-dark);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--c-border);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
#searchres .oneapart:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}
#searchres .oneapart .img {
  position: relative;
  height: 0;
  padding-bottom: 66%;
  background-size: cover !important;
  background-position: center !important;
}
#searchres .oneapart .img .fea {
  position: absolute;
  left: 0;
  top: 16px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  background: #22a06b;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 0 8px 8px 0;
}
#searchres .oneapart .img p {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 14px 18px;
  background: rgba(15, 23, 42, 0.92);
  color: #fff;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  border-top-left-radius: var(--radius-md);
}
#searchres .oneapart .img p span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 2px;
}

/* ChatySnov: cena pod názvom + galéria (markup z portal_booking.php) */
#searchres .sc-result-gallery .img {
  position: relative;
}
#searchres .sc-result-gallery__nav {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.5);
  color: #fff;
  cursor: pointer;
  z-index: 4;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
#searchres .sc-result-gallery--multi .sc-result-gallery__nav {
  display: flex;
}
#searchres .sc-result-gallery__nav:hover {
  background: rgba(15, 23, 42, 0.8);
}
#searchres .sc-result-gallery__nav--prev {
  left: 10px;
}
#searchres .sc-result-gallery__nav--next {
  right: 10px;
}
#searchres .sc-result-gallery__nav--prev::before,
#searchres .sc-result-gallery__nav--next::before {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
}
#searchres .sc-result-gallery__nav--prev::before {
  transform: rotate(135deg);
  margin-left: 3px;
}
#searchres .sc-result-gallery__nav--next::before {
  transform: rotate(-45deg);
  margin-right: 3px;
}
#searchres .sc-result-gallery__counter {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  z-index: 3;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: rgba(15, 23, 42, 0.65);
  pointer-events: none;
  min-height: 1em;
}
#searchres .oneapart .sc-result-price {
  margin: 0 20px 12px;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1.2;
}
#searchres .oneapart .sc-result-price__nights {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-muted);
  margin-top: 4px;
}

#searchres .oneapart .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 0 20px;
}
#searchres .oneapart .content h3 {
  margin: 18px 20px 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--c-dark) !important;
  line-height: 1.25;
}
#searchres .oneapart .content h3 small {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 4px;
}
#searchres .oneapart .content > p {
  margin: 0 20px 12px;
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.5;
}
#searchres .oneapart .content .butons {
  margin: auto 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#searchres .oneapart .content .butons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  transition: var(--transition);
}
#searchres .oneapart .content .butons a:first-child {
  background: var(--c-dark);
  color: #fff !important;
  border: 1px solid var(--c-dark);
}
#searchres .oneapart .content .butons a:first-child:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-dark) !important;
}
#searchres .oneapart .content .butons a.popup {
  background: transparent;
  color: var(--c-dark) !important;
  border: 1px solid var(--c-border);
}
#searchres .oneapart .content .butons a.popup:hover {
  border-color: var(--c-gold);
  color: var(--c-dark) !important;
}

@media (max-width: 1100px) {
  .sc-search-results #js-result {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .sc-search-results #js-result {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   DESTINATIONS / APARTMENTS GRID (Scapia cards)
   ========================================================================== */
.sc-destinations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sc-dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.sc-dest-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.sc-dest-card:hover .sc-dest-card__img {
  transform: scale(1.05);
}
.sc-dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
  z-index: 1;
}
.sc-dest-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

/* Priemerné hodnotenie ubytovania — pravý horný roh karty */
.sc-room-rating-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--c-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18);
  pointer-events: none;
}
.sc-room-rating-badge__score::after {
  content: '★';
  margin-left: 3px;
  color: #e6a800;
  font-size: 12px;
  font-weight: 700;
}
.sc-dest-card__img .sc-room-rating-badge,
#searchres .oneapart .img .sc-room-rating-badge,
.sc-trips-card__media .sc-room-rating-badge {
  top: 12px;
  right: 12px;
}
#searchres .oneapart .img .sc-room-rating-badge {
  z-index: 4;
}
.sc-trips-card__media .sc-room-rating-badge {
  z-index: 2;
}

.sc-dest-card__body {
  position: relative;
  z-index: 2;
  padding: var(--space-3);
  color: var(--c-white);
}
.sc-dest-card__price {
  font-size: 18px;
  font-weight: 700;
  line-height: var(--lh-tight);
  margin-bottom: var(--space-1);
}
.sc-dest-card__meta {
  font-size: 13px;
  line-height: var(--lh-ui);
  color: rgba(255,255,255,.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sc-dest-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-white);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.sc-dest-card__link::after {
  content: '\2192';
  transition: transform var(--transition);
}
.sc-dest-card:hover .sc-dest-card__link {
  color: var(--c-gold);
}
.sc-dest-card__link:hover::after {
  transform: translateX(4px);
}

/* ==========================================================================
   BLOG + FEATURED VIDEO (homepage)
   ========================================================================== */
.sc-section__header--row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.sc-section__header--row > div:first-child {
  flex: 1;
  min-width: 220px;
}
.sc-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sc-blog-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-white);
  box-shadow: 0 4px 24px rgba(20, 43, 76, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}
.sc-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(20, 43, 76, 0.12);
}
.sc-blog-card__img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}
.sc-blog-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sc-blog-card__body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-navy);
  margin: 0 0 10px;
  line-height: var(--lh-tight);
}
.sc-blog-card__body p {
  font-size: 14px;
  color: var(--c-muted);
  line-height: var(--lh-body);
  margin: 0 0 var(--space-2);
  flex: 1;
}
.sc-blog-card__more {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-gold);
}
.sc-video-feature {
  background: var(--c-bg-soft);
}
.sc-video-feature__frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #0a1628;
  max-width: 960px;
  margin: 0 auto;
}
.sc-video-feature__frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.sc-video-feature__native {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0a1628;
}
.sc-video-feature__video {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* ==========================================================================
   DESTINATIONS — horizontálny filter lokalít
   ========================================================================== */
.sc-section--destinations-filter {
  padding-bottom: var(--space-4);
}
.sc-destinations-filter-wrap {
  margin-top: 8px;
}
.sc-destinations-filter {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -24px;
  padding: 4px 24px 16px;
  cursor: grab;
}
.sc-destinations-filter.is-dragging {
  cursor: grabbing;
  user-select: none;
}
.sc-destinations-filter::-webkit-scrollbar {
  display: none;
}
.sc-destinations-filter__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  width: max-content;
  min-width: 100%;
}
.sc-destinations-filter__item {
  flex: 0 0 auto;
  position: relative;
  width: clamp(150px, 24vw, 220px);
  min-height: 120px;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-bg-soft);
  cursor: pointer;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.sc-destinations-filter__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}
.sc-destinations-filter__item.is-active {
  border-color: var(--c-gold);
  box-shadow: 0 0 0 1px var(--c-gold);
}
.sc-destinations-filter__item--pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 48px;
  min-width: 0;
  padding: 12px 22px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
}
.sc-destinations-filter__item--pill.is-active {
  background: var(--c-dark);
  border-color: var(--c-dark);
  color: var(--c-white);
}
.sc-destinations-filter__item--pill .sc-destinations-filter__label {
  position: static;
  padding: 0;
  color: inherit;
  font-size: 14px;
  font-weight: 600;
}
.sc-destinations-filter__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}
.sc-destinations-filter__item:hover .sc-destinations-filter__img {
  transform: scale(1.05);
}
.sc-destinations-filter__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .08) 55%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.sc-destinations-filter__item--pill::after {
  display: none;
}
.sc-destinations-filter__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 14px 16px;
  color: var(--c-white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}
.sc-destinations-empty {
  margin-top: 32px;
  padding: 40px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--c-white);
  border: 1px dashed var(--c-border);
}
.sc-destinations-empty p {
  margin: 0 0 20px;
  color: var(--c-muted);
}
.sc-section--rooms-listing {
  padding-top: var(--space-5);
}

@media (max-width: 640px) {
  .sc-destinations-filter__item {
    width: clamp(130px, 42vw, 180px);
    min-height: 104px;
  }
  .sc-destinations-filter__item--pill {
    min-height: 44px;
    padding: 10px 18px;
  }
  .sc-section--rooms-listing {
    padding-top: var(--space-4);
  }
}

/* ==========================================================================
   BENTO GRID - Category trips
   ========================================================================== */
.sc-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.sc-bento__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.sc-bento__item--large {
  grid-column: span 1;
  min-height: 380px;
}
.sc-bento__item--wide {
  grid-column: span 2;
}
.sc-bento__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.sc-bento__item:hover .sc-bento__img {
  transform: scale(1.05);
}
.sc-bento__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 60%);
  z-index: 1;
}
.sc-bento__body {
  position: relative;
  z-index: 2;
  padding: 28px;
  color: var(--c-white);
}
.sc-bento__body h3 {
  font-size: 22px;
  color: var(--c-white);
  margin-bottom: 6px;
}
.sc-bento__body p {
  font-size: 14px;
  color: rgba(255,255,255,.75);
}

/* ==========================================================================
   DEALS / PROMO BANNER
   ========================================================================== */
.sc-deals {
  padding: 100px 0;
}
.sc-deal-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.sc-deal-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.sc-deal-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 50%);
  z-index: 1;
}
.sc-deal-card__body {
  position: relative;
  z-index: 2;
  padding: 36px;
  color: var(--c-white);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.sc-deal-card__info h3 {
  font-size: 28px;
  color: var(--c-white);
  margin-bottom: 10px;
}
.sc-deal-card__info p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
}
.sc-deal-card__discount {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
}
.sc-deal-card__discount span {
  font-size: 20px;
  vertical-align: super;
}

/* ==========================================================================
   STATS ROW
   ========================================================================== */
.sc-stats {
  padding: 60px 0;
  background: var(--c-bg-page);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.sc-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.sc-stat__number {
  font-size: 32px;
  font-weight: 800;
  color: var(--c-dark);
  margin-bottom: 6px;
}
.sc-stat__label {
  font-size: 14px;
  color: var(--c-muted);
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.sc-reviews {
  padding: 100px 0;
  background: var(--c-bg-soft);
}
.sc-reviews__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.sc-reviews__intro h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: var(--space-2);
  line-height: var(--lh-tight);
}
.sc-reviews__intro p {
  font-size: 15px;
  color: var(--c-muted);
  line-height: var(--lh-body);
}
.sc-reviews__slider {
  overflow: hidden;
}
.sc-review-card {
  background: var(--c-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-width: 320px;
}
.sc-review-card__text {
  font-size: 15px;
  line-height: var(--lh-body);
  color: var(--c-text);
  margin-bottom: var(--space-2);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sc-review-card.is-expanded .sc-review-card__text {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.sc-review-card__expand {
  display: none;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-gold);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-align: left;
}
.sc-review-card__expand:hover {
  color: var(--c-dark);
}
.sc-review-card__expand:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
}
.sc-review-card__expand.is-visible {
  display: inline-block;
}
.sc-review-card__author {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-dark);
}
.sc-review-card__room {
  font-size: 13px;
  color: var(--c-light);
  margin-top: 4px;
}
.sc-review-card__room-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--c-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}
.sc-review-card__room-link:hover {
  color: var(--c-dark);
}
.sc-review-card__room-link:hover .sc-review-card__room-ico {
  color: var(--c-gold);
}
.sc-review-card__room-label {
  text-decoration: none;
  text-underline-offset: 2px;
  color: var(--c-accent);
}
.sc-review-card__room-ico {
  flex-shrink: 0;
  color: var(--c-gold);
  opacity: 0.95;
}

/* Swiper scrollbar in reviews */
.sc-reviews .swiper-scrollbar {
  margin-top: 24px;
  height: 3px;
  background: var(--c-border);
  border-radius: 3px;
}
.sc-reviews .swiper-scrollbar-drag {
  background: var(--c-gold);
  border-radius: 3px;
}

/* ==========================================================================
   INSTAGRAM / SOCIAL
   ========================================================================== */
.sc-social {
  padding: 60px 0;
}
.sc-social--compact {
  padding: 40px 0 24px;
}

/* Spodok: full-bleed foto (RS banner kat. 6) + Scapia CTA + pätička */
.sc-footer-area {
  width: 100%;
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,.88);
  min-height: 320px;
}
.sc-footer-parallax {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.sc-footer-parallax__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -10%;
  height: 120%;
  background-color: var(--c-navy-header);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
}
.sc-footer-parallax__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 15, 32, 0.45) 0%, rgba(8, 15, 32, 0.72) 55%, rgba(5, 10, 22, 0.88) 100%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0,0,0,.25) 0%, transparent 55%);
}
.sc-footer-parallax__inner {
  position: relative;
  z-index: 2;
}
.sc-footer-watermark {
  position: absolute;
  left: 0;
  bottom: 80px;
  font-size: clamp(56px, 14vw, 160px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: rgba(255,255,255,.06);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  padding-left: 4%;
}
.sc-footer-area::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 187, 100, 0.35), transparent);
  pointer-events: none;
  z-index: 3;
}
.sc-elfsight-feed {
  padding: 40px 0 24px;
  background: transparent;
  border: none;
  position: relative;
  z-index: 2;
}
.sc-elfsight-feed .sc-container {
  max-width: var(--max-w-wide);
}

/* ==========================================================================
   FOOTER (Scapia webflow – CTA + 3 stĺpce + newsletter)
   ========================================================================== */
.sc-footer {
  background: transparent;
  color: rgba(255,255,255,.72);
  padding: 0 0 8px;
  position: relative;
}
.sc-footer__cta {
  text-align: center;
  padding: 48px 20px 40px;
  margin-bottom: 8px;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.sc-footer__cta-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4.2vw, 48px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.98);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
  color: var(--c-white) !important;
}
.sc-footer__cta-text {
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 auto 28px;
  text-shadow: 0 1px 16px rgba(0,0,0,.25);
  margin:  0  auto !important;
}
.sc-btn.sc-btn--footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff !important;
  color: #0f172a !important;
  border: 1px solid rgba(255,255,255,.95) !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  padding: 14px 32px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  margin-top: 25px;
}
.sc-btn.sc-btn--footer-cta:hover {
  filter: brightness(1.02);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
  color: #0f172a !important;
}
.sc-footer a {
  color: rgba(255,255,255,.72);
}
.sc-footer a:hover {
  color: var(--c-gold);
}
.sc-footer__grid {
  display: grid;
  grid-template-columns: minmax(200px, 1.35fr) minmax(140px, 0.85fr) minmax(160px, 1fr) minmax(220px, 1.15fr);
  gap: 40px 36px;
  padding-bottom: 48px;
  align-items: start;
}
.sc-footer__grid--scapia {
  grid-template-columns: minmax(220px, 1.4fr) minmax(160px, 0.9fr) minmax(240px, 1.1fr);
  gap: 48px 40px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 44px;
}
.sc-footer__col--brand {
  min-width: 0;
  padding-right: 8px;
}
.sc-footer__contactlines {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 340px;
}
.sc-footer__contactlines li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}
.sc-footer__contactlines a {
  color: rgba(255,255,255,.88) !important;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.sc-footer__contactlines a:hover {
  color: var(--c-gold) !important;
  border-bottom-color: rgba(216,187,100,.5);
}
.sc-footer__contact-ico {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--c-gold);
}
.sc-footer__contact-ico svg {
  width: 22px;
  height: 22px;
  display: block;
}
.sc-footer__col--aside .sc-footer__heading--spaced {
  margin-top: 28px;
}
.sc-footer__legalbar {
  padding: 20px 0 8px;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 8px;
}
.sc-footer__legalbar .sc-footer__legal-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  margin: 0 0 6px;
  text-transform: lowercase;
}
.sc-footer__legalbar .sc-footer__legal-ico {
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,.42);
  margin: 0;
}
.sc-footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}
.sc-footer__logo img {
  height: 52px;
  width: auto;
  max-width: 240px;
  display: block;
}
.sc-footer__desc {
  font-size: 14px;
  line-height: 1.75;
  max-width: 340px;
  margin: 0 0 10px;
  color: rgba(255,255,255,.68);
}
.sc-footer__heading {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-gold);
  margin: 0 0 22px;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.sc-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sc-footer__links li {
  margin-bottom: 14px;
}
.sc-footer__links a {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,.82);
}
.sc-footer__links a:hover {
  color: var(--c-gold);
}
.sc-footer__contact--simple {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.sc-footer__contact--simple a {
  display: block;
  margin: 0;
}
.sc-footer__phone {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: rgba(255,255,255,.98) !important;
  letter-spacing: .02em;
  line-height: 1.2;
}
.sc-footer__email {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-gold) !important;
  word-break: break-word;
}
.sc-footer__legal {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 12px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .52);
}
.sc-footer__legal p {
  margin: 0 0 10px;
}
.sc-footer__legal-name {
  font-weight: 600;
  color: rgba(255, 255, 255, .72);
  text-transform: lowercase;
}
.sc-footer__legal-address {
  max-width: 260px;
}
.sc-footer__legal-ico {
  margin-bottom: 0 !important;
  font-size: 11px;
  line-height: 1.5;
  opacity: .95;
}
.sc-footer__lead {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.62);
  margin: 0 0 18px;
  max-width: 320px;
}
.sc-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.sc-footer__social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  transition: var(--transition);
}
.sc-footer__social a:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
}
.sc-footer__social a:hover svg {
  fill: var(--c-dark);
  stroke: var(--c-dark);
}
.sc-footer__social a svg {
  width: 18px;
  height: 18px;
  fill: white;
}

/* CRM newsletter – skryť duplicitný text (lang kľúč) a štýl ako Scapia */
.sc-footer .crm-text {
  display: none !important;
}
.sc-footer #crm-register {
  width: 100%;
}
.sc-footer .crm-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}
.sc-footer #crm-email {
  flex: 1 1 140px;
  min-width: 0;
  margin: 0 !important;
  padding: 14px 16px !important;
  background: rgba(255,255,255,.07) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  border-radius: 10px !important;
  color: #fff !important;
  font-size: 14px !important;
  font-family: var(--font) !important;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  box-shadow: none !important;
}
.sc-footer #crm-email:focus {
  border-color: var(--c-gold) !important;
  box-shadow: 0 0 0 3px rgba(216,187,100,.2) !important;
}
.sc-footer #crm-email::placeholder {
  color: rgba(255,255,255,.45) !important;
  opacity: 1 !important;
}
.sc-footer .crm-send {
  flex: 0 0 auto;
  margin: 0 !important;
  width: auto !important;
  min-width: 110px;
  padding: 14px 22px !important;
  background: var(--c-gold) !important;
  border: 1px solid var(--c-gold) !important;
  color: var(--c-dark) !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  font-family: var(--font) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  text-align: center;
}
.sc-footer .crm-send:hover {
  background: #c9a94f !important;
  border-color: #c9a94f !important;
  color: var(--c-dark) !important;
}

.sc-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 28px 0 36px;
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px 24px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.sc-footer__bottom > span:first-child {
  color: rgba(255,255,255,.65);
}
.sc-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
}
.sc-footer__bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,.65);
}
.sc-footer__bottom-links a:hover {
  color: var(--c-gold);
}
.sc-footer__credit {
  color: rgba(255,255,255,.5);
}
.sc-footer__credit a {
  color: rgba(255,255,255,.85);
  font-weight: 600;
}
.sc-footer__credit a:hover {
  color: var(--c-gold);
}

/* ==========================================================================
   MAP
   ========================================================================== */
.sc-map-section {
  position: relative;
}
.sc-map-toggle {
  display: none;
  margin: 24px auto;
  text-align: center;
}
.sc-map-toggle.visible {
  display: block;
}
.sc-map-col {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease;
}
.sc-map-col.open {
  max-height: 1000px;
}

.sc-map-section .leaflet-container {
  font-family: var(--font);
  z-index: 1;
  border-radius: var(--radius-md);
}
/* Žiadne transition na transform/pozícii – Leaflet pri zoomovaní posúva marker každý frame; transition by „trhalo“ bublinu od súradníc. */
.sc-map-section .leaflet-osm-marker {
  background: transparent !important;
  border: none !important;
}
.sc-map-section #map .sc-map-marker {
  position: relative;
  width: 220px;
  min-height: 44px;
  pointer-events: none;
}
.sc-map-section #map .sc-map-marker__pin {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  min-height: 44px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--c-dark);
  color: var(--c-gold);
  border: 1px solid rgba(216, 187, 100, 0.35);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  max-width: 220px;
  text-align: center;
}
.sc-map-section #map .sc-map-marker__pin:hover {
  background: var(--c-gold);
  color: var(--c-dark);
  border-color: var(--c-gold);
}
.sc-map-section #map .sc-map-marker__card {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  max-width: 85vw;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  pointer-events: auto;
  text-align: left;
}
.sc-map-section #map .sc-map-marker--open .sc-map-marker__card {
  display: block;
}
.sc-map-section #map .sc-map-marker__media {
  position: relative;
  padding-bottom: 52%;
  background: var(--c-bg-soft);
}
.sc-map-section #map .sc-map-marker__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sc-map-section #map .sc-map-marker__body {
  padding: 14px 16px 16px;
}
.sc-map-section #map .sc-map-marker__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-dark);
  margin: 0 0 8px;
  line-height: 1.25;
}
.sc-map-section #map .sc-map-marker__meta {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 12px;
  line-height: 1.35;
}
.sc-map-section #map .sc-map-marker__meta span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-muted);
  margin-top: 4px;
}
.sc-map-section #map .sc-map-marker__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: var(--c-dark);
  background: var(--c-gold);
  border: 1px solid var(--c-gold);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.sc-map-section #map .sc-map-marker__cta:hover {
  background: var(--c-dark);
  color: var(--c-gold);
  border-color: var(--c-dark);
}

/* ==========================================================================
   POPUP BANNER
   ========================================================================== */
.sc #popupbanner {
  position: fixed;
  display: none;
  bottom: 0;
  left: 0;
  z-index: 88888;
  width: 198px;
}
.sc #popupbanner .popupcontent {
  width: 170px;
  max-width: 90%;
  margin: 90px 0 10px 15px;
  text-align: center;
  background: var(--c-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.sc #popupbanner .popupimg {
  padding-bottom: 65%;
}
.sc #popupbanner .popuptext {
  padding: 12px;
}
.sc #popupbanner .popuptext h2 {
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--c-dark);
}
.sc #popupbanner .popuptext p,
.sc #popupbanner .popuptext h3 {
  display: none;
}
.sc #popupbanner .but {
  display: inline-block;
  padding: 6px 16px;
  background: var(--c-dark);
  color: var(--c-white);
  font-size: 11px;
  font-weight: 600;
  border-radius: 100px;
  margin-top: 8px;
}
.sc #popupbanner #bannerclose {
  position: absolute;
  top: 30px;
  left: 44%;
  transform: translateX(-50%);
  cursor: pointer;
  z-index: 99999;
}
.sc #popupbanner #bannerclose::before {
  content: '\d7';
  font-size: 25px;
  color: var(--c-white);
  position: absolute;
  top: -35px;
  right: 0;
}

/* ==========================================================================
   LOADER
   ========================================================================== */
.sc #loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  display: none;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .sc-header__nav { display: none; }
  .sc-header__toggle { display: flex; }
  .sc-header__inner {
    gap: 8px;
    padding-left: 16px !important;
    padding-right: 12px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    overflow: hidden;
    max-width: 100%;
  }
  .sc-header__actions {
    flex-shrink: 0;
    margin-left: auto;
  }
  .sc-header__logo {
    padding-left: 4px;
  }
  body.sc .sc-header__logo img {
    max-width: 200px;
    height: 40px;
  }
.sc-btn--lg {
  padding: 12px 30px;
  font-size: 14px;
  margin: 20px 0;
}

  .sc-section__header {
    flex-direction: column;
    gap: 16px;
  }

  .sc-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .sc-destinations__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sc-section__header--row {
    flex-direction: column;
    align-items: stretch;
  }
  .sc-section__header--row .sc-btn {
    align-self: flex-start;
  }
  .sc-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sc-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .sc-bento__item--wide {
    grid-column: span 2;
  }

  .sc-reviews__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sc-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 32px;
  }
  .sc-footer__grid--scapia {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sc-hero2:not(.sc-hero2--fullscreen) .sc-hero2__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .sc-hero2:not(.sc-hero2--fullscreen) .sc-hero2__slider {
    border-radius: var(--radius-lg);
  }
  .sc-hero2:not(.sc-hero2--fullscreen) .sc-hero2__slide {
    min-height: 360px;
  }
  .sc-hero2:not(.sc-hero2--fullscreen) .sc-hero2__text {
    padding: 40px 0 0;
  }
  .sc-hero2.sc-hero2--fullscreen .sc-hero2__layer {
    padding: calc(var(--sc-header-h) + 16px) 0 28px;
  }
  .sc-hero2.sc-hero2--fullscreen .sc-hero2__title {
    font-size: clamp(26px, 6vw, 44px);
  }
  .sc-hero2.sc-hero2--fullscreen .sc-hero2__booking {
    margin-top: 20px;
  }
  .sc-booking-bar__inner {
    grid-template-columns: 1fr 1fr;
    padding: 16px;
  }
  .sc-booking-bar__inner #rf-button {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: 360px;
  }

  .sc-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .sc-section {
    padding: var(--space-section-y-md) 0;
  }
  .sc-section--sm {
    padding: var(--space-4) 0;
  }
  .sc-features {
    padding: var(--space-5) 0;
  }
  .sc-search-results {
    padding: var(--space-5) 0;
  }

  .sc-hero2:not(.sc-hero2--fullscreen) .sc-hero2__title {
    font-size: 28px;
  }
  .sc-hero2:not(.sc-hero2--fullscreen) .sc-hero2__slide {
    min-height: 300px;
  }
  .sc-hero2:not(.sc-hero2--fullscreen) .sc-hero2__slide-content {
    padding: 24px;
  }
  .sc-blog__grid {
    grid-template-columns: 1fr;
  }

  .sc-moments.sc-reels {
    padding: 60px 0;
  }
  .sc-moments__intro {
    margin-bottom: 36px;
  }

  .sc-hero2:not(.sc-hero2--fullscreen) .sc-hero2__slide-content h1 {
    font-size: 22px;
  }

  .sc-destinations__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sc-bento {
    grid-template-columns: 1fr;
  }
  .sc-bento__item--wide {
    grid-column: span 1;
  }

  .sc-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sc-feature-card {
    text-align: center;
    padding: 10px 5px;
}

  .sc-booking-bar__inner {
    grid-template-columns: 1fr;
  }
  .sc-booking-bar__inner #rf-button {
    grid-column: 1;
    width: 100%;
    max-width: none;
  }

  .sc-footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .sc-footer__grid--scapia {
    grid-template-columns: 1fr;
    padding-top: 32px;
  }

  .sc-header__actions {
    z-index: 2;
    gap: 8px;
    margin-right: 0;
    flex-shrink: 0;
  }
  .sc-header__quick-select,
  .sc-header__lang-select {
    display: block;
  }
  .sc-header__lang--desktop,
  .sc-header__cta--desktop {
    display: none !important;
  }
  .sc-header__inner {
    gap: 8px;
    min-height: 60px;
    padding-left: 16px !important;
    padding-right: 12px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }
  .sc-header__logo {
    padding-left: 6px;
  }
  body.sc .sc-header__logo img {
    max-width: 140px;
    height: 34px;
  }
  .sc-header__toggle {
    margin-right: 0;
  }

  /* Hero booking: kompaktný trigger + fullscreen panel */
  .sc-booking-mobile-trigger {
    display: flex;
  }
  .sc-booking-panel {
    position: fixed;
    inset: 0;
    z-index: 10050;
    width: 100%;
    height: 100%;
    height: 100dvh;
    pointer-events: none;
    visibility: hidden;
  }
  .sc-booking-panel.is-open {
    pointer-events: auto;
    visibility: visible;
  }
  .sc-booking-panel__backdrop {
    display: none;
  }
  .sc-booking-panel__sheet {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    height: 100dvh;
    max-height: 100dvh;
    background: var(--c-bg-page);
    border-radius: 0;
    transform: translateY(100%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
  }
  .sc-booking-panel.is-open .sc-booking-panel__sheet {
    transform: translateY(0);
  }
  .sc-booking-panel:not(.is-open) .sc-booking-panel__sheet {
    visibility: hidden;
  }
  .sc-booking-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 56px;
    padding: max(12px, env(safe-area-inset-top, 0px)) 16px 12px;
    background: var(--c-navy-header);
    color: var(--c-white);
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  }
  .sc-booking-panel__head h2 {
    margin: 0;
    font-family: var(--font) !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-white) !important;
    line-height: var(--lh-tight);
  }
  .sc-booking-panel__close {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: var(--c-white);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
  }
  .sc-booking-panel__body {
    flex: 1;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 24px 20px max(28px, env(safe-area-inset-bottom, 0px));
    background: var(--c-bg-page);
  }
  .sc-booking-panel__body .sc-booking-bar__inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
    grid-template-columns: 1fr;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
  }
  .sc-booking-panel__body .sc-booking-bar__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }
  .sc-booking-panel__body .sc-booking-bar__inner #rooms-filter,
  .sc-booking-panel__body .sc-booking-bar__inner #rooms-filter.dstate {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    background: transparent;
  }
  .sc-booking-panel__body .sc-booking-bar__inner .location,
  .sc-booking-panel__body .sc-booking-bar__inner .location select {
    width: 100%;
    max-width: none;
  }
  .sc-booking-panel__body .sc-booking-bar__inner .location select,
  .sc-booking-panel__body .sc-booking-bar__inner #rf-start,
  .sc-booking-panel__body .sc-booking-bar__inner #rf-end,
  .sc-booking-panel__body .sc-booking-bar__inner #rf-peoples {
    min-height: 54px;
    padding: 16px 18px;
    font-size: 16px;
    line-height: 1.3;
    border-radius: 14px;
    border: 1px solid var(--c-border);
    background: var(--c-white);
    color: var(--c-dark);
    box-sizing: border-box;
    width: 100%;
  }
  .sc-booking-panel__body .sc-booking-bar__inner #rf-start span,
  .sc-booking-panel__body .sc-booking-bar__inner #rf-end span {
    font-size: 16px;
    color: var(--c-dark);
  }
  .sc-booking-panel__body .sc-booking-bar__inner #rf-button {
    width: 100%;
    max-width: none;
    min-height: 54px;
    margin-top: 6px;
    padding: 16px 24px;
    font-size: 16px;
    border-radius: 14px;
    grid-column: auto;
  }
  .sc-hero2.sc-hero2--fullscreen .sc-hero2__booking .sc-booking-panel:not(.is-open) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .sc-hero2.sc-hero2--fullscreen .sc-hero2__sub {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0;
  }
  .sc-hero2.sc-hero2--fullscreen .sc-hero2__title {
    margin-bottom: 12px;
  }
  .sc-hero2.sc-hero2--fullscreen .sc-hero2__booking {
    margin-top: 16px;
  }

  .sc-room-gallery-strip {
    display: grid !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-top: 20px;
    grid-template-columns: 1fr 1fr;
}

.sc-room-gallery-strip__thumb {
  width: 100% !important;
  height: 115px !important;
}

body.sc .sc-room-page #calendar-block.sc-room-cal-inline .month-block {
  float: none;
  flex: 0 0 calc((100cqw - 12px) / 1) !important;
  width: calc((100cqw - 12px) / 1) !important;
  max-width: calc((100cqw - 12px) / 1) !important;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 14px 10px 16px;
  margin: 0;
  box-sizing: border-box;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
}

.sc-header__actions .sc-btn {
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 500;
  border-radius: 40px;
  background: var(--c-dark);
  color: #fff;
  border: none;
}

  .sc-footer .crm-form {
    flex-direction: column;
  }
  .sc-footer .crm-send {
    width: 100% !important;
  }

  .sc-footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .sc-footer__cta {
    padding: 40px 18px 36px;
    margin-bottom: 4px;
  }
  .sc-footer__cta-title {
    font-size: 24px;
  }

  .sc-deal-card {
    min-height: 280px;
  }

  .sc-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .sc-hero2:not(.sc-hero2--fullscreen) {
    padding-top: 0;
  }
  .sc-hero2:not(.sc-hero2--fullscreen) .sc-hero2__slide {
    min-height: 260px;
  }
  .sc-hero2:not(.sc-hero2--fullscreen) .sc-hero2__text {
    padding: 28px 0 0;
  }
  .sc-hero2.sc-hero2--fullscreen .sc-hero2__layer {
    padding: calc(var(--sc-header-h) + 12px) 0 24px;
    min-height: 100svh;
  }
  .sc-hero2.sc-hero2--fullscreen .sc-hero2__booking {
    margin-top: 18px;
  }

  .sc-container {
    padding: 0 16px;
  }

  .sc-dest-card {
    aspect-ratio: 4/5;
  }
}

/* ==========================================================================
   MOBILE NAVIGATION OVERLAY
   ========================================================================== */
.sc-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(26, 36, 51, 0.98);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 88px 24px 40px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  overflow-y: auto;
}
.sc-mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
.sc-mobile-nav__logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
}
.sc-mobile-nav__logo img {
  height: 40px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}
.sc-mobile-nav a {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.92);
}
.sc-mobile-nav a:hover {
  color: var(--c-gold);
}
.sc-mobile-nav__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.85);
}
.sc-mobile-nav__close:hover {
  color: var(--c-gold);
}

/* ==========================================================================
   BOOKING FORM PORTAL OVERRIDES
   ========================================================================== */
.sc-booking-bar__inner #rooms-filter {
  display: contents;
  position: relative;
  background: transparent;
  padding: 0;
}
.sc-booking-bar__inner #rooms-filter.dstate {
  background: transparent;
}
.sc-booking-bar__inner #rf-start,
.sc-booking-bar__inner #rf-end,
.sc-booking-bar__inner #rf-peoples {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text);
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.97);
  cursor: pointer;
  transition: var(--transition);
  min-width: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-booking-bar__inner #rf-start span,
.sc-booking-bar__inner #rf-end span {
  display: block;
  line-height: 1.35;
  word-break: break-word;
  hyphens: auto;
}
.sc-booking-bar__inner #rf-peoples {
  flex-wrap: wrap;
  gap: 4px;
}
.sc-booking-bar__inner #rf-start:hover,
.sc-booking-bar__inner #rf-end:hover,
.sc-booking-bar__inner #rf-peoples:hover {
  border-color: var(--c-gold);
}
#nostart-modal {display: none !important;}
.sc-booking-bar__inner #rf-button {
  flex-shrink: 0;
  padding: 12px 28px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  background: var(--c-gold);
  color: var(--c-navy-header);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-align: center;
}
.sc-booking-bar__inner #rf-button:hover {
  background: var(--c-gold-hover);
  color: var(--c-navy-header);
}

/* Modal kalendára – fixné okno + vnútorná mriežka vyššie */
body.sc #calendar-block.sc-visible {
  display: flex !important;
  flex-direction: column;
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: min(780px, 96vw) !important;
  max-width: 96vw;
  box-sizing: border-box;
  padding: 0 !important;
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px rgba(0,0,0,.25);
  border: 1px solid var(--c-border);
  background: var(--c-bg);
  z-index: 200000 !important;
  max-height: 90vh;
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: auto;
  isolation: isolate;
}
.sc #calendar-block .mb-title {
  font-family: var(--font);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.01em;
  text-align: center;
  margin: 0 0 8px;
  width: 100%;
  max-width: 360px;
  box-sizing: border-box;
}
.sc #calendar-block .mb-day {
  font-family: var(--font);
  font-size: 13px;
}
.sc #calendar-block .selectable:hover {
  background: var(--c-bg-soft);
  border-radius: var(--radius-sm);
}
.sc #calendar-block .startdate,
.sc #calendar-block .enddate {
  background: var(--c-gold) !important;
  color: var(--c-dark) !important;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.sc #calendar-block .selecteddays {
  background: rgba(216,187,100,.15);
}
.sc #calendar-block #selcal-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 12px;
  padding: 12px 16px;
  border-top: 1px solid var(--c-border);
  font-family: var(--font);
  font-size: 13px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  z-index: 10;
}
.sc #calendar-block #selcal-info #sci-done,
.sc #calendar-block #selcal-info #sci-cancel {
  position: static;
  float: none;
  margin: 0;
}
.sc #calendar-block #sci-done,
.sc #calendar-block #sci-cancel {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}
.sc #calendar-block #sci-done {
  background: var(--c-gold);
  color: var(--c-dark);
}
.sc #calendar-block #sci-cancel {
  background: var(--c-bg-soft);
  color: var(--c-text);
}
.sc .filter-shadow {
  display: none;
}

/* Mobilný kalendár (isfxpc) – zatváratko vľavo dole, Hotovo vpravo, šípky po okrajoch */
@media (max-width: 768px) {
  body.sc #calendar-block.isfxpc.sc-visible {
    position: fixed !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: min(92dvh, 100dvh) !important;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    border-bottom: none;
  }

  body.sc #calendar-block.isfxpc.sc-visible #js-cb-prev {
    top: 10px;
    left: 6px;
    transform: none;
  }

  body.sc #calendar-block.isfxpc.sc-visible #js-cb-next {
    top: 10px;
    right: 6px;
    left: auto;
  }

  body.sc #calendar-block.isfxpc.sc-visible .js-closecalendar {
    top: auto;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    right: auto;
    z-index: 60;
  }

  body.sc #calendar-block.isfxpc.sc-visible .mobile-info {
    padding: 6px 12px 0;
    text-align: center;
  }

  body.sc #calendar-block.isfxpc.sc-visible #selcal-info {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 10px;
    padding: 10px 12px max(64px, calc(12px + env(safe-area-inset-bottom)));
  }

  body.sc #calendar-block.isfxpc.sc-visible #selcal-info #sci-start,
  body.sc #calendar-block.isfxpc.sc-visible #selcal-info #sci-end,
  body.sc #calendar-block.isfxpc.sc-visible #selcal-info #sci-nights {
    flex: 0 1 auto;
  }

  body.sc #calendar-block.isfxpc.sc-visible #sci-cancel {
    margin-left: auto;
  }

  body.sc #calendar-block.isfxpc.sc-visible #sci-done {
    position: absolute;
    bottom: max(12px, env(safe-area-inset-bottom));
    right: 12px;
    left: auto;
    z-index: 60;
    min-width: 88px;
    text-align: center;
  }
}

/* Modal hostí – homepage nenačítava web_booking_css; štruktúra z showPeoplesBlock() */
#js-peoples.sc-visible {
  display: block !important;
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: min(440px, 96vw) !important;
  max-width: 96vw;
  max-height: min(88vh, 920px);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-xl) !important;
  box-shadow: 0 25px 60px rgba(0,0,0,.25) !important;
  border: 1px solid var(--c-border);
  background: var(--c-bg) !important;
  z-index: 200000 !important;
  padding: 0 !important;
  pointer-events: auto;
  isolation: isolate;
  font-family: var(--font);
}

body.sc #js-peoples .js-peoples-in {
  padding: 20px 20px 8px;
  box-sizing: border-box;
}

body.sc #js-peoples .rblock {
  margin: 0 0 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  position: relative;
}

body.sc #js-peoples .rname {
  font-size: 15px;
  font-weight: 700;
  color: var(--c-dark);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

body.sc #js-peoples .rname span {
  color: var(--c-muted);
  font-weight: 600;
}

body.sc #js-peoples .p_blok {
  margin: 0;
  position: relative;
}

body.sc #js-peoples .p_age {
  font-size: 14px;
  line-height: 1.45;
  color: var(--c-text);
  margin-bottom: 10px;
}

body.sc #js-peoples .p_age span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--c-muted);
}

body.sc #js-peoples .p_counts {
  position: relative;
  text-align: left;
  margin: 0;
}

body.sc #js-peoples .bfc-count {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  transform: none !important;
  display: inline-flex !important;
  align-items: stretch;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-bg);
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

body.sc #js-peoples .bfc-minus,
body.sc #js-peoples .bfc-plus {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: var(--c-dark) !important;
  color: var(--c-white) !important;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.2s, filter 0.2s;
}

body.sc #js-peoples .bfc-minus:hover,
body.sc #js-peoples .bfc-plus:hover {
  filter: brightness(1.08);
}

body.sc #js-peoples .bfc-count input.bfc-i,
body.sc #js-peoples .bfc-count input[type="number"] {
  width: 52px !important;
  min-width: 52px;
  height: 42px;
  border: none !important;
  border-left: 1px solid var(--c-border);
  border-right: 1px solid var(--c-border);
  background: var(--c-bg) !important;
  text-align: center;
  font-size: 16px !important;
  font-weight: 600;
  color: var(--c-dark);
  margin: 0 !important;
  border-radius: 0 !important;
  -moz-appearance: textfield;
}

body.sc #js-peoples .bfc-count input::-webkit-outer-spin-button,
body.sc #js-peoples .bfc-count input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body.sc #js-peoples .child-add {
  margin-top: 12px;
}

body.sc #js-peoples .child-add-ico {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-dark);
  cursor: pointer;
  padding: 8px 0;
  border-bottom: 1px dashed var(--c-border);
  transition: color 0.2s;
}

body.sc #js-peoples .child-add-ico:hover {
  color: var(--c-gold);
}

body.sc #js-peoples .child-add-in {
  margin-top: 10px;
  padding: 12px;
  background: var(--c-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
}

body.sc #js-peoples .agesel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

body.sc #js-peoples .agesel span {
  font-size: 13px;
  color: var(--c-muted);
}

body.sc #js-peoples select.bfc-chiladd {
  flex: 1;
  min-width: 120px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  font-family: var(--font);
  font-size: 14px;
  background: var(--c-bg);
  color: var(--c-dark);
  cursor: pointer;
}

body.sc #js-peoples .bfc-childadd-button {
  display: inline-block;
  padding: 8px 18px;
  background: var(--c-dark);
  color: var(--c-white);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  transition: opacity 0.2s;
}

body.sc #js-peoples .bfc-childadd-button:hover {
  opacity: 0.92;
}

body.sc #js-peoples .p_blok .p_child {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-dark);
  margin: 10px 0 6px;
}

body.sc #js-peoples .p_blok .childage {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  min-width: 56px;
  max-width: 120px;
  padding: 8px 10px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  color: var(--c-dark);
  background: var(--c-bg);
}

body.sc #js-peoples .child-dele {
  display: inline-block;
  vertical-align: middle;
  width: 28px;
  height: 28px;
  margin-left: 8px;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  background: rgba(220, 38, 38, 0.12);
  border: none;
  transition: background 0.2s;
}

body.sc #js-peoples .child-dele::before {
  content: '\d7';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-size: 18px;
  line-height: 1;
  color: #b91c1c;
  font-weight: 600;
}

body.sc #js-peoples .child-dele:hover {
  background: rgba(220, 38, 38, 0.22);
}

body.sc #js-peoples .dele-room {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(220, 38, 38, 0.12);
}

body.sc #js-peoples .dele-room::before {
  content: '\d7';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-size: 18px;
  color: #b91c1c;
  font-weight: 600;
}

body.sc #js-peoples .clp-buttons {
  position: relative;
  padding: 16px 20px 20px;
  border-top: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  background: var(--c-bg);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

body.sc #js-peoples .js-closepersons {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  cursor: pointer;
  z-index: 60;
  transition: background 0.2s, border-color 0.2s;
}

body.sc #js-peoples .js-closepersons::before {
  content: '\d7';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  font-size: 22px;
  line-height: 1;
  color: var(--c-dark);
  font-weight: 400;
}

body.sc #js-peoples .js-closepersons:hover {
  background: var(--c-border);
}

body.sc #js-peoples .js-sendpersons.clp-button,
body.sc #js-peoples .clp-button {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px !important;
  background: var(--c-gold) !important;
  color: var(--c-dark) !important;
  border-radius: 100px !important;
  cursor: pointer;
  text-align: center;
  margin: 0 !important;
  width: 100%;
  box-sizing: border-box;
  border: none;
  display: block;
  transition: filter 0.2s, transform 0.15s;
}

body.sc #js-peoples .js-sendpersons.clp-button:hover,
body.sc #js-peoples .clp-button:hover {
  filter: brightness(1.03);
}

body.sc #js-peoples .clp-addroom,
body.sc #js-peoples .js-addroom {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-muted);
  cursor: pointer;
  padding: 8px 0 4px;
  text-align: center;
  transition: color 0.2s;
}

body.sc #js-peoples .clp-addroom:hover,
body.sc #js-peoples .js-addroom:hover {
  color: var(--c-dark);
}

@keyframes sc-lookatme {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

body.sc .js-addroom.lookatme {
  animation: sc-lookatme 0.75s ease-in-out infinite;
  color: var(--c-dark) !important;
}

/* Calendar/peoples overlay backdrop */
.sc-booking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.3);
  z-index: 9999;
  backdrop-filter: blur(4px);
  display: none;
}
.sc-booking-overlay.active {
  display: block;
}

/* ==========================================================================
   VIDEO / MOMENTS (Scapia-style reels)
   ========================================================================== */
.sc-moments.sc-reels {
  padding: 100px 0;
  background: var(--c-bg-soft);
}
.sc-moments__intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}
.sc-moments__title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--c-dark);
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}
.sc-moments__subtitle {
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-muted);
  margin: 0;
}
.sc-moments__swiper.swiper-reels {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.sc-moments__card {
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--c-white);
  box-shadow: var(--shadow-md);
}
.sc-moments__media {
  position: relative;
  border-radius: var(--radius-xl);
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .sc-moments__media {
    aspect-ratio: 16 / 9;
  }
}
.sc-moments__figure {
  margin: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.sc-moments__video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.sc-moments__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-xl);
}
.sc-moments .playb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  box-shadow: 0 4px 24px rgba(0,0,0,.15);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: none;
  padding: 0;
  font: inherit;
}
.sc-moments .playb::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent var(--c-dark);
  margin-left: 4px;
}
.sc-moments .playb:hover {
  transform: translate(-50%,-50%) scale(1.08);
  background: var(--c-white);
}
.sc-moments figure.playing .playb {
  opacity: 0;
  pointer-events: none;
}
/* Po autostarte zo scrollu je video stlmené (autoplay policy) — tlačidlo nech ostane na zapnutie zvuku */
.sc-moments figure.playing.sc-moments__figure--muted-autoplay .playb {
  opacity: 1;
  pointer-events: auto;
}
.sc-moments__cta {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  font-size: 12px;
  padding: 8px 14px;
}
.sc-moments__nav {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  justify-content: center;
}
.sc-reels .swiper-slide {
  width: 100%;
  box-sizing: border-box;
}
.sc-reels .onelink .img {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.sc-reels figure.box.vi {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.sc-reels .button-next,
.sc-reels .button-prev {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--c-bg);
}
.sc-reels .button-next:hover,
.sc-reels .button-prev:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
}
.sc-reels .button-next::after {
  content: '\2192';
  font-size: 16px;
  color: var(--c-text);
}
.sc-reels .button-prev::after {
  content: '\2190';
  font-size: 16px;
  color: var(--c-text);
}
.sc-reels .button-next:hover::after,
.sc-reels .button-prev:hover::after {
  color: var(--c-white);
}

/* ==========================================================================
   GALLERY / IMAGE GRID (moments section)
   ========================================================================== */
.sc-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 12px;
}
.sc-gallery__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition);
}
.sc-gallery__item:hover {
  transform: scale(1.02);
}
.sc-gallery__item--tall {
  grid-row: span 2;
}
.sc-gallery__item--wide {
  grid-column: span 2;
}

/* ==========================================================================
   BOOKING FORM RESET (CMS-generated elements)
   ========================================================================== */
.homepage-book-panel {
  position: static;
  width: auto;
  background: transparent;
  padding: 0;
  transform: none;
}
.homepage-book-panel #rooms-filter {
  background: transparent;
  padding: 0;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.sc-text-center { text-align: center; }
.sc-text-muted { color: var(--c-muted); }
.sc-mb-0 { margin-bottom: 0; }
.sc-mt-40 { margin-top: 40px; }
.sc-hidden { display: none !important; }

/* ==========================================================================
   ROOMS LIST (Scapia „Trips“)
   ========================================================================== */
.sc-trips-page {
  background: var(--c-bg);
}
/* Hero v šírke .sc-container (ako Scapia Trips), nie full-bleed */
.sc-trips-hero {
  position: relative;
  padding: var(--space-3) 0 var(--space-1);
  color: #fff;
  background: var(--c-bg);
}
.sc-trips-hero__frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
}
.sc-trips-hero__swiper {
  width: 100%;
  min-height: min(40vh, 440px);
}
.sc-trips-hero__swiper .swiper-slide {
  height: auto;
  min-height: min(40vh, 440px);
}
.sc-trips-hero__slide,
.sc-trips-hero__single {
  position: relative;
  min-height: min(40vh, 440px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.sc-trips-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 15, 32, 0.25) 0%, rgba(5, 10, 22, 0.78) 100%);
  pointer-events: none;
}
.sc-trips-hero__content {
  position: relative;
  z-index: 2;
  padding: 40px 28px 48px;
  max-width: 640px;
}
.sc-trips-hero__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
  line-height: var(--lh-tight);
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
  color: var(--c-bg) !important;
}
.sc-trips-hero__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: var(--lh-body);
  margin: 0 0 20px;
  color: rgba(255,255,255,.88);
  text-shadow: 0 1px 12px rgba(0,0,0,.3);
}
.sc-trips-hero__pagination {
  bottom: 16px !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
}
.sc-trips-hero__pagination .swiper-pagination-bullet {
  background: rgba(255,255,255,.45);
  opacity: 1;
}
.sc-trips-hero__pagination .swiper-pagination-bullet-active {
  background: var(--c-gold);
}

.sc-trips {
  padding: var(--space-5) 0 var(--space-7);
}
.sc-trips-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-4);
}
.sc-trips-head__title {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  color: var(--c-dark);
  margin: 0 0 var(--space-2);
  letter-spacing: -0.03em;
  line-height: var(--lh-tight);
}
.sc-trips-head__text {
  font-size: 16px;
  line-height: var(--lh-body);
  color: var(--c-muted);
  margin: 0;
}

.sc-trips-filter-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 0 0 20px;
  padding: 15px 22px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--c-dark);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: 100px;
  cursor: pointer;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.sc-trips-filter-toggle__badge {
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--c-dark);
  background: var(--c-gold);
  border-radius: 100px;
  line-height: 1;
}
.sc-trips-filter-toggle:hover {
  border-color: var(--c-gold);
  box-shadow: var(--shadow-md);
}
.sc-trips-filter-toggle:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 2px;
}

.sc-trips-layout {
  display: grid;
  grid-template-columns: minmax(260px, 300px) 1fr;
  gap: 32px 40px;
  align-items: start;
}

.sc-trips-sidebar {
  position: sticky;
  top: 100px;
}
.sc-trips-filter {
  position: relative;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 28px 22px 30px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.sc-trips-filter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-dark) 0%, var(--c-gold) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  transition: height 0.2s ease, box-shadow 0.2s ease;
}
.sc-trips-filter--active::before {
  height: 5px;
  box-shadow: 0 3px 14px rgba(216, 187, 100, 0.45);
}
.sc-trips-filter--active {
  border-color: rgba(20, 43, 76, 0.18);
  box-shadow: 0 6px 24px rgba(20, 43, 76, 0.1);
}
.sc-trips-filter__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 22px;
  padding-bottom: 16px;
  color: var(--c-dark);
  letter-spacing: -0.02em;
  transition: border-color 0.2s ease;
}
.sc-trips-filter__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 9px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  color: var(--c-dark);
  background: linear-gradient(145deg, #e8d48a 0%, var(--c-gold) 100%);
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(216, 187, 100, 0.45);
}
.sc-trips-filter__group {
  margin-bottom: 22px;
}
.sc-trips-filter__group:last-of-type {
  margin-bottom: 18px;
}
.sc-trips-filter__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-dark);
  opacity: 0.65 !important;
  margin: 0 0 10px !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.sc-trips-filter__group--active > .sc-trips-filter__label {
  opacity: 1;
  color: var(--c-dark);
}
.sc-trips-filter__group--active > .sc-trips-filter__label::after {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 0 2px rgba(216, 187, 100, 0.35);
}
.sc-trips-filter__group--active .sc-trips-filter__select {
  border-color: rgba(20, 43, 76, 0.35) !important;
  background-color: rgba(216, 187, 100, 0.14) !important;
  box-shadow: inset 0 0 0 1px rgba(216, 187, 100, 0.55) !important;
}
.sc-trips-filter__checks.sc-trips-filter__group--active {
  padding: 12px 10px 10px;
  margin-left: -10px;
  margin-right: -10px;
  border-radius: var(--radius-md);
  background: rgba(216, 187, 100, 0.08);
  border: 1px solid rgba(216, 187, 100, 0.35);
}
.sc-trips-filter__select {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  line-height: 1.45 !important;
  padding: 13px 42px 13px 16px !important;
  margin: 0 !important;
  border-radius: var(--radius-md) !important;
  border: 1px solid var(--c-border) !important;
  font-family: var(--font) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  background-color: var(--c-bg-soft) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23142B4C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 18px 18px !important;
  color: var(--c-dark) !important;
  cursor: pointer;
  -webkit-appearance: none !important;
  appearance: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.sc-trips-filter__select:hover {
  border-color: rgba(20, 43, 76, 0.28) !important;
  background-color: var(--c-bg) !important;
}
.sc-trips-filter__select:focus {
  outline: none !important;
  border-color: var(--c-gold) !important;
  box-shadow: 0 0 0 3px rgba(216, 187, 100, 0.28) !important;
  background-color: var(--c-bg) !important;
}
.sc-trips-filter__checks {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sc-trips-filter .sc-trips-check {
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.sc-trips-filter .sc-trips-check:hover:not(:has(input:checked)) {
  background: rgba(20, 43, 76, 0.045);
}
.sc-trips-filter .sc-trips-check:has(input:checked) {
  background: rgba(216, 187, 100, 0.16);
  box-shadow: inset 3px 0 0 0 var(--c-gold);
}
.sc-trips-check .control {
  font-size: 14px;
  color: var(--c-text);
}
/* Natívny checkbox: skrytie (globálne pravidlá na stránke nie sú vždy spoľahlivé; inak vidno dvojité políčka) */
.sc-trips-filter .sc-trips-check input[type="checkbox"],
.sc-trips-filter .sc-trips-check input.checkbox {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  left: 0 !important;
  top: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  opacity: 0 !important;
  cursor: pointer;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background: transparent !important;
  box-shadow: none !important;
}
.sc-trips-filter .sc-trips-check input[type="checkbox"]:focus {
  outline: none !important;
}
.sc-trips-filter .sc-trips-check input[type="checkbox"]:focus-visible + .control__indicator {
  box-shadow: 0 0 0 2px var(--c-bg), 0 0 0 4px var(--c-gold);
}
/* Checkboxy v zozname: flex = vertikálne zarovnanie s textom */
.sc-trips-filter label.control--checkbox {
  max-width: none !important;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  margin-top: 0 !important;
  padding: 10px 10px 10px 8px;
  min-height: 0;
  cursor: pointer;
  border-radius: var(--radius-sm);
}
.sc-trips-filter label.control--checkbox span {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  padding-left: 0;
  line-height: 1.45;
  font-weight: 500;
  color: var(--c-dark);
  transition: color 0.2s ease, font-weight 0.2s ease;
}
.sc-trips-filter label.control--checkbox:hover span {
  color: var(--c-text);
}
.sc-trips-filter label.control--checkbox:has(input:checked) span {
  font-weight: 700;
  color: var(--c-dark);
}
.sc-trips-filter label.check_small .control__indicator {
  display: block !important;
  position: relative !important;
  left: auto !important;
  top: auto !important;
  transform: none;
  flex-shrink: 0;
  align-self: center;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 2px solid var(--c-border);
  background: var(--c-bg) !important;
  background-image: none !important;
  background-size: 0 !important;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
/* Fajka cez SVG (jemnejšia ako hrubé border „L“) */
.sc-trips-filter label.check_small .control__indicator:after {
  content: none !important;
  display: none !important;
}
.sc-trips-filter .control:hover input:not(:checked) ~ .control__indicator {
  border-color: rgba(20, 43, 76, 0.35);
  background-color: var(--c-bg-soft) !important;
  background-image: none !important;
}
.sc-trips-filter .control input:checked ~ .control__indicator,
.sc-trips-filter .control:hover input:checked ~ .control__indicator {
  background-color: var(--c-dark) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5.5 12.5l4 4 9-10'/%3E%3C/svg%3E") !important;
  background-size: 12px 12px !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-color: var(--c-dark) !important;
}
.sc-trips-filter input.submit,
.sc-trips-filter .submit,
.sc-trips-filter input[type="submit"] {
  width: 100%;
  margin-top: 12px;
  padding: 14px 22px !important;
  background: var(--c-dark) !important;
  color: var(--c-white) !important;
  border: none !important;
  border-radius: 100px !important;
  font-family: var(--font) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(20, 43, 76, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease, filter 0.2s;
}
.sc-trips-filter input.submit:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(20, 43, 76, 0.28);
}
.sc-trips-filter input.submit:active {
  transform: translateY(0);
}

.sc-trips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-3);
}
.sc-trips-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sc-trips-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.sc-trips-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}
.sc-trips-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--c-gold);
  color: var(--c-dark);
}
.sc-trips-card__body {
  padding: var(--space-2) var(--space-2) 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sc-trips-card__type {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-muted);
  margin: 0 0 6px;
  line-height: var(--lh-tight);
}
.sc-trips-card__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-dark);
  margin: 0 0 var(--space-1);
  line-height: var(--lh-tight);
}
.sc-trips-card__loc {
  font-size: 14px;
  line-height: var(--lh-body);
  color: var(--c-muted);
  margin: 0 0 var(--space-2);
  flex: 1;
}
.sc-trips-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}
.sc-trips-card__actions .sc-btn {
  flex: 1 1 auto;
  min-width: 120px;
  justify-content: center;
  text-align: center;
}

.sc-trips-empty {
  display: none;
  grid-column: 1 / -1;
  padding: 48px 24px;
  text-align: center;
  border-radius: var(--radius-xl);
  border: 1px dashed var(--c-border);
  background: var(--c-bg-soft);
}
.sc-trips-empty__inner p {
  margin: 0 0 16px;
  font-size: 16px;
  color: var(--c-muted);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1024px) {
  .sc-trips-layout {
    grid-template-columns: 1fr;
  }
  .sc-trips-sidebar {
    position: static;
    display: none;
  }
  .sc-trips-sidebar.open {
    display: block;
    animation: scFadeIn 0.25s ease;
  }
  .sc-trips-filter-toggle {
    display: flex;
  }
}
@keyframes scFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .sc-trips-grid {
    grid-template-columns: 1fr;
  }
  .sc-trips-hero {
    padding-top: 24px;
  }
  .sc-trips-hero__content {
    padding: 28px 20px 40px;
  }
}

/* --- Detail ubytovania (room.php), Scapia trip-style --- */
.sc-room-page {
  padding-bottom: 48px;
}
.sc-room-hero {
  padding-top: 24px;
  padding-bottom: 8px;
}
.sc-room-breadcrumb {
  font-size: 13px;
  color: var(--c-muted);
  margin-bottom: 16px;
}
.sc-room-breadcrumb a {
  color: var(--c-muted);
  text-decoration: none;
}
.sc-room-breadcrumb a:hover {
  color: var(--c-fg);
}
.sc-room-breadcrumb__sep {
  margin: 0 6px;
  opacity: 0.6;
}
.sc-room-titlerow {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 8px;
}
.sc-room-titlerow__main {
  flex: 0 1 auto;
  min-width: 0;
}
.sc-room-title {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--c-fg);
  letter-spacing: -0.02em;
  line-height: var(--lh-tight);
  max-width: 720px;
}
.sc-room-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  font-size: 14px;
  color: var(--c-muted);
}
.sc-room-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sc-room-meta__ico {
  display: flex;
  width: 18px;
  height: 18px;
  color: var(--c-fg);
  opacity: 0.7;
}
.sc-room-meta__ico svg {
  width: 100%;
  height: 100%;
}

.sc-room-gallery-wrap {
  margin-bottom: 32px;
}
.sc-room-gallery__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  min-height: 300px;
}
.sc-room-gallery__grid--single {
  grid-template-columns: 1fr;
}
.sc-room-gallery__hero {
  grid-column: 1;
  grid-row: 1;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  cursor: zoom-in;
  position: relative;
  min-height: 380px;
}
.sc-room-gallery__stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  grid-column: 2;
  grid-row: 1;
}
.sc-room-gallery__top {
  flex: 1 1 auto;
  min-height: 50%;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  cursor: zoom-in;
}
.sc-room-gallery__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex: 1 1 auto;
  min-height: 130px;
}
.sc-room-gallery__sub {
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  cursor: zoom-in;
  min-height: 120px;
}
.sc-room-gallery__sub--extra {
  display: none;
}
.sc-room-gallery__pair .sc-room-gallery__sub:only-child {
  grid-column: 1 / -1;
}
.sc-room-gallery__grid--single .sc-room-gallery__hero {
  min-height: min(52vh, 520px);
}
.sc-room-lg-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.sc-room-gallery__hero .play {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}
.sc-room-gallery__hero .play::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-35%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #fff;
}
.sc-room-gallery__count {
  display: none;
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  pointer-events: none;
}
.sc-room-gallery__rating {
  display: none;
}
.sc-room-stars--sm {
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 1;
}

.sc-room-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: start;
}
.sc-room-main {
  min-width: 0;
}
.sc-room-sidebar {
  position: sticky;
  top: 50px;
  margin-top: 5px;
}
.sc-room-section {
  margin-bottom: var(--space-4);
  padding-top: var(--space-1);
}
.sc-room-h2 {
  margin: var(--space-3) 0 var(--space-2);
  font-size: clamp(1.35rem, 2.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--c-fg);
}
.sc-room-main > .sc-room-section:first-child .sc-room-h2 {
  margin-top: 0;
}
.sc-room-h3 {
  margin: 20px 0 12px;
  font-size: 1rem;
  font-weight: 700;
}
.sc-room-lead {
  margin: 0 0 16px;
  color: var(--c-muted);
  font-size: 15px;
}

.sc-room-pros > .lightgallery:first-child {
  display: none;
}

.sc-room-prose {
  color: var(--c-muted);
  line-height: var(--lh-body);
  font-size: 16px;
}
.sc-room-prose p {
  margin: 0 0 1em;
}

.sc-room-prose > .lightgallery:first-child {
  display: none;
}

.sc-room-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
}
.sc-room-tags__item {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 13px;
  font-weight: 600;
}

.sc-room-gallery-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.sc-room-gallery-strip__thumb {
  width: 180px;
  height: 135px;
  border: none;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  cursor: pointer;
  padding: 0;
}

.sc-room-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.sc-room-testimonial {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  background: var(--c-bg);
}
.sc-room-testimonial__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.sc-room-testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}
.sc-room-testimonial__name {
  font-weight: 700;
  font-size: 15px;
}
.sc-room-testimonial__date {
  font-size: 13px;
  color: var(--c-muted);
}
.sc-room-testimonial__text {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-muted);
}
.sc-room-testimonial__foot {
  border-top: 1px solid var(--c-border);
  padding-top: 12px;
  font-size: 14px;
  color: var(--c-muted);
}
.sc-room-stars {
  letter-spacing: 2px;
  margin-right: 8px;
}
.sc-room-stars--gold {
  color: #e6a800;
}

.sc-room-calendar__inner {
  margin-top: 8px;
}
.sc-room-gotobook {
  margin-top: 16px;
}

.sc-room-map__gps {
  font-size: 14px;
  color: var(--c-muted);
  margin-bottom: 12px;
}
.sc-room-map__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.sc-room-map__canvas {
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  z-index: 0;
}
.sc-room-video {
  border-radius: var(--radius-lg);
  max-height: 480px;
}

.sc-room-bookcard {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 24px;
  background: var(--c-bg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}
.sc-room-bookcard__from {
  margin: 0;
  font-size: 13px;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sc-room-bookcard__price {
  margin: 4px 0 0;
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-fg);
}
.sc-room-bookcard__per {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--c-muted);
}
.sc-room-bookcard__rating {
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--c-muted);
}
.sc-room-bookcard__rating-text {
  margin-left: 6px;
}
.sc-room-bookcard__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.sc-room-bookcard__cta .sc-btn {
  justify-content: center;
}

.sc-room-facilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 12px;
  align-items: stretch;
}
.sc-room-facilities .pctgrm {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  min-width: 0;
}
.sc-room-facilities .pctgrm_txt {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.35;
}
.sc-room-facilities--main {
  margin-top: 8px;
}
.sc-room-facilities--collapsible:not(.is-expanded) .pctgrm:nth-child(n + 9) {
  display: none;
}
@media (max-width: 520px) {
  .sc-room-facilities--collapsible:not(.is-expanded) .pctgrm:nth-child(n + 5) {
    display: none;
  }
}
.sc-room-facilities-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-muted);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}
.sc-room-facilities-toggle:hover {
  color: var(--c-dark);
}
.sc-room-facilities-toggle:focus-visible {
  outline: 2px solid var(--c-dark);
  outline-offset: 2px;
}
.sc-room-facilities-toggle .sc-room-facilities-toggle__less {
  display: none;
}
.sc-room-facilities-toggle[aria-expanded="true"] .sc-room-facilities-toggle__more {
  display: none;
}
.sc-room-facilities-toggle[aria-expanded="true"] .sc-room-facilities-toggle__less {
  display: inline;
}
@media (min-width: 521px) {
  .sc-room-facilities-toggle--mob-only {
    display: none !important;
  }
}
.sc-room-facilities-main .sc-room-tags {
  margin-top: 20px;
}
.sc-room-facilities__fallback {
  margin: 0;
  padding-left: 1.2em;
  color: var(--c-muted);
  font-size: 14px;
}
.sc-room-trust {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.5;
}

.sc-room-explore {
  margin-top: var(--space-5);
  padding: var(--space-6) 0;
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-border);
}
.sc-room-explore__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sc-room-explore__head {
  width: 100%;
  max-width: 560px;
  text-align: center;
  margin-bottom: var(--space-5);
}
.sc-room-explore__title {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: var(--lh-tight);
}
.sc-room-explore__sub {
  margin: var(--space-2) 0 0;
  max-width: 100%;
  color: var(--c-muted);
  font-size: 16px;
  line-height: var(--lh-body);
}
.sc-room-explore__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  align-items: stretch;
}
.sc-room-explore-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-bg);
}
.sc-room-explore-card__media {
  display: block;
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  flex-shrink: 0;
}
.sc-room-explore-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.sc-room-explore-card__body {
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: var(--space-2);
  flex: 1;
}
.sc-room-explore-card__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: var(--lh-tight);
  width: 100%;
}
.sc-room-explore-card__body .sc-btn {
  margin-top: var(--space-1);
  min-width: 148px;
  justify-content: center;
}

@media (max-width: 1100px) and (min-width: 901px) {
  .sc-room-explore__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin-inline: auto;
  }
}

.sc-room-mobbook,
#tobook.sc-room-mobbook {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  z-index: 999;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 12px;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--c-border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}
@media (min-width: 1025px) {
  .sc-room-mobbook {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .sc-room-layout {
    grid-template-columns: 1fr;
  }
  .sc-room-sidebar {
    order: -1;
    position: static;
    top: auto;
  }
  .sc-room-sidebar .sc-room-bookcard {
    max-width: 480px;
    margin: 0 auto 24px;
  }
}

@media (max-width: 768px) {
  body.sc.room,
  body.sc .sc-room-page {
    overflow-x: hidden;
    max-width: 100%;
  }
  .sc-room-page {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }
  .sc-room-hero {
    padding-top: 8px;
    padding-bottom: 4px;
  }
  .sc-room-breadcrumb {
    font-size: 12px;
    margin-bottom: 10px;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: linear-gradient(to right, #000 calc(100% - 24px), transparent);
  }
  .sc-room-breadcrumb::-webkit-scrollbar {
    display: none;
  }
  .sc-room-titlerow {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 0;
  }
  .sc-room-titlerow__main {
    flex: 0 0 auto;
  }
  .sc-room-title {
    font-size: clamp(1.5rem, 6.5vw, 1.85rem);
    line-height: 1.15;
  }
  .sc-room-meta {
    gap: 8px 14px;
    font-size: 13px;
  }
  .sc-room-sidebar {
    display: none;
  }
  .sc-room-gallery-wrap {
    margin-bottom: 20px;
    padding: 0 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .sc-room-gallery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .sc-room-gallery__grid--single {
    grid-template-columns: 1fr;
  }
  .sc-room-gallery__hero {
    grid-column: 1 / -1;
    min-height: clamp(210px, 58vw, 280px);
    border-radius: var(--radius-md);
  }
  .sc-room-gallery__grid--single .sc-room-gallery__hero {
    min-height: clamp(220px, 62vw, 320px);
    border-radius: var(--radius-md);
  }
  .sc-room-gallery__count {
    display: inline-flex;
    align-items: center;
  }
  .sc-room-gallery__rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.68);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, 0.95);
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.01em;
    pointer-events: none;
    max-width: calc(100% - 20px);
  }
  .sc-room-gallery__rating-text {
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
  }
  .sc-room-gallery__hero:has(.play) .sc-room-gallery__count {
    left: 12px;
    right: auto;
  }
  .sc-room-gallery__stack {
    display: contents;
  }
  .sc-room-gallery__top {
    min-height: clamp(96px, 26vw, 132px);
    border-radius: var(--radius-md);
  }
  .sc-room-gallery__pair {
    display: contents;
  }
  .sc-room-gallery__sub {
    min-height: clamp(96px, 26vw, 132px);
    border-radius: var(--radius-md);
  }
  .sc-room-gallery__sub--extra {
    display: block;
  }
  .sc-room-gallery__grid:not(.sc-room-gallery__grid--has-extra) .sc-room-gallery__sub:last-of-type {
    grid-column: 1 / -1;
  }
  .sc-room-gallery__top:only-child {
    grid-column: 1 / -1;
  }
  .sc-room-section:has(.sc-room-gallery-strip) {
    display: none;
  }
  .sc-room-layout {
    gap: 0;
  }
  .sc-room-section {
    margin-bottom: 32px;
    padding-top: 4px;
  }
  .sc-room-h2 {
    font-size: clamp(1.3rem, 5.2vw, 1.5rem);
    margin-top: 24px;
    margin-bottom: 16px;
    line-height: 1.25;
  }
  .sc-room-main > .sc-room-section:first-child .sc-room-h2 {
    margin-top: 0;
  }
  .sc-room-prose {
    font-size: 15px;
  }
  .sc-room-testimonials {
    grid-template-columns: 1fr;
  }
  .sc-room-map__actions {
    flex-direction: column;
  }
  .sc-room-map__actions .sc-btn {
    width: 100%;
    justify-content: center;
  }
  .sc-room-map__canvas {
    height: min(52vw, 280px);
  }
  .sc-room-mobbook {
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  }
  .sc-room-mobbook .sc-btn {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    border-radius: 12px;
  }
  body.sc .sc-room-page #calendar-block.sc-room-cal__shell {
    padding: 48px 8px 12px !important;
    border-radius: var(--radius-lg);
  }
  body.sc .sc-room-page #calendar-block.sc-room-cal__shell #js-cb-prev {
    top: 8px;
    left: 6px !important;
    right: auto !important;
  }
  body.sc .sc-room-page #calendar-block.sc-room-cal__shell #js-cb-next {
    top: 8px;
    right: 6px !important;
    left: auto !important;
  }
  body.sc .sc-room-page #calendar-block.sc-room-cal-inline #js-calendar {
    height: 420px !important;
    min-height: 420px;
    overflow: hidden !important;
    max-width: 100%;
  }
  body.sc .sc-room-page .sc-room-flexicalendar,
  body.sc .sc-room-page .sc-room-calendar__inner {
    max-width: 100%;
    overflow: hidden;
  }
  body.sc .sc-room-page .sc-room-layout,
  body.sc .sc-room-page .sc-container {
    max-width: 100%;
    overflow-x: hidden;
  }
  body.sc .sc-room-page #calendar-block.sc-room-cal-inline .month-block,
  body.sc .sc-room-page #hgbkf.webcal .month-block {
    padding: 12px 8px 14px;
  }
  body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day,
  body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-empty {
    min-height: 46px !important;
    font-size: 14px;
    padding: 6px 1px 4px !important;
  }
  body.sc .sc-room-page #gotobook a.search.popup,
  body.sc .sc-room-page #gotobook .search.popup {
    width: 100%;
    flex: 1 1 100%;
  }
  .sc-room-explore {
    margin-top: var(--space-4);
    padding: var(--space-4) 0;
  }
  .sc-room-explore__head {
    margin-bottom: var(--space-3);
    padding-inline: 4px;
  }
  .sc-room-explore__title {
    font-size: clamp(1.35rem, 5.5vw, 1.65rem);
  }
  .sc-room-explore__sub {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .sc-room-explore {
    padding: var(--space-5) 0;
  }
  .sc-room-explore__head {
    margin-bottom: var(--space-4);
  }
  .sc-room-explore__grid {
    grid-template-columns: 1fr;
    gap: var(--space-2);
    max-width: 420px;
    margin-inline: auto;
  }
  .sc-room-explore-card__body .sc-btn {
    width: 100%;
    max-width: 240px;
  }
  .sc-room-titlerow {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- Detail izby: kalendár + výber dátumov + kontaktný formulár (Scapia) --- */
/* Mesiace škálujeme podľa šírky stĺpca (container queries) – bez horizont. scrollu */
body.sc .sc-room-page #calendar-block.sc-room-cal__shell .sc-room-cal__viewport {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  z-index: 2;
  container-type: inline-size;
  container-name: room-cal;
}
body.sc .sc-room-page #calendar-block.sc-room-cal__shell #calendar-wrapper {
  width: auto;
  min-width: 0;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 12px;
  padding: 0 2px 4px;
  box-sizing: border-box;
  position: relative;
  top: auto;
  left: auto;
}
/* Mesiace sú v HTML vnútri #hgbkf; display:contents = priame deti vo flex riadku */
body.sc .sc-room-page #calendar-block.sc-room-cal__shell #hgbkf.webcal {
  display: contents;
}
body.sc .sc-room-page #calendar-block.sc-room-cal__shell #js-cb-prev,
body.sc .sc-room-page #calendar-block.sc-room-cal__shell #js-cb-next {
  position: absolute !important;
  top: 10px;
  left: auto !important;
  transform: none !important;
  flex: none;
  width: 40px;
  min-width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  z-index: 12;
  cursor: pointer;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  background: var(--c-bg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  -webkit-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}
body.sc .sc-room-page #calendar-block.sc-room-cal__shell #js-cb-next {
  right: 10px !important;
}
body.sc .sc-room-page #calendar-block.sc-room-cal__shell #js-cb-prev {
  right: 54px !important;
}
body.sc .sc-room-page #calendar-block.sc-room-cal__shell #js-cb-prev:hover,
body.sc .sc-room-page #calendar-block.sc-room-cal__shell #js-cb-next:hover {
  background: var(--c-bg-soft);
  border-color: rgba(7, 33, 80, 0.25);
}
body.sc .sc-room-page #calendar-block.sc-room-cal__shell #js-cb-prev::before,
body.sc .sc-room-page #calendar-block.sc-room-cal__shell #js-cb-next::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border: none;
  border-left: 2px solid var(--c-dark);
  border-bottom: 2px solid var(--c-dark);
}
body.sc .sc-room-page #calendar-block.sc-room-cal__shell #js-cb-prev::before {
  transform: translate(-50%, -50%) rotate(45deg);
  margin-left: 3px;
}
body.sc .sc-room-page #calendar-block.sc-room-cal__shell #js-cb-next::before {
  transform: translate(-50%, -50%) rotate(-135deg);
  margin-right: 3px;
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline #js-calendar {
  height: 480px !important;
  min-height: 480px;
  border-bottom: none;
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .month-block,
body.sc .sc-room-page #hgbkf.webcal .month-block {
  float: none;
  flex: 0 0 calc((100cqw - 12px) / 2);
  width: calc((100cqw - 12px) / 2);
  max-width: calc((100cqw - 12px) / 2);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 14px 10px 16px;
  margin: 0;
  box-sizing: border-box;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline #js-calendar .mb-content {
  width: 100%;
  max-width: none;
  float: none;
  clear: none;
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-header {
  width: 100%;
  max-width: none;
  opacity: 1;
  display: flex;
  margin-bottom: 6px;
  padding: 0 2px;
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-title {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 12px;
  padding: 0 8px 10px;
  color: var(--c-dark);
  letter-spacing: -0.02em;
  border-bottom: 2px solid rgba(197, 160, 89, 0.35);
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .caldayname {
  flex: 1 1 14.28%;
  width: auto !important;
  float: none !important;
  height: auto !important;
  min-height: 0 !important;
  line-height: 1.2 !important;
  font-size: 10px !important;
  font-weight: 700;
  color: var(--c-muted) !important;
  opacity: 1 !important;
  padding: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day,
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-empty {
  width: 14.28%;
  height: auto !important;
  min-height: 52px !important;
  line-height: 1.1 !important;
  padding: 7px 2px 5px !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  float: left;
  box-sizing: border-box;
  font-size: 15px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--c-dark);
  border-radius: 10px;
  border: 1px solid transparent;
  position: relative;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.12s ease;
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day > span,
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day > .mb-day__price {
  display: block;
  font-size: 7px;
  font-weight: 600;
  line-height: 1.1;
  min-height: 8px;
  max-width: 100%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 1;
  color: var(--c-gold);
  letter-spacing: -0.02em;
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day__price--empty {
  opacity: 0;
  pointer-events: none;
  user-select: none;
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.selectable {
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(197, 160, 89, 0.25);
  background: rgba(197, 160, 89, 0.06);
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.selectable:hover {
  background: rgba(197, 160, 89, 0.2);
  border-color: rgba(197, 160, 89, 0.35);
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.selectable:active {
  transform: scale(0.97);
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.past,
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.past.nonselectable,
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.past.unavailable,
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.past.selectable,
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.past.minstay,
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.past.nostart,
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.past.frsp {
  cursor: default;
  pointer-events: none;
  color: rgba(26, 43, 75, 0.32) !important;
  background: rgba(26, 43, 75, 0.06) !important;
  background-image: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
  opacity: 1 !important;
  font-weight: 600;
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.past.selectable:hover,
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.past.selectable:active {
  background: rgba(26, 43, 75, 0.06) !important;
  border-color: transparent !important;
  transform: none;
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.past > span,
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.past > .mb-day__price {
  color: transparent !important;
  text-decoration: none !important;
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.past.today {
  border-color: transparent !important;
  box-shadow: none !important;
  background: rgba(26, 43, 75, 0.06) !important;
  background-image: none !important;
  font-weight: 600;
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.today {
  border-color: var(--c-dark);
  box-shadow: inset 0 0 0 1px rgba(26, 43, 75, 0.08);
  font-weight: 800;
  background-image: radial-gradient(circle at calc(100% - 7px) 7px, var(--c-gold) 2.5px, transparent 2.5px);
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.today.selectable {
  background-color: rgba(197, 160, 89, 0.06);
  background-image: radial-gradient(circle at calc(100% - 7px) 7px, var(--c-gold) 2.5px, transparent 2.5px);
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.today.selectable:hover {
  background-color: rgba(197, 160, 89, 0.2);
  background-image: radial-gradient(circle at calc(100% - 7px) 7px, var(--c-gold) 2.5px, transparent 2.5px);
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.startdate,
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.enddate {
  background: var(--c-gold) !important;
  color: var(--c-dark) !important;
  border-color: var(--c-gold) !important;
  font-weight: 800;
  z-index: 2;
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.startdate > span,
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.enddate > span,
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.startdate > .mb-day__price,
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.enddate > .mb-day__price {
  color: rgba(26, 43, 75, 0.85);
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.selecteddays {
  background: rgba(197, 160, 89, 0.22) !important;
  border-color: rgba(197, 160, 89, 0.28);
  color: var(--c-dark) !important;
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.nonselectable,
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.unavailable {
  opacity: 0.38;
  cursor: default;
  color: var(--c-muted) !important;
  background: transparent !important;
  border-color: transparent !important;
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.nonselectable > span,
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.unavailable > span,
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.nonselectable > .mb-day__price,
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.unavailable > .mb-day__price {
  color: var(--c-muted);
  text-decoration: line-through;
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.nonselectable > .mb-day__price--empty,
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.unavailable > .mb-day__price--empty {
  text-decoration: none;
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.minstay {
  background: rgba(26, 43, 75, 0.06) !important;
  opacity: 1 !important;
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.nostart {
  box-shadow: inset 0 -4px 0 -2px rgba(197, 160, 89, 0.55);
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day.nostart.today {
  box-shadow: inset 0 0 0 1px rgba(26, 43, 75, 0.08), inset 0 -4px 0 -2px rgba(197, 160, 89, 0.55);
}
body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-empty {
  min-height: 52px;
  opacity: 0.2;
  font-weight: 600;
  border: 1px dashed transparent;
}

/* Doplnenie o špecifickejšie pravidlá pre ikony (mask) na detaile izby */
body.sc .sc-room-page .pctgrm {
  display: flex;
  align-items: center;
  gap: 12px;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  text-align: left;
  margin-bottom: 0;
  padding-right: 0;
  min-width: 0;
}

body.sc .sc-room-page .pctgrm_txt {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.35;
}

body.sc .sc-room-page .pctgrm_img {
  flex: 0 0 auto;
  position: relative;
  width: 40px;
  height: 38px;
  margin: 0;
  top: 0;
  transform: none;
  left: 0;
  background-color: var(--c-dark);
  opacity: 1;
  -webkit-mask-size: 26px !important;
  mask-size: 26px !important;
  -webkit-mask-position: 50% 50%;
  mask-position: 50% 50%;
}
@media (max-width: 520px) {
  .sc-room-facilities,
  body.sc .sc-room-page .sc-room-facilities {
    grid-template-columns: 1fr;
  }
}

body.sc .sc-room-page .sc-room-flexicalendar #gotobook,
body.sc .sc-room-page #gotobook.sc-room-gotobook {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 12px 16px;
  width: 100% !important;
  max-width: 100% !important;
  margin: 20px 0 0 !important;
  padding: 16px 18px !important;
  position: relative !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  background: var(--c-bg-soft) !important;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: none !important;
}
body.sc .sc-room-page #gotobook .checkin,
body.sc .sc-room-page #gotobook .checkout {
  flex: 1 1 200px;
  min-width: 0;
  margin: 0 !important;
  padding: 12px 14px !important;
  background: var(--c-bg) !important;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  text-align: left !important;
}
body.sc .sc-room-page #gotobook .checkin p,
body.sc .sc-room-page #gotobook .checkout p {
  margin: 0 0 6px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-muted) !important;
  opacity: 1 !important;
  font-family: var(--font) !important;
}
body.sc .sc-room-page #gotobook .checkin .date,
body.sc .sc-room-page #gotobook .checkout .date {
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 0 !important;
  font-family: var(--font) !important;
  color: var(--c-fg) !important;
}
body.sc .sc-room-page #gotobook .checkin .date span,
body.sc .sc-room-page #gotobook .checkout .date span {
  color: var(--c-fg);
}
body.sc .sc-room-page #gotobook a.search.popup,
body.sc .sc-room-page #gotobook .search.popup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  min-height: 46px;
  padding: 0 22px !important;
  margin: 0 !important;
  background: var(--c-gold) !important;
  color: var(--c-dark) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  border-radius: 100px !important;
  cursor: pointer;
  font-family: var(--font) !important;
  line-height: 46px !important;
  border: none;
  transition: var(--transition);
  text-align: center;
  box-sizing: border-box;
}
body.sc .sc-room-page #gotobook a.search.popup:hover,
body.sc .sc-room-page #gotobook .search.popup:hover {
  filter: brightness(0.96);
}
body.sc .sc-room-page #gotobook .cancel {
  margin: 0 !important;
  padding: 10px 16px !important;
  height: auto !important;
  line-height: 1.3 !important;
  font-size: 13px !important;
  font-weight: 600;
  color: var(--c-muted) !important;
  background: transparent !important;
  text-decoration: underline;
  cursor: pointer;
  opacity: 1 !important;
  font-family: var(--font) !important;
}

/* Kontaktný formulár (contacForm) */
.sc-room-contactblock .contact_form,
.sc-room-formsmall .contact_form {
  max-width: 520px;
  margin-top: 8px;
}
.sc-room-contactblock .contact_form .form_block,
.sc-room-formsmall .contact_form .form_block {
  margin-bottom: 14px;
}
.sc-room-contactblock .contact_form .form_block:last-child,
.sc-room-formsmall .contact_form .form_block:last-child {
  margin-bottom: 0;
}
.sc-room-contactblock .contact_form input.formitem,
.sc-room-formsmall .contact_form input.formitem,
.sc-room-contactblock .contact_form textarea.formitem,
.sc-room-formsmall .contact_form textarea.formitem,
.sc-room-contactblock .contact_form select.formitem,
.sc-room-formsmall .contact_form select.formitem {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font);
  line-height: 1.4;
  color: var(--c-text);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.sc-room-contactblock .contact_form textarea.formitem,
.sc-room-formsmall .contact_form textarea.formitem {
  min-height: 140px;
  resize: vertical;
}
.sc-room-contactblock .contact_form input.formitem:focus,
.sc-room-formsmall .contact_form input.formitem:focus,
.sc-room-contactblock .contact_form textarea.formitem:focus,
.sc-room-formsmall .contact_form textarea.formitem:focus {
  outline: none;
  border-color: rgba(7, 33, 80, 0.35);
  box-shadow: 0 0 0 3px rgba(7, 33, 80, 0.08);
}
.sc-room-contactblock .contact_form input.form_error,
.sc-room-formsmall .contact_form input.form_error,
.sc-room-contactblock .contact_form textarea.form_error,
.sc-room-formsmall .contact_form textarea.form_error {
  border-color: #c62828;
}
.sc-room-contactblock .contact_form .btn,
.sc-room-formsmall .contact_form .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  margin-top: 4px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  color: var(--c-dark);
  background: var(--c-gold);
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}
.sc-room-contactblock .contact_form .btn:hover,
.sc-room-formsmall .contact_form .btn:hover {
  filter: brightness(0.96);
}

@media (max-width: 640px) {
  body.sc .sc-room-page #calendar-block.sc-room-cal-inline #js-calendar {
    height: 440px !important;
    min-height: 440px;
  }
  body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day,
  body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-empty {
    min-height: 48px !important;
    font-size: 14px;
  }
  body.sc .sc-room-page #calendar-block.sc-room-cal-inline .mb-day > span {
    font-size: 8px;
  }
  body.sc .sc-room-page .sc-room-flexicalendar #gotobook,
  body.sc .sc-room-page #gotobook.sc-room-gotobook {
    flex-direction: column;
    align-items: stretch;
  }
  body.sc .sc-room-page #gotobook .checkin,
  body.sc .sc-room-page #gotobook .checkout {
    flex: 1 1 auto;
  }
}

/* ==========================================================================
   LOCALITIES LANDING (page_12.php — článok Lokality)
   ========================================================================== */
.sc-localities-page__intro {
  padding: 28px 0 8px;
}
.sc-localities-page__intro-inner {
  max-width: 760px;
}
.sc-localities-page .sc-page-article__hero.sc-trips-hero {
  padding-bottom: 8px;
}
.sc-localities-page__nav-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  margin-top: 0;
  padding: 10px 0;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-border);
}
.sc-localities-page__nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0;
  margin: 0;
  align-items: center;
}
.sc-localities-page__nav::-webkit-scrollbar {
  display: none;
}
.sc-localities-page__nav-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--c-border);
  background: var(--c-white);
  color: var(--c-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.sc-localities-page__nav-link:hover {
  border-color: var(--c-gold);
  color: var(--c-dark);
}
.sc-locality {
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--c-border);
  scroll-margin-top: calc(var(--sc-header-h, 72px) + 52px);
}
.sc-locality:nth-child(even) {
  background: var(--c-bg-soft);
}
.sc-locality__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}
.sc-locality--reverse .sc-locality__intro {
  direction: rtl;
}
.sc-locality--reverse .sc-locality__intro > * {
  direction: ltr;
}
.sc-locality__media {
  position: relative;
  min-height: 320px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.sc-locality__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .55), transparent 55%);
}
.sc-locality__media-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  color: var(--c-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.sc-locality__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.sc-locality__title {
  margin: 0 0 var(--space-2);
  font-size: clamp(28px, 3vw, 40px);
  line-height: var(--lh-tight);
  color: var(--c-dark);
}
.sc-locality__prose {
  margin-bottom: 16px;
}
.sc-locality__prose ul {
  margin: 12px 0 0;
  padding-left: 1.2em;
}
.sc-locality__prose li {
  margin-bottom: 8px;
}
.sc-locality__meta {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-muted);
}
.sc-locality__rooms-wrap {
  margin-top: 8px;
}
.sc-locality__rooms.sc-destinations__grid {
  display: flex;
  flex-wrap: nowrap;
  grid-template-columns: unset;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0 -24px;
  padding: 4px 24px 16px;
  scroll-snap-type: x proximity;
}
.sc-locality__rooms.sc-destinations__grid::-webkit-scrollbar {
  display: none;
}
.sc-locality__rooms .sc-dest-card {
  flex: 0 0 auto;
  width: clamp(220px, 30vw, 300px);
  scroll-snap-align: start;
}
.sc-locality__rooms-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  padding: 0 24px;
}
.sc-locality__rooms-btn {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  background: var(--c-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), border-color var(--transition), opacity var(--transition);
}
.sc-locality__rooms-btn::before {
  font-size: 16px;
  line-height: 1;
  color: var(--c-dark);
  transition: color var(--transition);
}
.sc-locality__rooms-btn--prev::before {
  content: '\2190';
}
.sc-locality__rooms-btn--next::before {
  content: '\2192';
}
.sc-locality__rooms-btn:hover:not(:disabled):not(.is-disabled) {
  background: var(--c-gold);
  border-color: var(--c-gold);
}
.sc-locality__rooms-btn:hover:not(:disabled):not(.is-disabled)::before {
  color: var(--c-white);
}
.sc-locality__rooms-btn:disabled,
.sc-locality__rooms-btn.is-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.sc-locality__rooms-wrap--static .sc-locality__rooms-nav {
  display: none;
}
.sc-locality__empty {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--c-border);
  background: var(--c-white);
  text-align: center;
  color: var(--c-muted);
}
.sc-localities-page__cta {
  padding: var(--space-6) 0 var(--space-7);
  background: var(--c-bg);
}
.sc-localities-page__cta h2 {
  margin: 0 0 12px;
  color: var(--c-dark);
}
.sc-localities-page__cta p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--c-muted);
}
.sc-localities-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

@media (max-width: 900px) {
  .sc-locality__intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sc-locality--reverse .sc-locality__intro {
    direction: ltr;
  }
  .sc-locality__media {
    min-height: 240px;
  }
  .sc-locality {
    padding: var(--space-5) 0;
  }
  .sc-locality__rooms.sc-destinations__grid {
    display: flex;
    grid-template-columns: unset;
  }
}

@media (max-width: 640px) {
  .sc-localities-page__nav-wrap {
    top: var(--sc-header-h, 72px);
    padding: 8px 0;
  }
  .sc-locality__rooms.sc-destinations__grid {
    margin: 0 -16px;
    padding: 4px 16px 14px;
  }
  .sc-locality__rooms .sc-dest-card {
    width: clamp(200px, 72vw, 260px);
  }
  .sc-locality__rooms-nav {
    padding: 0 16px;
  }
}

/* ==========================================================================
   GENERIC CMS PAGE (page.php — článok / podstránka)
   ========================================================================== */
.sc-page-article {
  background: var(--c-bg);
}
.sc-page-article__hero .sc-trips-hero__single {
  min-height: min(42vh, 480px);
  align-items: flex-end;
}
.sc-page-article__main {
  padding: var(--space-5) 0 var(--space-6);
}
.sc-page-article__container {
  max-width: 800px;
}
.sc-page-article__prose {
  font-size: 14px;
  line-height: var(--lh-body);
  color: var(--c-text);
  padding: 20px 2px 0px 2px;
}
.sc-page-article__prose h2,
.sc-page-article__prose h3,
.sc-page-article__prose h4 {
  color: var(--c-dark);
  margin-top: 1.4em;
  margin-bottom: 0.5em;
  line-height: var(--lh-tight);
}
.sc-page-article__prose p {
  margin: 0 0 1em;
}
.sc-page-article__prose a {
  color: var(--c-gold-dark, #b8860b);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sc-page-article__prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md, 12px);
}
.sc-page-article__engagement {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--c-border);
}
.sc-page-article__engage-title {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--c-dark);
  margin: 0 0 20px;
}
.sc-page-article__share .share-wrapper {
  margin-top: 8px;
}
.sc-page-article__share .share-wrapper .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.sc-page-article__searchres {
  margin-top: 32px;
}
.sc-page-article__searchres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.sc-page-article__roomcard {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-bg-soft);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.sc-page-article__roomcard:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.sc-page-article__roomcard-img {
  position: relative;
  min-height: 180px;
  background-size: cover;
  background-position: center;
}
.sc-page-article__roomcard-img p {
  position: absolute;
  right: 12px;
  bottom: 12px;
  margin: 0;
  padding: 8px 12px;
  background: rgba(8, 15, 32, 0.82);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
}
.sc-page-article__roomcard-img p span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
}
.sc-page-article__roomcard-body {
  padding: 16px 18px 18px;
}
.sc-page-article__roomcard-body h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  color: var(--c-dark);
}
.sc-page-article__roomcard-body p {
  margin: 0;
  font-size: 14px;
  color: var(--c-muted, #5c6473);
}

/* ==========================================================================
   CONTACT PAGE (Scapia „Contact us“)
   ========================================================================== */
.sc-contact-page {
  background: var(--c-bg);
}
.sc-contact-page__hero .sc-trips-hero__single {
  min-height: min(48vh, 520px);
  align-items: flex-end;
}
.sc-contact-page__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.sc-contact-page__main {
  padding: var(--space-5) 0 var(--space-6);
}
.sc-contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}
.sc-contact-page__info--minimal {
  min-width: 0;
}
.sc-contact-details__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(24px, 4vw, 48px);
}
.sc-contact-details__cell {
  padding: 0 0 28px;
  margin: 0 0 8px;
  border-bottom: 1px solid var(--c-border);
}
.sc-contact-details__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin: 0 0 10px;
}
.sc-contact-details__value {
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  color: var(--c-dark);
  text-decoration: underline;
  text-decoration-color: rgba(20, 43, 76, 0.25);
  text-underline-offset: 3px;
}
.sc-contact-details__value:hover {
  color: var(--c-gold);
  text-decoration-color: var(--c-gold);
}
.sc-contact-details__note {
  font-size: 14px;
  color: var(--c-muted);
  margin: 0 0 10px;
  line-height: 1.45;
}
.sc-contact-details__text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-text);
  margin: 0;
}
.sc-contact-details__lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sc-contact-details__lines a {
  font-size: 15px;
  color: var(--c-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sc-contact-details__lines a:hover {
  color: var(--c-gold);
}
.sc-contact-details__social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.sc-contact-details__soc {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  color: var(--c-dark);
  transition: var(--transition);
}
.sc-contact-details__soc:hover {
  border-color: var(--c-dark);
  color: var(--c-dark);
}
.sc-contact-details__owners {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--c-border);
}
.sc-contact-details__owners .sc-contact-details__label {
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-dark);
}
.sc-contact-details__more {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--c-dark);
  padding-bottom: 2px;
}
.sc-contact-details__more:hover {
  color: var(--c-gold);
  border-bottom-color: var(--c-gold);
}
@media (max-width: 640px) {
  .sc-contact-details__grid {
    grid-template-columns: 1fr;
  }
}
.sc-contact-page__formcard {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-md);
}
.sc-contact-page__formtitle {
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 0 0 8px;
}
.sc-contact-page__formlead {
  font-size: 15px;
  color: var(--c-muted);
  margin: 0 0 24px;
  line-height: 1.5;
}
.sc-contact-page__formwrap.sc-room-contactblock {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}
.sc-contact-page__formwrap.sc-room-contactblock .contact_form {
  max-width: none;
}
.sc-contact-page__formwrap .contact_form .form_block {
  margin-bottom: 14px;
}
.sc-contact-faq {
  padding: 0 0 72px;
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-border);
}
.sc-contact-faq__head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 36px;
  padding-top: 56px;
}
.sc-contact-faq__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin: 0 0 10px;
}
.sc-contact-faq__title {
  font-size: clamp(26px, 3vw, 34px);
  margin: 0;
}
.sc-contact-faq__list {
  max-width: 800px;
  margin: 0 auto;
}
.sc-contact-faq__item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  background: var(--c-bg);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.sc-contact-faq__item[open] {
  box-shadow: var(--shadow-sm);
  border-color: rgba(20, 43, 76, 0.12);
}
.sc-contact-faq__q {
  cursor: pointer;
  list-style: none;
  padding: 18px 48px 18px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-dark);
  position: relative;
  line-height: 1.4;
}
.sc-contact-faq__q::-webkit-details-marker {
  display: none;
}
.sc-contact-faq__q::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--c-dark);
  border-bottom: 2px solid var(--c-dark);
  transform: translateY(-65%) rotate(45deg);
  transition: transform var(--transition);
}
.sc-contact-faq__item[open] .sc-contact-faq__q::after {
  transform: translateY(-25%) rotate(225deg);
}
.sc-contact-faq__a {
  padding: 0 20px 18px;
  border-top: 1px solid var(--c-border);
}
.sc-contact-faq__a p {
  margin: 14px 0 0;
  font-size: 15px;
  color: var(--c-muted);
  line-height: 1.65;
}
.sc-contact-cta {
  padding: var(--space-5) 0 var(--space-6);
}
.sc-contact-cta__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.sc-contact-cta__title {
  font-size: clamp(24px, 2.8vw, 32px);
  margin: 0 0 var(--space-2);
  line-height: var(--lh-tight);
}
.sc-contact-cta__text {
  font-size: 16px;
  color: var(--c-muted);
  margin: 0 0 var(--space-3);
  line-height: var(--lh-body);
}
@media (max-width: 960px) {
  .sc-contact-page__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .sc-contact-page__main {
    padding: var(--space-4) 0 var(--space-5);
  }
  .sc-contact-faq {
    padding-bottom: var(--space-5);
  }
  .sc-contact-faq__head {
    padding-top: var(--space-5);
  }
}

/* ==========================================================================
   GLOBAL POLISH — konzistentný rytmus (desktop / tablet / mobile)
   ========================================================================== */
@media (max-width: 1024px) {
  .sc-section__header {
    margin-bottom: var(--space-3);
  }
  .sc-trips-layout,
  .sc-room-layout {
    gap: var(--space-3);
  }
  .sc-locality__intro {
    margin-bottom: var(--space-3);
  }
  .sc-header__inner {
    min-height: var(--sc-header-h);
    padding-top: var(--space-1) !important;
    padding-bottom: var(--space-1) !important;
  }
}

@media (max-width: 640px) {
  :root {
    --space-section-y: var(--space-5);
    --space-section-y-md: var(--space-4);
    --space-section-y-sm: 32px;
  }

  .sc-section__header {
    gap: var(--space-2);
    margin-bottom: var(--space-3);
  }
  .sc-section__header h2 {
    font-size: clamp(24px, 6.5vw, 32px);
  }
  .sc-section__header p {
    font-size: 15px;
  }

  .sc-trips {
    padding: var(--space-4) 0 var(--space-5);
  }
  .sc-locality {
    padding: var(--space-5) 0;
  }
  .sc-locality__intro {
    gap: var(--space-3);
    margin-bottom: var(--space-3);
  }
  .sc-localities-page__intro {
    padding: var(--space-4) 0 var(--space-1);
  }

  .sc-room-page {
    padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }
  .sc-room-section {
    margin-bottom: var(--space-3);
    padding-top: 4px;
  }
  .sc-room-title {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }
  .sc-room-h2 {
    font-size: clamp(1.28rem, 5.5vw, 1.45rem);
    margin-top: 22px;
    margin-bottom: 14px;
  }
  .sc-room-prose {
    font-size: 15px;
  }

  .sc-dest-card__body {
    padding: var(--space-2);
  }
  .sc-dest-card__price {
    font-size: 16px;
  }
  .sc-dest-card__meta {
    font-size: 12px;
  }

  .sc-trips-hero {
    padding-top: var(--space-2);
  }
  .sc-trips-hero__content {
    padding: var(--space-4) var(--space-2) var(--space-5);
  }
  .sc-trips-hero__title {
    font-size: clamp(24px, 6.5vw, 34px);
    margin-bottom: var(--space-1);
  }
  .sc-trips-hero__sub {
    font-size: 15px;
    margin-bottom: var(--space-2);
  }

  .sc-page-article__main.sc-section {
    padding: var(--space-4) 0 var(--space-5) !important;
  }
  .sc-page-article__prose {
    font-size: 16px;
  }

  .sc-contact-cta {
    padding: var(--space-5) 0 var(--space-6);
  }
  .sc-contact-cta__text {
    line-height: var(--lh-body);
  }

  .sc-features__grid {
    gap: var(--space-2);
  }
  .sc-feature-card {
    padding: var(--space-2) var(--space-1);
  }

  .sc-moments.sc-reels {
    padding: var(--space-5) 0;
  }
  .sc-moments__intro {
    margin-bottom: var(--space-3);
  }

  .sc-search-results__header {
    margin-bottom: var(--space-4);
  }
  .sc-search-results__header h2 {
    line-height: var(--lh-tight);
  }
}

/* Pod-fold sekcie – rýchlejší prvý render */
.sc-destinations,
.sc-trips,
.sc-moments,
.sc-deals,
.sc-reviews,
.sc-features,
.sc-blog,
.sc-localities-page,
.sc-locality {
  content-visibility: auto;
  contain-intrinsic-size: auto 480px;
}
