/* ═══════════════════════════════════════════════════════════════
   UV HOME — styles for homepage (uv-home-page) and reservation
   page (uv-reservation-page) custom templates.
   ═══════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Open Sans Hebrew Condensed';
  src: url('../fonts/OpenSansHebrewCondensed-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans Hebrew Condensed';
  src: url('../fonts/OpenSansHebrewCondensed-ExtraBold.ttf') format('truetype');
  font-weight: 800 900;
  font-display: swap;
}

:root {
  --header-height: 72px;
  --font-heading: "Khand", sans-serif;
  --font-body: var(--e-global-typography-text-font-family, 'Outfit', sans-serif);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
}

/* Prevents a white flash behind the page during iOS Safari elastic overscroll bounce */
html {
  background: #f7f0e8;
}

/* ── RESET ───────────────────────────────────────────────────── */
.uv-home-page,
.uv-reservation-page {
  margin: 0;
  padding: 0;
  background: #f7f0e8;
  font-family: var(--font-body);
}


/* Collapse any theme wrapper padding that leaks in */
.uv-home-page .site,
.uv-home-page #content,
.uv-home-page #primary,
.uv-home-page main,
.uv-reservation-page .site,
.uv-reservation-page #content,
.uv-reservation-page #primary {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

/* ── NAV ──────────────────────────────────────────────────────── */
.uv-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0 48px;
  box-sizing: border-box;
  min-height: 72px;
  background: transparent;
  border-bottom: 0.5px solid rgba(253, 250, 231, 0.5);
  transition: background 0.3s ease, min-height 0.3s ease, transform 0.3s ease;
}
/* Homepage only — no border under the transparent hero header */
.uv-front-page .uv-nav {
  border-bottom: none;
}
.uv-nav.is-nav-hidden {
  transform: translateY(-100%);
}

/* Solid dark nav after scroll */
.uv-nav.is-scrolled {
  background: #222013;
  border-bottom-color: transparent;
}

/* Always-solid nav (solid pages) */
.uv-nav.uv-nav-solid {
  position: relative;
  background: #222013;
  border-bottom-color: transparent;
}

/* Logo — horizontally + vertically centered */
.uv-nav-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 210;
  flex-shrink: 0;
}
.uv-nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.uv-nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
}

/* Nav links — left side */
.uv-nav-links {
  display: flex !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 0;
  align-items: stretch;
  flex-wrap: nowrap;
}

.uv-nav-links li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  display: flex;
  align-items: stretch;
}

.uv-nav-links li a {
  color: #fdfae7;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.uv-nav-links li a:hover {
  border-bottom-color: rgba(253, 250, 231, 0.6);
}
/* Desktop — active tab looks like hover: full-width underline */
.uv-nav-links li.current-menu-item > a,
.uv-nav-links li.current_page_item > a {
  border-bottom-color: #fdfae7;
}

/* Short underline accent — tablet/mobile only (see media query below), sized relative to
   the word itself, not the whole padded link box. JS wraps link text in .uv-nav-link-text for this. */
.uv-nav-link-text {
  position: relative;
  display: inline-block;
}
.uv-nav-link-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 20%;
  height: 2px;
  background: transparent;
  transition: background-color 0.2s ease;
}
/* Hamburger button */
.uv-nav-toggle {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  cursor: pointer;
  padding: 0 !important;
  z-index: 210;
  flex-shrink: 0;
  align-self: center;
}
.uv-nav-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.uv-nav-toggle-icon span {
  display: block;
  width: 13px;
  height: 1.5px;
  background: #fdfae7;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.uv-nav-toggle-label {
  font-family: 'Outfit', sans-serif !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fdfae7;
}
.uv-nav-toggle .uv-nav-toggle-label { display: none; }

.uv-nav-toggle.is-open .uv-nav-toggle-icon span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.uv-nav-toggle.is-open .uv-nav-toggle-icon span:nth-child(2) { opacity: 0; }
.uv-nav-toggle.is-open .uv-nav-toggle-icon span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Language switcher (GTranslate dropdown) — styled to match the other nav links */
.uv-nav-lang {
  position: relative;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 20px;
  flex-shrink: 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
  cursor: pointer;
}
.uv-nav-lang:hover,
.uv-nav-lang.is-open {
  border-bottom-color: rgba(253, 250, 231, 0.6);
}
.uv-nav-lang-icon,
.uv-nav-lang-chevron {
  color: #fdfae7;
  flex-shrink: 0;
  pointer-events: none;
  transition: transform 0.2s ease;
}
.uv-nav-lang.is-open .uv-nav-lang-chevron {
  transform: rotate(180deg);
}
.uv-nav-lang-label {
  color: #fdfae7;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}
/* Header goes solid (matches scrolled state) while the language mega-panel is open */
.uv-nav.uv-lang-hover {
  background: #222013;
  border-bottom-color: transparent;
}

/* Desktop: full-width panel dropping below the whole header, like a mega-menu.
   Same solid color as the (now-hovered) header so it reads as one continuous surface. */
.uv-nav-lang:not(.uv-nav-lang-mobile) .uv-nav-lang-panel {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #222013;
  padding: 18px 48px;
  z-index: 220;
}
.uv-nav-lang:not(.uv-nav-lang-mobile).is-open .uv-nav-lang-panel {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}
.uv-nav-lang:not(.uv-nav-lang-mobile) .uv-nav-lang-option {
  width: auto;
}

.uv-nav-lang-option {
  -webkit-appearance: none !important;
  appearance: none !important;
  display: block;
  width: 100%;
  text-align: left;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 6px 4px !important;
  color: #fdfae7 !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.uv-nav-lang:not(.uv-nav-lang-mobile) .uv-nav-lang-option {
  text-align: right;
}
.uv-nav-lang-mobile .uv-nav-lang-option {
  width: auto;
  text-align: center;
}
.uv-nav-lang-option:hover .uv-nav-link-text::after,
.uv-nav-lang-option.is-active .uv-nav-link-text::after {
  background: #fdfae7;
}
/* Desktop — full-width line (matches hover), same idea as the main nav tabs */
.uv-nav-lang:not(.uv-nav-lang-mobile) .uv-nav-lang-option .uv-nav-link-text::after {
  width: 100%;
}
.uv-nav-lang .gt_selector {
  -webkit-appearance: none;
  appearance: none;
  height: auto;
  border: none !important;
  background: transparent !important;
  color: #fdfae7 !important;
  font-family: var(--font-body);
  font-size: 13px !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  outline: none;
}
.uv-nav-lang .gt_selector option { color: #1a1209; }

/* Second instance — moved into the fullscreen mobile menu list by JS, laid out as
   just another row in that same flex column (see mobile overrides further down). */
.uv-nav-lang-mobile {
  display: none;
}

/* Mobile-only elements — hidden on desktop */
.uv-nav-mobile-cta { display: none; }
.uv-nav-pkg-slot   { display: none; }

/* ── HERO ─────────────────────────────────────────────────────── */
.uv-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: #1c1c1c center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Dual gradient: top dims image for nav readability;
   bottom dims for text readability */
.uv-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.00) 42%,
    rgba(0, 0, 0, 0.65) 100%
  );
  pointer-events: none;
}

.uv-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 80px;
  max-width: 860px;
  box-sizing: border-box;
}

.uv-hero-title {
  font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 20px;
}

.uv-dot {
  color: #ff5a1f;
}

.uv-hero-sub {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  max-width: 460px;
  margin: 0 0 32px;
}

.uv-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.uv-btn-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
}

.uv-btn-home-dark {
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #1a1a1a;
}
.uv-btn-home-dark:hover {
  background: #333;
  border-color: #333;
  color: #fff;
}

.uv-btn-home-outline {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.uv-btn-home-outline:hover {
  background: rgba(255, 255, 255, 0.20);
  border-color: rgba(255, 255, 255, 0.80);
  color: #fff;
}

/* ── SECTIONS ─────────────────────────────────────────────────── */
.uv-section {
  background: #f7f0e8;
  padding: 64px 48px;
  box-sizing: border-box;
}

.uv-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

/* Remove carousel's own side padding when embedded in our section-inner */
.uv-section-routes .uv-carousel-section {
  padding-left: 0;
  padding-right: 0;
}

/* ── CAROUSEL OVERRIDES FOR HOMEPAGE ──────────────────────────── */
/* Align button with bottom of the label+title group */
.uv-section-routes .uv-section-header {
  align-items: flex-end;
  margin-bottom: 32px;
}

.uv-section-header-left {
  display: flex;
  flex-direction: column;
}

/* Larger title in homepage context */
.uv-section-routes .uv-section-title {
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.08;
}

/* Orange dot after carousel title */
.uv-carousel-dot {
  color: #ff5a1f;
}

/* ── SECTION SHARED HEADER ────────────────────────────────────── */
/* Used for the relaxation section (and reusable elsewhere) */
.uv-section-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.uv-label-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.uv-label-badge::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #ff5a1f;
  flex-shrink: 0;
}

/* Also used as label inside carousel section-header-left */
.uv-section-header-left .uv-label-badge {
  margin-bottom: 16px;
}

.uv-section-heading {
  font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 400;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1.05;
  margin: 0;
  max-width: 540px;
}

/* Dark pill button used in section headers */
.uv-btn-pill-dk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: #1a1a1a;
  color: #fff;
  border: 1px solid #1a1a1a;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s;
}
.uv-btn-pill-dk:hover {
  background: #333;
  border-color: #333;
  color: #fff;
}

/* ── RELAXATION GRID ──────────────────────────────────────────── */
.uv-relax-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.uv-relax-card {
  position: relative;
  display: block;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background: #2a2a2a center / cover no-repeat;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.uv-relax-card:hover {
  transform: translateY(-2px);
}

.uv-relax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.08) 55%
  );
}

.uv-relax-card-body {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 2;
}

.uv-relax-card-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.uv-relax-arrow {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.uv-relax-card:hover .uv-relax-arrow {
  background: #F36844;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* ── FOOTER ───────────────────────────────────────────────────── */
.uv-site-footer {
  background: #100d08;
  padding: 96px 48px 80px;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif !important;
}

.uv-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Top: 3 kolonnas */
.uv-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.uv-footer-logo { display: inline-flex; align-items: center; margin-bottom: 16px; }
.uv-footer-logo img { height: 34px; width: auto; opacity: 0.85; }

.uv-footer-tagline {
  font-family: var(--font-body);
  font-size: 15px; line-height: 1.5;
  color: rgba(255,255,255,0.55);
  margin: 0 0 8px;
}
.uv-footer-season {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  margin: 0;
}

.uv-footer-col-title {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin: 0 0 16px;
}

.uv-footer-links {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.uv-footer-links a,
.uv-footer-links li {
  font-family: var(--font-body) !important;
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  transition: color 0.15s;
}
.uv-footer-links a:hover { color: rgba(255,255,255,0.9); }
.uv-footer-addr { color: rgba(255,255,255,0.42) !important; font-size: 13px !important; }

/* Bottom: copyright + legal */
.uv-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.uv-footer-copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  margin: 0;
}
.uv-footer-legal {
  display: flex; gap: 24px;
}
.uv-footer-legal a {
  font-family: var(--font-body) !important;
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.15s;
}
.uv-footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ── RESERVATION PAGE LAYOUT ──────────────────────────────────── */
/* Wrap nav+main+footer in our own div so flex works regardless of
   what the theme or plugins set on <body>. */
.uv-page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* .uv-rez-main also gets .uv-page-rezervet from wizard CSS (padding + container) */
.uv-rez-main {
  flex: 1;
  background: #f7f0e8;
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .uv-nav              { padding-left: 32px; padding-right: 32px; }
  .uv-nav.is-scrolled  { padding-left: 32px; padding-right: 32px; }
  .uv-nav.uv-nav-solid { padding-left: 32px; padding-right: 32px; }
  .uv-hero-content     { padding-left: 32px; padding-right: 32px; }
  .uv-section          { padding-left: 32px; padding-right: 32px; }
  .uv-site-footer      { padding-left: 32px; padding-right: 32px; }
  .uv-footer-top       { gap: 40px; }
}

@media (max-width: 1300px) {
  /* Show hamburger, hide horizontal links */
  .uv-nav-toggle {
    display: flex;
  }
  /* Tablet/mobile — active tab uses the short underline instead of the desktop full-width one */
  .uv-nav-links li.current-menu-item > a,
  .uv-nav-links li.current_page_item > a {
    border-bottom-color: transparent;
  }
  .uv-nav-links li.current-menu-item > a .uv-nav-link-text::after,
  .uv-nav-links li.current_page_item > a .uv-nav-link-text::after {
    background: #fdfae7;
  }
  /* Header bar is too tight on mobile — move the language switcher into the fullscreen menu overlay instead */
  .uv-nav-lang {
    display: none;
  }
  .uv-nav-toggle .uv-nav-toggle-label {
    display: block;
  }
  .uv-nav-mobile-cta {
    display: flex;
    align-items: center;
    margin-left: auto;
    font-family: 'Outfit', sans-serif !important;
    font-size: 12px;
    font-weight: 700 !important;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fdfae7;
    text-decoration: none;
    z-index: 210;
  }

  .uv-nav-links {
    display: flex !important;
    position: fixed;
    inset: 0;
    background: #222013;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 120px !important;
    gap: 22px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
    z-index: 205;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .uv-nav-links li a {
    padding-left: 32px !important;
    padding-right: 32px !important;
  }
  .uv-nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
  }
  .uv-nav-links.is-open li a {
    font-size: 20px;
    opacity: 1;
  }
  .uv-nav-links li { width: 100%; }

  /* Language row — same typography as the other links, laid out as a normal row in the list */
  .uv-nav-links .uv-nav-lang-mobile {
    display: block;
    position: static;
    width: 100%;
    margin-left: 0;
    padding-left: 32px !important;
    padding-right: 32px !important;
    border-bottom: none;
    order: 99;
    box-sizing: border-box;
  }
  .uv-nav-lang-mobile .uv-nav-lang-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
  }
  .uv-nav-lang-mobile .uv-nav-lang-label {
    font-size: 20px;
    color: #fdfae7;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
  }
  .uv-nav-lang-mobile .uv-nav-lang-chevron {
    width: 14px;
    height: 9px;
    transform: rotate(-90deg);
  }
  .uv-nav-lang-mobile.is-open .uv-nav-lang-chevron {
    transform: rotate(0deg);
  }
  .uv-nav-lang-mobile .uv-nav-lang-panel {
    display: none;
    position: static;
    transform: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    padding: 18px 0 0;
    margin: 0;
  }
  .uv-nav-lang-mobile.is-open .uv-nav-lang-panel {
    display: flex;
  }
  .uv-nav-lang-mobile .uv-nav-lang-option {
    font-size: 20px !important;
    text-align: left !important;
    padding: 0 !important;
  }

  /* ── Package promo card in mobile menu ── */
  .uv-nav-pkg-slot {
    display: block;
    position: fixed;
    bottom: 28px;
    left: 16px;
    right: 16px;
    z-index: 210;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .uv-nav.menu-is-open .uv-nav-pkg-slot {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .uv-nav-pkg-slot .uv-pkg-promo-card {
    padding: 14px 16px;
    gap: 10px;
  }
  .uv-nav-pkg-slot .uv-pkg-promo-name { font-size: 16px; }
  .uv-nav-pkg-slot .uv-pkg-promo-price { font-size: 18px; }
  .uv-nav-pkg-slot .uv-pkg-promo-comps { display: flex; }
  .uv-nav-pkg-slot .uv-pkg-promo-btn {
    align-self: stretch;
    justify-content: center;
    padding: 9px 16px;
  }

  .uv-section-routes .uv-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .uv-nav,
  .uv-nav.is-scrolled,
  .uv-nav.uv-nav-solid {
    padding: 18px 20px;
  }

  .uv-hero-content  { padding: 0 20px 60px; }

  .uv-section { padding: 56px 20px; }

  .uv-section-hdr {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .uv-relax-grid        { grid-template-columns: 1fr; }
  .uv-relax-card        { height: 300px; }

  .uv-site-footer  { padding: 64px 20px 56px; }
  .uv-footer-top   { grid-template-columns: 1fr 1fr; gap: 40px; }
  .uv-footer-brand { grid-column: 1 / -1; }
  .uv-footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .uv-hero-title { font-size: 30px; }
  .uv-hero-sub   { font-size: 14px; }

  .uv-site-footer  { padding: 48px 20px 44px; }
  .uv-footer-top   { grid-template-columns: 1fr; gap: 32px; }
  .uv-footer-brand { grid-column: auto; }
  .uv-footer-legal { flex-direction: column; gap: 8px; }

  .uv-hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .uv-btn-home {
    justify-content: center;
  }

  .uv-relax-card-title { font-size: 18px; }
}

/* ── BUTTON UTILITY CLASSES ───────────────────────────────────── */

@keyframes uv-bob {
  0%, 100% { transform: translateY(0);   }
  50%       { transform: translateY(7px); }
}

.button-bob .elementor-button-icon {
  display: inline-flex;
}

.button-bob .elementor-button-icon svg,
.button-bob .elementor-button-icon i {
  animation: uv-bob 1.6s ease-in-out infinite;
}

@keyframes uv-arrow-slide {
  0%    { transform: translateX(-150%); opacity: 0; }
  12%   { transform: translateX(0);     opacity: 1; }
  82%   { transform: translateX(0);     opacity: 1; }
  94%   { transform: translateX(150%);  opacity: 0; }
  94.1% { transform: translateX(-150%); opacity: 0; }
  100%  { transform: translateX(-150%); opacity: 0; }
}


.button-hover .elementor-button-icon {
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-hover:hover .elementor-button-icon svg,
.button-hover:hover .elementor-button-icon i {
  animation: uv-arrow-slide 1.7s ease-in-out infinite;
}

/* ── PROMO BANNER (fixed strip below nav) ─────────────────── */
.uv-reservation-page .uv-promo-banner { display: none !important; }

.uv-promo-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 180;
  background: #DED8C5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 20px;
  height: 44px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.uv-promo-banner.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.uv-promo-banner-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}
.uv-promo-banner-inner {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.uv-ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: uv-ticker 28s linear infinite;
  will-change: transform;
}
.uv-ticker-set {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding-right: 80px;
}
@keyframes uv-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.uv-promo-banner:hover .uv-ticker-track {
  animation-play-state: paused;
}
.uv-promo-banner-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #1a1209;
}
.uv-promo-banner-icon svg { width: 18px; height: 18px; }
.uv-promo-banner-name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #1a1209;
  white-space: nowrap;
  flex-shrink: 0;
}
.uv-promo-banner-meta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: rgba(26,18,9,0.8);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.uv-promo-banner-dot {
  font-size: 12px;
  font-weight: 400;
  color: rgba(26,18,9,0.4);
  flex-shrink: 0;
}
.uv-promo-banner-chip-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: rgba(26,18,9,0.7);
}
.uv-promo-banner-chip-icon svg {
  width: 15px;
  height: 15px;
}
.uv-promo-banner-chip-icon svg *[stroke]:not([stroke="none"]) { stroke: currentColor; }
.uv-promo-banner-chip-icon svg *[fill]:not([fill="none"])     { fill:   currentColor; }
.uv-promo-banner-chip-text {
  white-space: nowrap;
}
.uv-promo-banner-price {
  font-size: 14px;
  font-weight: 700;
  color: #1a1209;
  white-space: nowrap;
}
.uv-promo-banner-btn-icon { display: none; }
.uv-promo-banner-btn {
  flex-shrink: 0;
  background: none;
  color: #1a1209 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 12px;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em;
  padding: 6px 16px;
  border-radius: 8px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}
.uv-promo-banner-btn:hover { opacity: 0.82; }
.elementor-kit-110 .uv-promo-banner-close,
.uv-promo-banner-close {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 0;
  color: rgba(26,18,9,0.35);
  display: flex;
  align-items: center;
  transition: color 0.15s ease;
  text-transform: none;
  letter-spacing: 0;
  border-radius: 0;
}
.elementor-kit-110 .uv-promo-banner-close:hover,
.uv-promo-banner-close:hover { color: #1a1209; }

@media (max-width: 620px) {
  .uv-promo-banner-btn       { padding: 6px 10px; }
  .uv-promo-banner-btn-text  { display: none; }
  .uv-promo-banner-btn-icon  { display: block; }
  .uv-promo-banner-name { font-size: 12px; }
}

