/* GlobeTrek RTL + RedBilit brand theme */
html {
  direction: rtl;
}

:root {
  --font-fa: "Vazirmatn", Tahoma, "Segoe UI", sans-serif;
  --rb-red: #E11D2E;
  --rb-red-dark: #B91422;
  --rb-red-soft: #FFF5F5;
  --rb-ink: #1A1C1E;
  --rb-paper: #fbf7f1;
  --rb-mist: #f4efe8;
  --rb-gold: #C4A265;
  --rb-gold-dark: #9A7840;
  --rb-gold-soft: #F7F0E2;
  --rb-teal: #1F7A6E;
  --rb-teal-dark: #165A52;
  --rb-teal-soft: #E7F4F1;
  --rb-navy: #1C2A3A;
  --rb-sky: #3D6B8C;
  --rb-sky-soft: #E8F0F6;
  --rb-sand: #E8D9C4;
  --rb-ease: cubic-bezier(.22, 1, .36, 1);
}

body {
  font-family: var(--font-fa) !important;
  color: var(--rb-ink);
  background: var(--rb-paper);
  position: relative;
}
.rb-site {
  overflow-x: hidden;
}
.rb-main {
  position: relative;
  z-index: 1;
}

/* Override template Latin fonts (Outfit / Lexend / Inter / Yellowtail) */
body,
body *:not(i):not([class^="icon"]):not([class*=" icon"]):not([class*="icon-"]):not(.icon):not([class*="ri-"]):not(iconify-icon):not(svg):not(path) {
  font-family: var(--font-fa) !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
p, a, span, li, label, input, textarea, select, button,
.nav-link, .title, .text, .desc, .brand-logo {
  font-family: var(--font-fa) !important;
}

/* ——— Brand ——— */
.brand-logo {
  font-size: 30px;
  font-weight: 800;
  color: var(--rb-ink);
  text-decoration: none;
  letter-spacing: -0.5px;
  line-height: 1;
  transition: opacity .25s ease;
}
.brand-logo:hover { opacity: .85; }
.brand-logo span { color: var(--rb-red); }
.brand-logo.light,
.footer .brand-logo { color: #fff; }
.footer .brand-logo span { color: #ff6b7a; }

.rb-logo {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  font-size: inherit;
}
.rb-logo__mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(145deg, #ff3142 0%, #E11D2E 55%, #b91422 100%);
  box-shadow: 0 8px 18px rgba(225, 29, 46, 0.3);
  flex-shrink: 0;
}
.rb-logo__text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1;
  color: inherit;
}
.rb-logo__text span { color: var(--rb-red); }

/* ——— Header ——— */
.header.style-1,
.rb-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: auto;
  min-height: 0;
  margin: 0 !important;
  padding: 0 !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom: 1px solid rgba(196, 162, 101, 0.18);
  box-shadow: 0 8px 30px rgba(26, 28, 30, 0.04);
  z-index: 1200 !important;
  overflow: visible !important;
}
.rb-header .header-wrap {
  position: relative;
  overflow: visible;
  min-height: 76px;
  height: 76px;
  align-items: center !important;
  padding: 0;
  margin: 0;
}
.rb-header > .container {
  overflow: visible;
  position: relative;
  height: 100%;
}
.header.style-1 .header-wrap .header-ct-left {
  padding: 0 !important;
  display: flex;
  align-items: center;
}
.header .header-ct-left,
.header .header-ct-center,
.header .header-ct-right {
  height: auto !important;
  align-self: center;
}
.header .header-ct-center .inner-center,
.header .nav-wrap,
.header .list-nav,
.header .menu-nav {
  height: 100%;
}
.header .nav-link {
  height: auto !important;
}
.header .menu-nav { gap: 2px; }
.header .nav-link {
  font-weight: 650;
  font-size: 14.5px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 13px !important;
  border-radius: 999px;
  transition: color .25s ease, background .25s ease;
}
.header .nav-link:hover,
.header .nav-link.current,
.menu-item--mega:hover > .nav-link {
  color: var(--rb-red) !important;
  background: var(--rb-red-soft);
}
.header .nav-link::before { display: none !important; }
.header .nav-link::after { display: none !important; }
.rb-nav__chev {
  opacity: .55;
  transition: transform .3s ease, opacity .25s ease;
  flex-shrink: 0;
}
.menu-item--mega:hover > .nav-link .rb-nav__chev {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--rb-red);
}
.rb-header__search {
  height: 42px;
  min-width: 42px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--rb-ink);
  background: #f4f5f6;
  text-decoration: none !important;
  font-size: 13.5px;
  font-weight: 700;
  transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.rb-header__search .icon {
  font-size: 16px;
  line-height: 1;
}
.rb-header__search:hover {
  background: var(--rb-red-soft);
  color: var(--rb-red);
  transform: translateY(-1px);
}
@media (max-width: 1199px) {
  .rb-header__search-txt { display: none; }
  .rb-header__search {
    width: 42px;
    padding: 0;
  }
}
.rb-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rb-red) 0%, var(--rb-red-dark) 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(225, 29, 46, 0.28);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.rb-header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(225, 29, 46, 0.36);
  filter: brightness(1.05);
  color: #fff !important;
}
@media (max-width: 1199px) {
  .rb-header__cta { display: none; }
}

/* ——— Mobile drawer (RTL) ——— */
body.rb-nav-open {
  overflow: hidden;
}
.rb-header__burger {
  appearance: none;
  border: 0;
  background: #f4f5f6;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.rb-header__burger span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--rb-ink);
  transition: background .2s ease;
}
.rb-header__burger:hover {
  background: var(--rb-red-soft);
}
.rb-header__burger:hover span {
  background: var(--rb-red);
}
@media (max-width: 991px) {
  .rb-header__burger,
  .header .toggle-mobile {
    display: inline-flex !important;
  }
  .header .toggle-mobile .icon {
    display: none;
  }
}

.overlay {
  background: rgba(18, 14, 16, 0.55) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000 !important;
}
.mobile-menu {
  position: fixed !important;
  top: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  left: auto !important;
  width: min(86vw, 360px) !important;
  max-width: 360px !important;
  height: 100dvh !important;
  padding: 0 !important;
  background: #fff !important;
  box-shadow: -20px 0 50px rgba(26, 28, 30, 0.18) !important;
  z-index: 2010 !important;
  display: flex !important;
  flex-direction: column !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  transform: translateX(104%);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1) !important;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.active {
  left: auto !important;
  right: 0 !important;
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu .menu-box {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px 18px 28px;
}
.rb-mnav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(26, 28, 30, 0.08);
}
.rb-mnav__top .brand-logo {
  font-size: 26px;
}
.rb-mnav__top .rb-logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}
.rb-mnav__top .rb-logo__text {
  font-size: 22px;
}
.close-btn,
.rb-mnav__close {
  position: static !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  border: 0;
  background: var(--rb-red-soft) !important;
  color: var(--rb-red) !important;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.rb-mnav__close:hover,
.close-btn:hover {
  background: var(--rb-red) !important;
  color: #fff !important;
  transform: rotate(90deg);
}
.rb-mnav__close span,
.close-btn span {
  color: inherit !important;
}
.mobile-menu .inner-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 0 !important;
  margin: 8px 0 24px !important;
  flex: 1;
}
.mobile-menu .inner-menu .nav-item .mobile-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px !important;
  border-radius: 14px;
  font-weight: 700 !important;
  font-size: 16px !important;
  color: var(--rb-ink) !important;
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}
.mobile-menu .inner-menu .nav-item .mobile-dropdown:hover,
.mobile-menu .inner-menu .nav-item .mobile-dropdown:active {
  background: var(--rb-red-soft);
  color: var(--rb-red) !important;
}
.mobile-menu .inner-menu .nav-item .mobile-dropdown .nav-text {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mobile-menu .inner-menu .nav-item .mobile-dropdown .nav-text::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(225, 29, 46, 0.35);
  flex-shrink: 0;
}
.mobile-menu .inner-menu .nav-item .mobile-dropdown:hover .nav-text::before {
  background: var(--rb-red);
}
.rb-mnav__foot {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(26, 28, 30, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rb-mnav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #E11D2E 0%, #C41524 100%);
  color: #fff !important;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(225, 29, 46, 0.28);
}
.rb-mnav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 14px;
  background: #f4f5f6;
  color: var(--rb-ink) !important;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.rb-mnav__link:hover {
  background: var(--rb-red-soft);
  color: var(--rb-red) !important;
}

/* Hide old floating close when unused */
body:not(.rb-nav-open) .close-btn:not(.rb-mnav__close) {
  display: none !important;
}

/* ——— Mega menu ——— */
.menu-item--mega {
  position: static !important;
}
.rb-mega {
  position: absolute;
  top: calc(100% + 2px);
  right: 0;
  left: 0;
  z-index: 1300;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .28s ease, transform .32s cubic-bezier(.22, 1, .36, 1), visibility .28s;
}
.rb-mega::before {
  content: "";
  position: absolute;
  top: -18px;
  right: 0;
  left: 0;
  height: 18px;
}
.menu-item--mega:hover > .rb-mega,
.menu-item--mega:focus-within > .rb-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.rb-mega__inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  padding: 28px;
  border-radius: 22px;
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(31, 122, 110, 0.08), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf9 100%);
  border: 1px solid rgba(31, 122, 110, 0.12);
  box-shadow:
    0 28px 60px rgba(26, 28, 30, 0.12),
    0 2px 0 rgba(255, 255, 255, 0.8) inset;
  overflow: hidden;
}
.rb-mega__inner--hotels,
.rb-mega__inner--tours {
  grid-template-columns: 300px minmax(0, 1fr);
}
.rb-mega__aside {
  position: relative;
  padding: 22px 20px;
  border-radius: 16px;
  background:
    linear-gradient(160deg, #1c2a3a 0%, #165a52 70%, #9a7840 140%);
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
}
.rb-mega__aside::after {
  content: "";
  position: absolute;
  inset: auto -30% -40% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.55), transparent 70%);
  pointer-events: none;
}
.rb-mega__aside--hotel {
  background:
    linear-gradient(160deg, #14181f 0%, #1c2430 50%, #2a1520 100%);
}
.rb-mega__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #ff8a95;
  margin-bottom: 10px;
}
.rb-mega__aside .rb-mega__kicker { color: #ff9aa3; }
.rb-mega__kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px rgba(255, 138, 149, 0.25);
}
.rb-mega__heading {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 10px;
  color: inherit;
}
.rb-mega__aside .rb-mega__heading { color: #fff; }
.rb-mega__text {
  font-size: 13.5px;
  line-height: 1.7;
  opacity: .78;
  margin: 0 0 18px;
}
.rb-mega__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--rb-red) !important;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: transform .25s ease, box-shadow .25s ease;
}
.rb-mega__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
  color: var(--rb-red-dark) !important;
}
.rb-mega__btn--block {
  width: 100%;
  margin-top: 16px;
  background: linear-gradient(135deg, var(--rb-red), var(--rb-red-dark));
  color: #fff !important;
}
.rb-mega__btn--block:hover { color: #fff !important; }
.rb-mega__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.rb-mega__chips a {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff !important;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  transition: background .2s ease, border-color .2s ease;
}
.rb-mega__chips a:hover {
  background: rgba(225, 29, 46, 0.45);
  border-color: transparent;
}
.rb-mega__grid {
  display: grid;
  gap: 12px;
  min-width: 0;
}
.rb-mega__grid--tours,
.rb-mega__grid--hotels {
  grid-template-columns: 1fr;
}
.rb-mega__card--tour {
  display: flex !important;
  flex-direction: row-reverse;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 96px;
  padding: 10px !important;
  overflow: hidden;
  border-radius: 16px !important;
  background: #fff !important;
  border: 1px solid rgba(26, 28, 30, 0.06);
  position: relative;
}
.rb-mega__card--tour .rb-mega__card-media {
  position: relative;
  width: 148px !important;
  min-width: 148px;
  height: 92px !important;
  border-radius: 12px !important;
  overflow: hidden;
  flex-shrink: 0;
}
.rb-mega__card--tour .rb-mega__card-media::after {
  display: none !important;
  content: none !important;
}
.rb-mega__card--tour .rb-mega__card-body {
  position: static !important;
  inset: auto !important;
  z-index: auto !important;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 4px 0 8px !important;
  gap: 5px;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rb-mega__card--tour .rb-mega__card-body strong {
  color: var(--rb-ink) !important;
  font-size: 15px !important;
  font-weight: 800;
  line-height: 1.5 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
.rb-mega__card--tour .rb-mega__card-body span {
  color: #6b7280 !important;
  font-size: 13px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rb-mega__card--tour .rb-mega__card-body em {
  display: none !important;
}
.rb-mega__price {
  margin-top: 2px;
  color: var(--rb-red);
  font-size: 13px;
  font-weight: 800;
}
.rb-mega__price small {
  font-size: 11px;
  font-weight: 600;
  opacity: .8;
}
.rb-mega__card--tour .rb-mega__pill {
  top: 8px;
  right: 8px;
  background: rgba(225, 29, 46, 0.92);
}
.rb-mega__card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 14px;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(26, 28, 30, 0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  min-width: 0;
}
.rb-mega__card--hotel {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 96px;
}
.rb-mega__card--hotel .rb-mega__card-media {
  width: 150px;
  min-width: 150px;
  height: 94px;
  border-radius: 14px;
}
.rb-mega__card--hotel .rb-mega__card-body {
  flex: 1 1 auto;
  min-width: 0;
  text-align: right;
  padding-inline-end: 4px;
}
.rb-mega__card--hotel .rb-mega__card-body strong {
  font-size: 16px;
  line-height: 1.5;
}
.rb-mega__card--hotel .rb-mega__card-body span {
  margin-top: 2px;
  font-size: 14px;
}
.rb-mega__card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 29, 46, 0.2);
  box-shadow: 0 14px 28px rgba(26, 28, 30, 0.08);
}
.rb-mega__card-media {
  position: relative;
  width: 88px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.rb-mega__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.rb-mega__card:hover .rb-mega__card-media img {
  transform: scale(1.08);
}
.rb-mega__pill {
  position: absolute;
  top: 6px;
  right: 6px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(26, 28, 30, 0.82);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(6px);
}
.rb-mega__card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.rb-mega__card-body strong {
  display: -webkit-box;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--rb-ink);
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rb-mega__card-body span {
  font-size: 12px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rb-mega__inner--cities {
  display: block;
  padding: 24px 26px 26px;
}
.rb-mega__cities-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.rb-mega__cities-head .rb-mega__heading {
  color: var(--rb-ink);
  font-size: 20px;
  margin: 0;
}
.rb-mega__link {
  font-size: 13px;
  font-weight: 700;
  color: var(--rb-red) !important;
  text-decoration: none;
  white-space: nowrap;
}
.rb-mega__link:hover { text-decoration: underline; }
.rb-mega__cities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.rb-mega__city {
  position: relative;
  display: block;
  height: 110px;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  background:
    linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.72) 100%),
    var(--bg) center / cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform .28s ease, box-shadow .28s ease;
}
.rb-mega__city::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.55));
  transition: background .28s ease;
}
.rb-mega__city:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 30px rgba(26, 28, 30, 0.18);
}
.rb-mega__city:hover::before {
  background: linear-gradient(180deg, rgba(225, 29, 46, 0.15), rgba(0, 0, 0, 0.7));
}
.rb-mega__city span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 1;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.3;
}
.rb-mega__inner--blog {
  display: block;
  max-width: 420px;
  margin-right: auto;
  padding: 20px;
}
.rb-mega--blog {
  left: auto;
  right: 0;
  width: min(440px, 100%);
}
.rb-mega__blog-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rb-mega__blog-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 12px;
  text-decoration: none;
  transition: background .2s ease;
}
.rb-mega__blog-item:hover { background: var(--rb-red-soft); }
.rb-mega__blog-item img {
  width: 72px;
  height: 58px;
  object-fit: cover;
  border-radius: 10px;
}
.rb-mega__blog-item em {
  display: block;
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: var(--rb-red);
  margin-bottom: 3px;
}
.rb-mega__blog-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--rb-ink);
  line-height: 1.45;
}
@media (max-width: 1199px) {
  .rb-mega__inner {
    grid-template-columns: 200px 1fr;
    gap: 18px;
    padding: 20px;
  }
  .rb-mega__inner--hotels,
  .rb-mega__inner--tours {
    grid-template-columns: 240px minmax(0, 1fr);
  }
  .rb-mega__grid--hotels,
  .rb-mega__grid--tours {
    grid-template-columns: 1fr;
  }
  .rb-mega__card--tour .rb-mega__card-media {
    width: 128px !important;
    min-width: 128px;
    height: 84px !important;
  }
  .rb-mega__card--tour .rb-mega__card-body strong {
    font-size: 14px !important;
  }
  .rb-mega__card--hotel .rb-mega__card-media {
    width: 132px;
    min-width: 132px;
    height: 84px;
  }
  .rb-mega__card--hotel .rb-mega__card-body strong {
    font-size: 15px;
  }
  .rb-mega__cities {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 991px) {
  .rb-mega { display: none !important; }
}

/* ——— Hero (compact, fixed, full-bleed) ——— */
.hero {
  margin-bottom: 72px;
  position: relative;
  overflow: visible;
}
.hero .slider-default {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  background: transparent !important;
}
.slider-default .rb-hero-static,
.slider-default .home-1.rb-hero-static {
  position: relative;
  display: block;
  width: 100% !important;
  max-width: none !important;
}
.slider-default .home-1 .box-banner {
  position: relative;
  display: block;
  width: 100% !important;
  max-width: none !important;
  min-height: 520px !important;
  height: auto !important;
  background-color: #1a1214;
  background-size: cover !important;
  background-position: var(--rb-hero-focus, center center) !important;
  background-repeat: no-repeat !important;
}
.slider-default .home-1 .box-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(12, 18, 24, 0.55) 0%, rgba(20, 28, 32, 0.28) 48%, rgba(31, 122, 110, 0.22) 100%);
  pointer-events: none;
}
.slider-default .home-1 .box-title {
  text-align: right;
  position: relative;
  z-index: 5;
  padding: 150px 0 180px !important;
}
.slider-default .home-1 .box-title .h1,
.slider-default .home-1 .box-title h1 {
  font-size: clamp(28px, 3.6vw, 44px) !important;
  line-height: 1.25;
  font-weight: 800;
  color: #fff !important;
  letter-spacing: -0.02em;
  margin-bottom: 10px !important;
}
.slider-default .home-1 .box-title .section-eyebrow {
  color: #f0e0b8;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}
.slider-default .home-1 .box-title .section-eyebrow::before {
  background: #f0e0b8;
  box-shadow: 0 0 0 3px rgba(240, 224, 184, 0.25);
}
.slider-default .home-1 .box-title p {
  font-size: 15px !important;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88) !important;
  max-width: 440px;
  margin: 0 0 0 auto !important;
}
.slider-default .home-1 .box-title .button-group {
  display: none;
}
.slider-default .home-1 .box-title .mb-8 {
  margin-bottom: 10px !important;
}
.hero .style-hero-1 {
  opacity: 0.85;
  transform: scale(0.9);
}
.tab-content.pos-1 {
  bottom: -52px !important;
}

/* ——— Premium search widget ——— */
.rb-search {
  position: relative;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.rb-search__tabs {
  display: inline-flex;
  align-self: flex-start;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding: 6px;
  margin: 0;
  background: rgba(16, 10, 12, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.rb-search__tab {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  padding: 11px 18px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  position: relative;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease;
}
.rb-search__tab-ico {
  display: inline-flex;
  color: inherit;
  opacity: .85;
}
.rb-search__tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.rb-search__tab.is-active {
  color: var(--rb-red);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transform: none;
}
.rb-search__tab.is-active .rb-search__tab-ico {
  color: var(--rb-red);
  opacity: 1;
}
.rb-search__tab.is-active::after {
  display: none;
}
.rb-search__shell {
  position: relative;
  background: #fff;
  border-radius: 0 28px 28px 28px;
  border-start-start-radius: 0;
  box-shadow:
    0 22px 60px rgba(16, 10, 12, 0.22),
    0 4px 14px rgba(225, 29, 46, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.55);
  overflow: visible;
}
.rb-search__shell::before {
  display: none;
}
.rb-search__body {
  padding: 16px;
  overflow: visible;
}
.rb-search__panel[hidden] {
  display: none !important;
}
.rb-search__fields {
  display: flex;
  align-items: stretch;
  gap: 12px;
  overflow: visible;
}
.rb-search__track {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: stretch;
  background: #f6f7f9;
  border: 1px solid #eceef2;
  border-radius: 22px;
  overflow: visible;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.rb-search__track:focus-within {
  background: #fff;
  border-color: rgba(31, 122, 110, 0.32);
  box-shadow: 0 0 0 4px rgba(31, 122, 110, 0.08);
}
.rb-search__divider {
  width: 1px;
  align-self: stretch;
  margin: 14px 0;
  background: linear-gradient(180deg, transparent, #d9dde3 20%, #d9dde3 80%, transparent);
  flex-shrink: 0;
}
.rb-search__field {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 14px 18px;
  min-width: 140px;
  overflow: visible;
  box-shadow: none;
  transition: background .2s ease;
}
.rb-search__field:focus-within {
  border: 0;
  box-shadow: none;
  background: transparent;
}
.rb-search__field--grow {
  flex: 1 1 280px;
}
.rb-search__field--sm {
  flex: 0 1 150px;
  min-width: 130px;
}
.rb-search__field--date {
  flex: 0 1 210px;
  min-width: 180px;
  position: relative;
}
.rb-search__field--pair {
  flex: 1 1 420px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  overflow: visible;
  position: relative;
  min-width: 280px;
}
.rb-search__field--pair .rb-search__cell {
  flex: 1;
  padding: 14px 22px;
  min-width: 0;
}
.rb-search__field--pair .rb-search__cell:first-child {
  padding-left: 34px;
}
.rb-search__field--pair .rb-search__cell:last-child {
  padding-right: 34px;
  border-right: 1px solid #e4e7ec;
}
.rb-search__swap {
  appearance: none;
  border: 1.5px solid rgba(225, 29, 46, 0.2);
  background: #fff;
  color: var(--rb-red);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  box-shadow: 0 6px 16px rgba(26, 28, 30, 0.1);
  transition: background .22s ease, color .22s ease, transform .3s ease, border-color .22s ease, box-shadow .22s ease;
}
.rb-search__swap:hover {
  background: var(--rb-red);
  color: #fff;
  border-color: var(--rb-red);
  box-shadow: 0 10px 22px rgba(225, 29, 46, 0.28);
  transform: translate(-50%, -50%) rotate(180deg);
}
.rb-search__field label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--rb-teal);
  margin-bottom: 6px;
}
.rb-search__field label svg {
  flex-shrink: 0;
  opacity: .9;
}
.rb-search__field input,
.rb-search__field select {
  width: 100%;
  border: 0;
  background: transparent;
  outline: none;
  box-shadow: none;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--rb-ink);
  height: 28px;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
}
.rb-search__field input {
  cursor: text;
}
.rb-search__field input::placeholder {
  color: #9aa0a8;
  font-weight: 500;
}
.rb-search__submit {
  appearance: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 148px;
  padding: 0 26px;
  border-radius: 20px;
  background: linear-gradient(145deg, #ff3142 0%, #E11D2E 45%, #b91422 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  font-family: inherit;
  transition: transform .22s ease, box-shadow .25s ease, filter .2s ease;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 14px 30px rgba(225, 29, 46, 0.38);
  align-self: stretch;
  min-height: 76px;
  position: relative;
  overflow: hidden;
}
.rb-search__submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  transform: translateX(120%);
  transition: transform .55s ease;
}
.rb-search__submit:hover {
  filter: brightness(1.04);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 18px 36px rgba(225, 29, 46, 0.45);
  transform: translateY(-2px);
}
.rb-search__submit:hover::after {
  transform: translateX(-120%);
}
.rb-search__submit .icon {
  font-size: 18px;
  color: #fff;
}

@media (max-width: 991px) {
  .slider-default .home-1 .box-title {
    padding: 120px 0 150px !important;
  }
  .hero { margin-bottom: 16px; overflow: visible; }
  .rb-search__tabs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    align-self: stretch;
    border-radius: 22px 22px 0 0;
  }
  .rb-search__tab {
    flex: none;
    flex-direction: column;
    justify-content: center;
    padding: 9px 4px 8px;
    font-size: 12px;
    gap: 4px;
  }
  .rb-search__shell {
    border-radius: 0 0 24px 24px;
    border-start-start-radius: 0;
  }
  .rb-search__fields {
    flex-direction: column;
    gap: 10px;
  }
  .rb-search__track {
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
  }
  .rb-search__divider {
    display: none;
  }
  .rb-search__field,
  .rb-search__field--date,
  .rb-search__field--sm,
  .rb-search__field--grow,
  .rb-search__field--pair {
    flex: none !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
  }
  .rb-search__field--date,
  .rb-search__field--sm {
    border-top: 1px solid #e4e7ec;
  }
  .rb-search__field--pair {
    flex-direction: column;
  }
  .rb-search__field--pair .rb-search__cell:first-child,
  .rb-search__field--pair .rb-search__cell:last-child {
    padding: 12px 14px;
    border: 0;
  }
  .rb-search__field--pair .rb-search__cell:last-child {
    border-top: 1px solid #e4e7ec;
  }
  .rb-search__swap {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: -12px auto;
    width: 40px;
    height: 40px;
    transform: rotate(90deg);
  }
  .rb-search__swap:hover {
    transform: rotate(270deg);
  }
  .rb-search__submit {
    width: 100%;
    min-height: 52px;
    border-radius: 16px;
    min-width: 0;
  }
  .rb-datepicker {
    min-width: 0 !important;
    width: 100%;
  }
  .rb-datepicker__panel {
    right: 0;
    left: 0;
    width: auto;
    max-width: none;
  }
}
@media (max-width: 767px) {
  .slider-default .home-1 .box-title {
    padding: 84px 0 88px !important;
  }
  .slider-default .home-1 .box-banner {
    min-height: 268px !important;
  }
  .tab-content.pos-1 {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    margin-top: -36px;
    padding: 0 12px;
    z-index: 40;
  }
  .hero {
    margin-bottom: 28px;
    overflow: visible;
  }
  .rb-search__shell {
    border-radius: 0 0 22px 22px;
    border-start-start-radius: 0;
  }
  .rb-search__tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
    width: 100%;
    align-self: stretch;
    padding: 6px;
    border-radius: 20px 20px 0 0;
  }
  .rb-search__tab {
    flex: none;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    padding: 8px 4px 7px;
    font-size: 11.5px;
    gap: 4px;
    border-radius: 12px;
  }
  .rb-search__tab.is-active {
    transform: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  }
  .rb-search__tab-ico svg {
    width: 15px;
    height: 15px;
  }
  .rb-search__body {
    padding: 12px;
  }
  .rb-search__track {
    border-radius: 16px;
  }
  .rb-search__field {
    padding: 12px 14px;
  }
  .rb-search__field label {
    font-size: 11px;
    margin-bottom: 4px;
  }
  .rb-search__field input,
  .rb-search__field select {
    font-size: 15px;
    height: 26px;
  }
  .rb-search__submit {
    min-height: 50px;
    font-size: 15px;
    border-radius: 14px;
  }
}
@media (max-width: 575px) {
  .slider-default .home-1 .box-title {
    padding: 80px 0 80px !important;
  }
  .slider-default .home-1 .box-banner {
    min-height: 240px !important;
  }
  .tab-content.pos-1 {
    margin-top: -28px;
    padding: 0 10px;
  }
  .rb-search__tabs {
    gap: 3px;
    padding: 5px;
  }
  .rb-search__tab {
    padding: 8px 2px 6px;
    font-size: 11px;
  }
}

/* Hero nav arrows */
.style-hero-1 .style-nav-1 {
  background: #fff;
  border: 1px solid rgba(225, 29, 46, 0.15);
  box-shadow: 0 8px 24px rgba(26, 28, 30, 0.08);
  transition: all .3s ease;
}
.style-hero-1 .style-nav-1:hover {
  background: var(--rb-red);
  border-color: var(--rb-red);
}
.style-hero-1 .style-nav-1:hover img {
  filter: brightness(0) invert(1);
}

/* ——— Sections ——— */
.flat-section {
  padding-top: 88px;
  padding-bottom: 88px;
}
.flat-section .box-title {
  margin-bottom: 36px;
  position: relative;
}
.flat-section .box-title .title {
  font-weight: 800;
  position: relative;
  display: inline-block;
  font-size: clamp(26px, 3vw, 36px) !important;
  line-height: 1.3 !important;
  color: var(--rb-ink);
  letter-spacing: -0.02em;
  margin-bottom: 0 !important;
}
.flat-section .box-title.text-center .title,
.flat-section .box-title .title.h1 {
  margin-bottom: 0 !important;
}
.flat-section .box-title .title::after {
  display: none;
}
.flat-section .box-title .subtitle,
.flat-section .box-title .desc {
  color: #6b6e6a;
  font-size: 15px;
  margin-top: 14px;
}

/* Stylish section heading */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--rb-teal-soft);
  border: 1px solid rgba(31, 122, 110, 0.16);
  color: var(--rb-teal-dark);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}
.section-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rb-gold);
  box-shadow: 0 0 0 3px rgba(196, 162, 101, 0.28);
  flex-shrink: 0;
}

.rb-heading-accent {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}
.flat-section .box-title.text-center .rb-heading-accent {
  justify-content: center;
}
.rb-heading-accent__line {
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--rb-gold), rgba(196, 162, 101, 0.12));
}
.flat-section .box-title.text-center .rb-heading-accent__line:first-child {
  background: linear-gradient(270deg, var(--rb-teal), rgba(31, 122, 110, 0.12));
}
.rb-heading-accent__mark {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--rb-gold);
  transform: rotate(45deg);
  box-shadow: 0 4px 10px rgba(196, 162, 101, 0.4);
  flex-shrink: 0;
}
.flat-section .box-title:not(.text-center) .rb-heading-accent__line:last-child {
  display: none;
}


.bg-color-first {
  background:
    radial-gradient(ellipse 70% 55% at 0% 100%, rgba(31, 122, 110, 0.07), transparent 50%),
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(196, 162, 101, 0.1), transparent 55%),
    linear-gradient(180deg, #f7f4ee 0%, #fbf7f1 100%) !important;
  position: relative;
}
.bg-color-first::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    radial-gradient(rgba(31, 122, 110, 0.08) 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  mask-image: linear-gradient(180deg, #000 10%, transparent 90%);
  z-index: 0;
}
.bg-color-first > .container {
  position: relative;
  z-index: 1;
}

/* ——— Cards ——— */
.item.hover-img {
  transition: transform .35s ease, box-shadow .35s ease;
}
.item.hover-img .archive-top {
  border-radius: 16px;
  position: relative;
}
/* Keep image zoom clipped without hiding badges that sit on the edge */
.item.hover-img .archive-top .images-group,
.item.hover-img .archive-top .img-style {
  border-radius: 16px;
  overflow: hidden;
  display: block;
}
.item.hover-img .archive-top img,
.item.hover-img .images-group img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .55s ease;
}
.item.hover-img:hover .archive-top img,
.item.hover-img:hover .images-group img {
  transform: scale(1.06);
}
.item.hover-img .archive-bottom {
  padding-top: 14px;
}
.item.hover-img .tour-title a.link:hover {
  color: var(--rb-red);
}
.item.hover-img .flag-tag,
.item.hover-img .tag .flag-total {
  background: var(--rb-red) !important;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 12px;
  box-shadow: 0 6px 16px rgba(225, 29, 46, 0.25);
}
.item.hover-img .price {
  color: var(--rb-red) !important;
  font-weight: 800;
}
.item.hover-img .list-star .icon {
  color: var(--rb-red) !important;
}

/* ——— Popular cities cards (image overlay style) ——— */
.rb-cities-slider {
  width: 100%;
  overflow: hidden;
}
.rb-cities-slider .swiper {
  overflow: hidden;
  padding-bottom: 40px;
}
.rb-cities-slider .slider-control {
  margin-top: 4px;
}
.rb-city-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 220px;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none !important;
  background-color: #2a2a2a;
  box-shadow: 0 14px 32px rgba(26, 28, 30, 0.12);
  transition: transform .35s ease, box-shadow .35s ease;
}
.rb-city-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.rb-city-card:hover .rb-city-card__img {
  transform: scale(1.06);
}
.rb-city-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 12, 14, 0.15) 0%,
    rgba(20, 12, 14, 0.25) 40%,
    rgba(20, 12, 14, 0.55) 100%
  );
  transition: background .35s ease;
  z-index: 1;
}
.rb-city-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(26, 28, 30, 0.18);
}
.rb-city-card:hover::before {
  background: linear-gradient(
    180deg,
    rgba(20, 12, 14, 0.2) 0%,
    rgba(20, 12, 14, 0.35) 45%,
    rgba(225, 29, 46, 0.35) 100%
  );
}
.rb-city-card__name {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 9px 22px;
  background: var(--rb-red);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 8px 18px rgba(225, 29, 46, 0.3);
  white-space: nowrap;
}
.rb-city-card__cta {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 148px;
  padding: 11px 22px;
  background: var(--rb-red);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -6px 18px rgba(225, 29, 46, 0.25);
  transition: background .25s ease, gap .25s ease;
}
.rb-city-card:hover .rb-city-card__cta {
  background: var(--rb-red-dark);
  gap: 12px;
}
.rb-city-card__cta svg {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .rb-city-card {
    aspect-ratio: 16 / 11;
    min-height: 200px;
  }
  .rb-city-card__name {
    font-size: 14px;
    padding: 8px 18px;
  }
  .rb-city-card__cta {
    font-size: 13px;
    min-width: 130px;
    padding: 10px 18px;
  }
}

/* ——— Tour cards (latest tours) ——— */
.rb-tours-section {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(225, 29, 46, 0.05), transparent 60%),
    #fff;
}
.rb-tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rb-tour-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none !important;
  color: inherit;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(26, 28, 30, 0.06);
  box-shadow: 0 10px 28px rgba(26, 28, 30, 0.06);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.rb-tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(26, 28, 30, 0.12);
  border-color: rgba(225, 29, 46, 0.18);
}
.rb-tour-card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #e8eef2;
}
.rb-tour-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.rb-tour-card:hover .rb-tour-card__media img {
  transform: scale(1.07);
}
.rb-tour-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20, 12, 14, 0.55) 100%);
  pointer-events: none;
}
.rb-tour-card__badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(145deg, #d4b36f, #9a7840);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(154, 120, 64, 0.32);
}
.rb-tour-card__place {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: calc(100% - 28px);
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--rb-ink);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(6px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rb-tour-card__place svg {
  color: var(--rb-teal);
  flex-shrink: 0;
}
.rb-tour-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 18px 16px;
  flex: 1;
}
.rb-tour-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.55;
  color: var(--rb-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.9em;
  transition: color .2s ease;
}
.rb-tour-card:hover .rb-tour-card__title {
  color: var(--rb-teal-dark);
}
.rb-tour-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rb-tour-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--rb-teal-soft);
  color: #5a5d5a;
  font-size: 12px;
  font-weight: 600;
}
.rb-tour-card__chip svg {
  color: var(--rb-teal);
  flex-shrink: 0;
}
.rb-tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f0f0f2;
}
.rb-tour-card__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  min-width: 0;
}
.rb-tour-card__amount {
  font-size: 17px;
  font-weight: 800;
  color: var(--rb-gold-dark);
  white-space: nowrap;
}
.rb-tour-card__amount--muted {
  font-size: 13px;
  font-weight: 700;
  color: #8a8c8a;
}
.rb-tour-card__price small {
  font-size: 12px;
  font-weight: 600;
  color: #8a8c8a;
}
.rb-tour-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(225, 29, 46, 0.08);
  color: var(--rb-red);
  font-size: 13px;
  font-weight: 800;
  transition: background .2s ease, gap .2s ease;
}
.rb-tour-card:hover .rb-tour-card__cta {
  background: var(--rb-red);
  color: #fff;
  gap: 8px;
}

@media (max-width: 991px) {
  .rb-tours-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media (max-width: 575px) {
  .rb-tours-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .rb-hotels-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .rb-hotel-card {
    border-radius: 16px;
  }
  .rb-hotel-card__body {
    padding: 12px 12px 14px;
    gap: 8px;
  }
  .rb-hotel-card__title {
    font-size: 13.5px;
    line-height: 1.45;
  }
  .rb-hotel-card__amenities {
    display: none;
  }
  .rb-hotel-card__place {
    font-size: 11px;
    padding: 5px 8px;
    left: 8px;
    bottom: 8px;
    max-width: calc(100% - 16px);
  }
}

/* ——— Hotel cards ——— */
.rb-hotels-section {
  overflow: hidden;
}
.rb-hotels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.rb-hotel-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none !important;
  color: inherit;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(26, 28, 30, 0.06);
  box-shadow: 0 10px 28px rgba(26, 28, 30, 0.06);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.rb-hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(26, 28, 30, 0.12);
  border-color: rgba(225, 29, 46, 0.18);
}
.rb-hotel-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8eef2;
}
.rb-hotel-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.rb-hotel-card:hover .rb-hotel-card__media img {
  transform: scale(1.07);
}
.rb-hotel-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 12, 14, 0.55) 100%);
  pointer-events: none;
}
.rb-hotel-card__stars {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20, 12, 14, 0.72);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  backdrop-filter: blur(6px);
}
.rb-hotel-card__stars svg {
  color: #ffd166;
}
.rb-hotel-card__place {
  position: absolute;
  z-index: 2;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: calc(100% - 24px);
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--rb-ink);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(6px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rb-hotel-card__place svg {
  color: var(--rb-teal);
  flex-shrink: 0;
}
.rb-hotel-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 16px 14px;
  flex: 1;
}
.rb-hotel-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  color: var(--rb-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s ease;
}
.rb-hotel-card:hover .rb-hotel-card__title {
  color: var(--rb-teal-dark);
}
.rb-hotel-card__address {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: #7a7d7a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rb-hotel-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.rb-hotel-card__amenities li {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--rb-gold-soft);
  color: var(--rb-gold-dark);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}
.rb-hotel-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f0f0f2;
}
.rb-hotel-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
  min-width: 0;
}
.rb-hotel-card__label {
  font-size: 11px;
  font-weight: 600;
  color: #8a8c8a;
}
.rb-hotel-card__amount {
  font-size: 16px;
  font-weight: 800;
  color: var(--rb-gold-dark);
  white-space: nowrap;
}
.rb-hotel-card__amount--muted {
  font-size: 12px;
  font-weight: 700;
  color: #8a8c8a;
}
.rb-hotel-card__price small {
  font-size: 11px;
  font-weight: 600;
  color: #8a8c8a;
}
.rb-hotel-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(225, 29, 46, 0.08);
  color: var(--rb-red);
  font-size: 13px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, gap .2s ease;
}
.rb-hotel-card:hover .rb-hotel-card__cta {
  background: var(--rb-red);
  color: #fff;
  gap: 8px;
}

@media (max-width: 1199px) {
  .rb-hotels-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .rb-hotels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 575px) {
  .rb-hotels-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* ——— Articles / magazine ——— */
.rb-articles-section {
  background:
    radial-gradient(ellipse 60% 45% at 100% 0%, rgba(61, 107, 140, 0.08), transparent 55%),
    #fff;
}
.rb-articles-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 22px;
}
.rb-article-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none !important;
  color: inherit;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(26, 28, 30, 0.06);
  box-shadow: 0 10px 28px rgba(26, 28, 30, 0.05);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.rb-article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(26, 28, 30, 0.11);
  border-color: rgba(225, 29, 46, 0.16);
}
.rb-article-card.is-featured {
  grid-row: 1 / span 2;
}
.rb-article-card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #e8eef2;
}
.rb-article-card.is-featured .rb-article-card__media {
  aspect-ratio: auto;
  flex: 1;
  min-height: 280px;
}
.rb-article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.rb-article-card:hover .rb-article-card__media img {
  transform: scale(1.06);
}
.rb-article-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 12, 14, 0.35) 100%);
  pointer-events: none;
}
.rb-article-card__cat {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--rb-sky);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(61, 107, 140, 0.28);
}
.rb-article-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 16px;
}
.rb-article-card.is-featured .rb-article-card__body {
  padding: 22px 22px 20px;
}
.rb-article-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.rb-article-card__date,
.rb-article-card__time {
  font-size: 12px;
  font-weight: 600;
  color: #8a8c8a;
}
.rb-article-card__title {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
  color: var(--rb-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s ease;
}
.rb-article-card.is-featured .rb-article-card__title {
  font-size: 22px;
  -webkit-line-clamp: 3;
  line-height: 1.45;
}
.rb-article-card:hover .rb-article-card__title {
  color: var(--rb-sky);
}
.rb-article-card__excerpt {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #6b6e6a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.rb-article-card:not(.is-featured) .rb-article-card__excerpt {
  display: none;
}
.rb-article-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  align-self: flex-start;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(225, 29, 46, 0.08);
  color: var(--rb-red);
  font-size: 13px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, gap .2s ease;
}
.rb-article-card:hover .rb-article-card__cta {
  background: var(--rb-red);
  color: #fff;
  gap: 8px;
}

@media (max-width: 991px) {
  .rb-articles-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .rb-article-card.is-featured {
    grid-column: 1 / -1;
    grid-row: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
  }
  .rb-article-card.is-featured .rb-article-card__media {
    min-height: 220px;
    height: 100%;
  }
}
@media (max-width: 575px) {
  .rb-articles-layout {
    grid-template-columns: 1fr;
  }
  .rb-article-card.is-featured {
    display: flex;
    grid-template-columns: none;
  }
  .rb-article-card.is-featured .rb-article-card__media {
    min-height: 200px;
    aspect-ratio: 16 / 11;
    flex: none;
  }
  .rb-article-card.is-featured .rb-article-card__title {
    font-size: 17px;
  }
}

/* ——— Buttons ——— */
.tf-btn.primary {
  background: var(--rb-red) !important;
  border-color: var(--rb-red) !important;
  color: #fff !important;
  font-weight: 700;
  border-radius: 12px;
  transition: all .3s ease;
}
.tf-btn.primary.hover-1:hover {
  background: #fff !important;
  color: var(--rb-red) !important;
  border-color: var(--rb-red) !important;
  box-shadow: 0 10px 28px rgba(225, 29, 46, 0.18);
}
.tf-btn.primary.hover-1:hover .icon {
  color: var(--rb-red) !important;
}

/* Pagination dots */
.swiper-pagination-bullet-active,
.sw-pagination-wish .swiper-pagination-bullet-active {
  background: var(--rb-red) !important;
}

/* ——— Footer ——— */
.footer {
  background: #141414 !important;
  position: relative;
}
.footer::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--rb-gold), var(--rb-teal), var(--rb-red), transparent);
}
.footer .widget-title .h4 {
  position: relative;
  padding-bottom: 12px;
}
.footer .widget-title .h4::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--rb-gold);
}
.footer .tour-item a:hover,
.footer .widget-contact p {
  color: #e2c48a;
}
.footer .box-icon.social:hover {
  background: var(--rb-red) !important;
  border-color: var(--rb-red) !important;
}

/* ——— Motion ——— */
@keyframes rb-fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero .box-title {
  animation: rb-fade-up .8s ease both;
}
.rb-search {
  animation: rb-fade-up .9s .15s ease both;
}

/* Breadcrumb / inner pages */
.page-title-wrap { padding-top: 140px; }

@media (max-width: 991px) {
  .header .header-ct-center { display: none; }
  .flat-section { padding-top: 56px; padding-bottom: 56px; }
}

/* Force compact hero even against template !important breakpoints */
.slider-default .home-1 .box-title,
.hero .slider-default .home-1 .box-title {
  padding: 150px 0 180px !important;
}
@media (max-width: 991px) {
  .slider-default .home-1 .box-title,
  .hero .slider-default .home-1 .box-title {
    padding: 120px 0 160px !important;
  }
  .slider-default .home-1 .box-banner {
    min-height: 460px !important;
  }
}
@media (max-width: 767px) {
  .rb-header .header-wrap {
    min-height: 64px;
    height: 64px;
  }
  .slider-default .home-1 .box-title,
  .hero .slider-default .home-1 .box-title {
    padding: 84px 0 88px !important;
  }
  .slider-default .home-1 .box-banner {
    min-height: 268px !important;
  }
  .flat-section.bg-color-first {
    padding-top: 36px;
  }
  .flat-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .slider-default .home-1 .box-title,
  .hero .slider-default .home-1 .box-title {
    padding: 80px 0 80px !important;
  }
  .slider-default .home-1 .box-banner {
    min-height: 240px !important;
  }
}

/* ——— Global atmosphere & motion polish ——— */
.rb-ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.rb-ambient__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.38;
  will-change: transform;
}
.rb-ambient__blob--a {
  width: 42vw;
  height: 42vw;
  max-width: 520px;
  max-height: 520px;
  top: 12%;
  right: -12%;
  background: radial-gradient(circle, rgba(225, 29, 46, 0.22), transparent 70%);
  animation: rb-float-a 16s ease-in-out infinite alternate;
}
.rb-ambient__blob--b {
  width: 36vw;
  height: 36vw;
  max-width: 440px;
  max-height: 440px;
  bottom: 8%;
  left: -10%;
  background: radial-gradient(circle, rgba(31, 122, 110, 0.2), transparent 70%);
  animation: rb-float-b 18s ease-in-out infinite alternate;
}
.rb-ambient__blob--c {
  width: 28vw;
  height: 28vw;
  max-width: 340px;
  max-height: 340px;
  top: 48%;
  left: 38%;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.22), transparent 70%);
  animation: rb-float-a 22s ease-in-out infinite alternate-reverse;
}
.rb-ambient__grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(26, 28, 30, 0.35) 2px, rgba(26, 28, 30, 0.35) 3px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(26, 28, 30, 0.2) 2px, rgba(26, 28, 30, 0.2) 3px);
  mix-blend-mode: multiply;
}
@keyframes rb-float-a {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-4%, 6%, 0) scale(1.08); }
}
@keyframes rb-float-b {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(5%, -5%, 0) scale(1.06); }
}

.header.style-1.is-scrolled,
.rb-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 12px 36px rgba(26, 28, 30, 0.08);
  border-bottom-color: rgba(196, 162, 101, 0.22);
}

/* Homepage: glass header over the hero */
.rb-home-page .rb-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(12, 8, 10, 0.58) 0%, rgba(12, 8, 10, 0.18) 62%, transparent 100%) !important;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.rb-home-page .rb-header:not(.is-scrolled) .rb-logo,
.rb-home-page .rb-header:not(.is-scrolled) .rb-logo__text {
  color: #fff;
}
.rb-home-page .rb-header:not(.is-scrolled) .rb-logo__text span {
  color: #ffd0d4;
}
.rb-home-page .rb-header:not(.is-scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.92) !important;
}
.rb-home-page .rb-header:not(.is-scrolled) .nav-link:hover,
.rb-home-page .rb-header:not(.is-scrolled) .menu-item--mega:hover > .nav-link {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.14);
}
.rb-home-page .rb-header:not(.is-scrolled) .rb-header__search {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.rb-home-page .rb-header:not(.is-scrolled) .rb-header__search:hover {
  background: #fff;
  color: var(--rb-red);
}
.rb-home-page .rb-header:not(.is-scrolled) .rb-header__burger {
  background: rgba(255, 255, 255, 0.14);
}
.rb-home-page .rb-header:not(.is-scrolled) .rb-header__burger span {
  background: #fff;
}

.flat-section {
  position: relative;
  isolation: isolate;
}
.flat-section::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 162, 101, 0.35), rgba(31, 122, 110, 0.28), transparent);
  pointer-events: none;
  opacity: 0.7;
}

.rb-tours-section {
  background:
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(31, 122, 110, 0.07), transparent 55%),
    linear-gradient(180deg, #fff 0%, #f7fbf9 100%);
}
.rb-articles-section {
  background:
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(61, 107, 140, 0.08), transparent 50%),
    #fff;
}

.section-eyebrow {
  animation: rb-soft-pulse 3.6s ease-in-out infinite;
}
@keyframes rb-soft-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196, 162, 101, 0); }
  50% { box-shadow: 0 0 0 6px rgba(196, 162, 101, 0.12); }
}
.rb-heading-accent__mark {
  animation: rb-spin-slow 8s linear infinite;
}
@keyframes rb-spin-slow {
  from { transform: rotate(45deg); }
  to { transform: rotate(405deg); }
}

.rb-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .7s var(--rb-ease),
    transform .7s var(--rb-ease);
  transition-delay: var(--rb-delay, 0s);
}
.rb-reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.rb-tour-card,
.rb-hotel-card,
.rb-article-card,
.rb-city-card {
  transition:
    transform .4s var(--rb-ease),
    box-shadow .4s var(--rb-ease),
    border-color .3s ease !important;
}
.rb-tour-card:hover,
.rb-hotel-card:hover,
.rb-article-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 48px rgba(26, 28, 30, 0.12) !important;
}
.rb-city-card:hover {
  transform: translateY(-6px) scale(1.015) !important;
}

.tf-btn.primary {
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 28px rgba(225, 29, 46, 0.28) !important;
  transition: transform .25s var(--rb-ease), box-shadow .25s ease, filter .2s ease !important;
}
.tf-btn.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.28) 50%, transparent 75%);
  transform: translateX(130%);
  transition: transform .65s ease;
}
.tf-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(225, 29, 46, 0.38) !important;
}
.tf-btn.primary:hover::before {
  transform: translateX(-130%);
}

.footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(31, 122, 110, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(196, 162, 101, 0.16), transparent 50%),
    linear-gradient(165deg, #15202b 0%, #1c2a3a 55%, #12181f 100%) !important;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
  mask-image: linear-gradient(180deg, #000, transparent 85%);
}
.footer .top-footer,
.footer .inner-footer,
.footer .bottom-footer {
  position: relative;
  z-index: 1;
}
.footer .tour-item a {
  transition: transform .25s ease, color .25s ease;
}
.footer .tour-item a:hover {
  transform: translateX(-4px);
}

.page-title-wrap {
  position: relative;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(31, 122, 110, 0.22), transparent 60%),
    linear-gradient(180deg, #15202b 0%, #1c2a3a 100%);
}
.page-title-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 48px;
  background: linear-gradient(180deg, transparent, var(--rb-paper));
  pointer-events: none;
}

html.rb-ready body {
  animation: rb-page-in .55s var(--rb-ease) both;
}
@keyframes rb-page-in {
  from { opacity: 0.55; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .rb-ambient__blob,
  .section-eyebrow,
  .rb-heading-accent__mark,
  html.rb-ready body {
    animation: none !important;
  }
  .rb-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ——— Tours listing page ——— */
.rb-tours-page {
  --rb-tour-pink: #f45d6f;
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(196, 162, 101, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 35% at 0% 40%, rgba(31, 122, 110, 0.08), transparent 50%),
    var(--rb-mist);
}

.rb-tours-hero {
  position: relative;
  padding: 118px 0 28px;
  overflow: visible;
}
.rb-tours-hero__bg {
  position: absolute;
  inset: 0;
  background: #1a1012;
  pointer-events: none;
  transform: none;
  overflow: hidden;
  border-radius: 0;
  z-index: 0;
}
.rb-tours-hero__bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 56px;
  z-index: 1;
  background: linear-gradient(180deg, transparent, var(--rb-mist));
  pointer-events: none;
}
.rb-tours-hero .container { position: relative; z-index: 3; }
.rb-tours-hero__intro {
  max-width: 640px;
  margin-bottom: 28px;
  color: #fff;
}
.rb-tours-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.rb-tours-hero__title {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.25;
  color: #fff;
}
.rb-tours-hero__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
}

.rb-tours-body {
  padding-top: 28px !important;
  padding-bottom: 72px !important;
  background: transparent;
}
.rb-tours-body::after { display: none; }

.rb-tours-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.rb-tours-filters__card {
  position: sticky;
  top: 100px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(26, 28, 30, 0.06);
  box-shadow: 0 12px 32px rgba(26, 28, 30, 0.06);
  padding: 22px;
}
.rb-tours-filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0eceb;
}
.rb-tours-filters__head h2 {
  margin: 0;
  font-size: 17px;
  font-weight: 850;
  color: var(--rb-ink);
}
.rb-tours-filters__reset {
  font-size: 12px;
  font-weight: 700;
  color: var(--rb-red);
  text-decoration: none !important;
}
.rb-tours-filters__group { margin-bottom: 18px; }
.rb-tours-filters__label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--rb-ink);
}
.rb-tours-filters__scopes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rb-tours-filters__scope {
  display: block;
  cursor: pointer;
  margin: 0;
}
.rb-tours-filters__scope input { position: absolute; opacity: 0; pointer-events: none; }
.rb-tours-filters__scope span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid #ebe7e6;
  background: #faf8f7;
  font-size: 13px;
  font-weight: 700;
  color: #4a4d4a;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.rb-tours-filters__scope span em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  color: #8a8c8a;
  background: #fff;
  border-radius: 999px;
  padding: 2px 8px;
}
.rb-tours-filters__scope.is-active span,
.rb-tours-filters__scope:has(input:checked) span,
.rb-tours-filters__scope:hover span {
  border-color: rgba(225, 29, 46, 0.3);
  background: var(--rb-red-soft);
  color: var(--rb-red);
}
.rb-tours-filters__scope.is-active span em,
.rb-tours-filters__scope:has(input:checked) span em {
  background: #fff;
  color: var(--rb-red);
}
.rb-tours-filters__select {
  width: 100%;
  height: 44px;
  border: 1px solid #ebe7e6;
  border-radius: 12px;
  background: #faf8f7;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rb-ink);
}
.rb-tours-filters__prices {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
}
.rb-tours-filters__prices input {
  width: 100%;
  height: 44px;
  border: 1px solid #ebe7e6;
  border-radius: 12px;
  background: #faf8f7;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 600;
}
.rb-tours-filters__prices span {
  font-size: 12px;
  font-weight: 700;
  color: #8a8c8a;
}
.rb-tours-filters__check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 700;
  color: #4a4d4a;
  cursor: pointer;
}
.rb-tours-filters__check input {
  width: 18px;
  height: 18px;
  accent-color: var(--rb-red);
}
.rb-tours-filters__apply {
  width: 100%;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: var(--rb-ink);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  transition: background .2s ease, transform .2s ease;
}
.rb-tours-filters__apply:hover {
  background: var(--rb-red);
  transform: translateY(-1px);
}

.rb-tours-block + .rb-tours-block { margin-top: 40px; }
.rb-tours-block__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.rb-tours-block__eyebrow {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--rb-red);
}
.rb-tours-block__title {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 900;
  color: var(--rb-ink);
}
.rb-tours-block__count {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #8a8c8a;
}
.rb-tours-block__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 800;
  color: var(--rb-red);
  text-decoration: none !important;
  transition: gap .2s ease;
}
.rb-tours-block__more:hover { gap: 8px; color: var(--rb-red-dark); }

.rb-tours-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rb-tours-empty {
  margin: 0;
  padding: 36px 20px;
  text-align: center;
  background: #fff;
  border-radius: 18px;
  border: 1px dashed #e4dfde;
  color: #8a8c8a;
  font-weight: 600;
}
.rb-tours-pagination {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

/* Horizontal tour row card (list variant) */
.rb-tour-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  border: 1px solid rgba(26, 28, 30, 0.06);
  box-shadow: 0 10px 28px rgba(26, 28, 30, 0.05);
  transition: transform .35s var(--rb-ease), box-shadow .35s var(--rb-ease), border-color .3s ease;
}
.rb-tour-row__inner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: 180px;
}
.rb-tour-row__status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  background: linear-gradient(90deg, #9b1522 0%, #d21f32 50%, #9b1522 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
}
.rb-tour-row__status svg { flex-shrink: 0; }
.rb-tour-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(26, 28, 30, 0.1);
  border-color: rgba(244, 93, 111, 0.25);
}
.rb-tour-row__media {
  position: relative;
  min-height: 180px;
  background: #e8eef2;
}
.rb-tour-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.rb-tour-row:hover .rb-tour-row__media img { transform: scale(1.06); }
.rb-tour-row__badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--rb-red);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
}
.rb-tour-row__badge--special {
  top: 12px;
  bottom: auto;
  right: auto;
  left: 12px;
  background: #fff;
  color: var(--rb-red);
}
.rb-tour-row__icons {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  gap: 6px;
}
.rb-tour-row__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--rb-tour-pink);
  color: var(--rb-tour-pink);
}
.rb-tour-row__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 18px 20px;
  align-items: stretch;
}
.rb-tour-row__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.45;
  color: var(--rb-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s ease;
}
.rb-tour-row:hover .rb-tour-row__title { color: var(--rb-teal-dark); }
.rb-tour-row__route {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-bottom: 12px;
}
.rb-tour-row__loc {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: #4a4d4a;
}
.rb-tour-row__loc svg { color: var(--rb-teal); flex-shrink: 0; }
.rb-tour-row__arrow { color: #c5c2c1; display: inline-flex; }
.rb-tour-row__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.rb-tour-row__meta li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #5a5d5a;
  line-height: 1.55;
}
.rb-tour-row__meta li span {
  min-width: 0;
  word-break: break-word;
}
.rb-tour-row__meta li svg {
  color: var(--rb-teal);
  flex-shrink: 0;
  margin-top: 2px;
}
.rb-tour-row__aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  min-width: 200px;
  padding: 16px 16px 16px 0;
  border-right: 0;
  margin-right: 0;
}
.rb-tour-row__book {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding: 16px 16px 14px;
  border-radius: 20px;
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(196, 162, 101, 0.22), transparent 58%),
    linear-gradient(165deg, #1c2a3a 0%, #16353a 58%, #1a242c 100%);
  box-shadow: 0 16px 32px rgba(22, 32, 42, 0.18);
}
.rb-tour-row__price-label {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  color: rgba(244, 234, 214, 0.72);
  margin-bottom: 4px;
}
.rb-tour-row__price-value {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.rb-tour-row__amount {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: #e8d5a8;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.rb-tour-row__amount--muted {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
}
.rb-tour-row__price small {
  display: block;
  margin-top: 2px;
  font-size: 11.5px;
  font-weight: 750;
  color: rgba(255, 255, 255, 0.52);
}
.rb-tour-row__cap {
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 750;
  color: rgba(255, 255, 255, 0.62);
}
.rb-tour-row__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  background: linear-gradient(145deg, #e8d5a8, #c4a265);
  color: #1c2a3a;
  font-size: 13.5px;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(8, 14, 18, 0.22);
  transition: background .2s ease, color .2s ease, gap .2s ease, box-shadow .2s ease;
}
.rb-tour-row:hover .rb-tour-row__cta {
  background: linear-gradient(145deg, #ff5a6a, var(--rb-red));
  color: #fff;
  gap: 10px;
  box-shadow: 0 12px 22px rgba(225, 29, 46, 0.28);
}
.rb-tour-row__kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--rb-teal);
}
.rb-tour-row__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.rb-tour-row__fact {
  padding: 8px 10px;
  border-radius: 12px;
  background: #f7f4f3;
  min-width: 0;
}
.rb-tour-row__fact small {
  display: block;
  margin-bottom: 2px;
  font-size: 10.5px;
  font-weight: 800;
  color: #8a8c8a;
}
.rb-tour-row__fact strong {
  display: block;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--rb-ink);
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rb-tour-row__ribbon {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(20, 12, 14, 0.78);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
}
.rb-tour-row__place {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: calc(100% - 24px);
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--rb-ink);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rb-tour-row__place svg { color: var(--rb-teal); flex-shrink: 0; }
.rb-tour-row__route span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rb-tour-row__route i {
  display: inline-block;
  width: 18px;
  height: 1px;
  flex-shrink: 0;
  background: #d8d0cf;
}

@media (max-width: 1100px) {
}
@media (max-width: 991px) {
  .rb-tours-layout {
    grid-template-columns: 1fr;
  }
  .rb-tours-filters__card {
    position: static;
  }
  .rb-tour-row__inner {
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .rb-tour-row__body { grid-template-columns: 1fr; }
  .rb-tour-row__aside { min-width: 0; padding: 0 0 4px; }
  .rb-tour-row__book {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 16px;
  }
  .rb-tour-row__cta { width: auto; min-width: 148px; }
}
@media (max-width: 700px) {
  .rb-tours-hero { padding: 100px 0 20px; }
  .rb-tour-row__inner {
    grid-template-columns: 1fr;
  }
  .rb-tour-row__media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
  .rb-tour-row__body {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .rb-tour-row__aside {
    min-width: 0;
    padding: 0 16px 16px;
    border-top: 0;
  }
  .rb-tour-row__book {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 16px;
    padding: 14px 16px;
  }
  .rb-tour-row__cta {
    width: auto;
    min-width: 148px;
  }
}

/* ——— Tour detail page ——— */
.rb-tour-detail {
  --rb-tour-pink: #f45d6f;
  background:
    radial-gradient(ellipse 55% 30% at 100% 0%, rgba(244, 93, 111, 0.06), transparent 55%),
    var(--rb-mist);
}

.rb-td-hero {
  position: relative;
  min-height: 560px;
  padding: 118px 0 84px;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.rb-td-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #12161c;
  cursor: zoom-in;
}
.rb-td-hero__media:focus-visible {
  outline: 3px solid var(--rb-gold);
  outline-offset: -3px;
}
.rb-td-hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: none;
}
.rb-td-hero.is-ended .rb-td-hero__photo {
  filter: grayscale(0.28) saturate(0.78) brightness(0.88);
}
.rb-td-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to left, rgba(10, 14, 20, 0.78) 0%, rgba(10, 14, 20, 0.42) 46%, rgba(10, 14, 20, 0.12) 100%),
    linear-gradient(to top, rgba(10, 14, 20, 0.62) 0%, rgba(10, 14, 20, 0.08) 42%, rgba(10, 14, 20, 0.28) 100%);
}
.rb-td-hero__glow {
  position: absolute;
  z-index: 1;
  right: -8%;
  bottom: -18%;
  width: 52%;
  height: 240px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.32), transparent 70%);
  filter: blur(8px);
}
@media (prefers-reduced-motion: reduce) {
  .rb-td-hero__glow { display: none; }
  .rb-td-hero__frame:hover { transform: none !important; }
  .rb-td-fact:hover { transform: none; box-shadow: none; }
}
.rb-td-hero .container {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.rb-td-hero .container a,
.rb-td-hero .container button,
.rb-td-hero__copy,
.rb-td-hero__film,
.rb-td-hero__bar {
  pointer-events: auto;
}
.rb-td-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 72px;
  pointer-events: none;
  background: linear-gradient(to top, var(--rb-mist), transparent);
}
.rb-td-hero__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}
.rb-td-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}
.rb-td-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none !important;
  transition: color .2s ease;
}
.rb-td-breadcrumb a:hover { color: #fff; }
.rb-td-hero__gallery-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 9px 14px 9px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: zoom-in;
  transition: background .2s ease, transform .2s var(--rb-ease);
}
.rb-td-hero__gallery-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}
.rb-td-hero__gallery-btn b {
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--rb-red);
  font-size: 12px;
  font-weight: 900;
}
.rb-td-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: end;
  gap: 28px;
}
.rb-td-hero__grid.is-solo {
  grid-template-columns: minmax(0, 1fr);
}
.rb-td-hero__copy {
  position: relative;
  max-width: 760px;
  padding-right: 18px;
}
.rb-td-hero__copy::before {
  content: "";
  position: absolute;
  right: 0;
  top: 36px;
  width: 3px;
  height: 78px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--rb-gold), transparent);
}
.rb-td-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.rb-td-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--rb-red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}
.rb-td-tag--soft {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.rb-td-tag--accent {
  background: #fff;
  color: var(--rb-red);
}
.rb-td-hero__kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #e8d4a8;
}
.rb-td-hero__title {
  margin: 0 0 18px;
  max-width: 820px;
  font-size: clamp(30px, 4.4vw, 50px);
  font-weight: 900;
  line-height: 1.28;
  color: #fff;
  letter-spacing: -0.03em;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
.rb-td-hero__seo-note {
  margin: -6px 0 18px;
  max-width: 40rem;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}
.rb-td-hero__seo-note a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.rb-td-hero__journey {
  display: flex;
  align-items: stretch;
  max-width: 540px;
  margin-bottom: 16px;
}
.rb-td-hero__stop {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}
.rb-td-hero__stop:first-child {
  border-start-start-radius: 18px;
  border-end-start-radius: 18px;
}
.rb-td-hero__stop:last-child {
  border-start-end-radius: 18px;
  border-end-end-radius: 18px;
}
.rb-td-hero__stop small {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.68);
}
.rb-td-hero__stop strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rb-td-hero__rail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  flex-shrink: 0;
  color: #f0d9a6;
  background: rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
}
.rb-td-hero__rail::before {
  content: "";
  position: absolute;
  right: 6px;
  left: 6px;
  top: 50%;
  border-top: 1.5px dashed rgba(232, 212, 168, 0.7);
}
.rb-td-hero__rail svg {
  position: relative;
  z-index: 1;
  padding: 2px;
  background: rgba(18, 22, 28, 0.55);
  border-radius: 50%;
}
.rb-td-hero__price {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--rb-ink);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.rb-td-hero__price span {
  font-size: 12px;
  font-weight: 700;
  color: #8a8c8a;
}
.rb-td-hero__price strong {
  font-size: 18px;
  font-weight: 900;
  color: var(--rb-red);
}
.rb-td-hero__price small {
  font-size: 12px;
  font-weight: 700;
  color: #8a8c8a;
}
.rb-td-hero__film {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.rb-td-hero__frame {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #1c1416;
  cursor: zoom-in;
  box-shadow:
    0 18px 40px rgba(8, 6, 8, 0.38),
    0 0 0 3px rgba(255, 255, 255, 0.2);
  transition: transform .35s var(--rb-ease);
}
.rb-td-hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rb-td-hero__frame:hover { transform: translateY(-4px) rotate(0deg) !important; }
.rb-td-hero__frame-more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 14, 18, 0.48);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}
@media (min-width: 992px) {
  .rb-td-hero__film {
    position: relative;
    display: block;
    height: 268px;
  }
  .rb-td-hero__frame {
    position: absolute;
  }
  .rb-td-hero__frame--1 {
    width: 148px;
    height: 196px;
    right: 108px;
    top: 28px;
    transform: rotate(-8deg);
    z-index: 1;
  }
  .rb-td-hero__frame--2 {
    width: 160px;
    height: 214px;
    right: 0;
    top: 0;
    transform: rotate(7deg);
    z-index: 2;
  }
  .rb-td-hero__frame--3 {
    width: 134px;
    height: 176px;
    right: 58px;
    top: 86px;
    transform: rotate(-2deg);
    z-index: 3;
  }
}
@media (max-width: 991px) {
  .rb-td-hero__frame {
    width: 86px;
    height: 86px;
  }
}

.rb-td-facts {
  position: relative;
  z-index: 3;
  margin-top: -52px;
  margin-bottom: 8px;
}
.rb-td-pass {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(1200px 80px at 50% -20px, rgba(196, 162, 101, 0.16), transparent 60%),
    #fff;
  box-shadow:
    0 28px 56px rgba(28, 42, 58, 0.12),
    0 0 0 1px rgba(196, 162, 101, 0.22);
}
.rb-td-pass__band {
  height: 5px;
  background: linear-gradient(90deg, var(--rb-red) 0%, var(--rb-gold) 48%, var(--rb-teal) 100%);
}
.rb-td-pass__notch {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--rb-mist);
  box-shadow: inset 0 0 0 1px rgba(26, 28, 30, 0.06);
  transform: translateY(-50%);
  pointer-events: none;
}
.rb-td-pass__notch--start { right: -11px; }
.rb-td-pass__notch--end { left: -11px; }
.rb-td-facts__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
}
.rb-td-fact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  padding: 16px 14px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fbf7f1 0%, #fff 72%);
  border: 1px solid rgba(26, 28, 30, 0.04);
  transition: transform .25s var(--rb-ease), box-shadow .25s ease;
}
.rb-td-fact:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(28, 42, 58, 0.06);
}
.rb-td-fact + .rb-td-fact {
  border-inline-start: 0;
}
.rb-td-fact__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rb-red-soft);
  color: var(--rb-red);
}
.rb-td-fact__icon.is-depart {
  background: var(--rb-red-soft);
  color: var(--rb-red);
}
.rb-td-fact__icon.is-return {
  background: var(--rb-sky-soft);
  color: var(--rb-sky);
}
.rb-td-fact__icon.is-duration {
  background: var(--rb-gold-soft);
  color: var(--rb-gold-dark);
}
.rb-td-fact__icon.is-transport {
  background: var(--rb-teal-soft);
  color: var(--rb-teal);
}
.rb-td-fact__icon.is-capacity {
  background: #eef2f6;
  color: var(--rb-navy);
}
.rb-td-fact__body {
  min-width: 0;
  width: 100%;
}
.rb-td-fact small {
  display: block;
  margin-bottom: 4px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #8a8c8a;
}
.rb-td-fact strong {
  display: block;
  font-size: 14.5px;
  font-weight: 900;
  color: var(--rb-ink);
  line-height: 1.5;
}
.rb-td-fact__time {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--rb-gold-soft);
  color: var(--rb-gold-dark);
  font-size: 12px;
  font-weight: 800;
}

.rb-td-body {
  padding: 36px 0 72px;
}
.rb-td-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}
.rb-td-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}

.rb-td-gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 160px 160px;
  gap: 10px;
  border-radius: 20px;
  overflow: hidden;
}
.rb-td-gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  background: #e8eef2;
  cursor: zoom-in;
}
.rb-td-gallery__item.is-main {
  grid-row: 1 / span 2;
}
.rb-td-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--rb-ease);
}
.rb-td-gallery__item:hover img { transform: scale(1.05); }
.rb-td-gallery__zoom {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(28, 42, 58, 0.62);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 18px rgba(18, 12, 14, 0.18);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s var(--rb-ease), background .2s ease;
}
.rb-td-gallery__item:hover .rb-td-gallery__zoom,
.rb-td-gallery__item:focus-visible .rb-td-gallery__zoom {
  opacity: 1;
  transform: none;
}
.rb-td-gallery__more {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: linear-gradient(180deg, rgba(18, 12, 14, 0.28), rgba(18, 12, 14, 0.62));
  color: #fff;
  text-align: center;
}
.rb-td-gallery__more-count {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.rb-td-gallery__more-label {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.88;
}

/* Tour photo lightbox — override GlobeTrek 16:9 crop */
.fancybox__container.rb-lightbox {
  --fancybox-bg: rgba(16, 18, 22, 0.92);
  --fancybox-color: #f6f1ea;
  --fancybox-hover-color: #fff;
  --f-button-next-pos: 18px;
  --f-button-prev-pos: 18px;
  font-family: var(--font-fa);
}
.fancybox__container.rb-lightbox .fancybox__backdrop {
  background:
    radial-gradient(1200px 640px at 70% 0%, rgba(196, 162, 101, 0.16), transparent 58%),
    rgba(16, 18, 22, 0.92);
  backdrop-filter: blur(18px);
}
.fancybox__container.rb-lightbox .fancybox__slide.has-image > .fancybox__content,
.fancybox__container.rb-lightbox .fancybox-image {
  aspect-ratio: unset !important;
  width: auto !important;
  height: auto !important;
  max-width: min(92vw, 1180px) !important;
  max-height: calc(100dvh - 148px) !important;
  object-fit: contain !important;
}
.fancybox__container.rb-lightbox .fancybox__slide.has-image > .fancybox__content {
  padding: 0 !important;
  background: transparent !important;
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}
.fancybox__container.rb-lightbox .fancybox-image {
  border-radius: 18px;
}
.fancybox__container.rb-lightbox .fancybox__toolbar {
  padding: 14px 18px 0;
  pointer-events: none;
}
.fancybox__container.rb-lightbox .fancybox__toolbar__column,
.fancybox__container.rb-lightbox .fancybox__infobar,
.fancybox__container.rb-lightbox .f-button {
  pointer-events: auto;
}
.fancybox__container.rb-lightbox .fancybox__infobar {
  min-width: 72px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}
.fancybox__container.rb-lightbox .f-button {
  --f-button-width: 44px;
  --f-button-height: 44px;
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-bg: rgba(255, 255, 255, 0.1);
  --f-button-hover-bg: var(--rb-red);
  --f-button-active-bg: var(--rb-red-dark);
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  margin-inline-start: 6px;
}
.fancybox__container.rb-lightbox .fancybox__nav .f-button {
  --f-button-width: 56px;
  --f-button-height: 56px;
  --f-button-bg: rgba(255, 255, 255, 0.94);
  --f-button-hover-bg: #fff;
  --f-button-color: var(--rb-navy);
  --f-button-hover-color: var(--rb-red);
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  --f-button-svg-filter: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}
.fancybox__container.rb-lightbox .fancybox__caption {
  margin-top: 14px;
  padding: 0 18px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #f6f1ea;
  text-align: center;
}
.rb-lightbox__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
}
.rb-lightbox__title {
  max-width: 720px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  opacity: 0.92;
}
.fancybox__container.rb-lightbox .fancybox__thumbs {
  --f-thumb-width: 78px;
  --f-thumb-height: 58px;
  --f-thumb-border-radius: 10px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: var(--rb-gold);
  padding: 4px 16px 16px;
}
.fancybox__container.rb-lightbox .f-thumbs__slide__img {
  border-radius: 10px;
}
@media (max-width: 767px) {
  .rb-td-gallery__zoom { opacity: 1; transform: none; width: 30px; height: 30px; }
  .fancybox__container.rb-lightbox .fancybox__slide.has-image > .fancybox__content,
  .fancybox__container.rb-lightbox .fancybox-image {
    max-width: 100vw !important;
    max-height: calc(100dvh - 168px) !important;
    border-radius: 0;
  }
  .fancybox__container.rb-lightbox .fancybox__nav .f-button {
    --f-button-width: 44px;
    --f-button-height: 44px;
    --f-button-next-pos: 8px;
    --f-button-prev-pos: 8px;
  }
}

.rb-td-section {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(26, 28, 30, 0.06);
  box-shadow: 0 10px 28px rgba(26, 28, 30, 0.04);
  padding: 24px 26px;
}
.rb-td-section--soft {
  background: linear-gradient(180deg, #fff 0%, #f7fbf9 100%);
}
.rb-td-section__head { margin-bottom: 16px; }
.rb-td-section__eyebrow {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--rb-teal);
}
.rb-td-section__head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  color: var(--rb-ink);
}
.rb-td-prose {
  font-size: 15px;
  line-height: 2;
  color: #4a4d4a;
  font-weight: 500;
}
.rb-td-prose p { margin-bottom: 12px; }

.rb-td-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rb-td-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 600;
  color: #4a4d4a;
}
.rb-td-checklist__mark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rb-teal-soft);
  color: var(--rb-teal);
  font-size: 14px;
  font-weight: 900;
}
.rb-td-checklist--ok .rb-td-checklist__mark {
  background: #e8f8ef;
  color: #1f8a4c;
}
.rb-td-checklist--no .rb-td-checklist__mark {
  background: #fff0f1;
  color: var(--rb-red);
}

.rb-td-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.rb-td-split > .rb-td-section {
  height: 100%;
  min-width: 0;
}
.rb-td-split > .rb-td-section:only-child {
  grid-column: 1 / -1;
}

.rb-td-aside { position: relative; }
.rb-td-book {
  position: sticky;
  top: 96px;
  background: #fff;
  border-radius: 26px;
  border: 1px solid rgba(26, 28, 30, 0.06);
  box-shadow: 0 22px 48px rgba(28, 42, 58, 0.1);
  padding: 0;
  overflow: hidden;
}
.rb-td-book::before { display: none; }
.rb-td-book__fare {
  position: relative;
  padding: 20px 22px 18px;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(196, 162, 101, 0.28), transparent 58%),
    linear-gradient(165deg, #1c2a3a 0%, #16353a 58%, #1a242c 100%);
  color: #fff;
}
.rb-td-book__fare::after {
  content: "";
  position: absolute;
  right: 16px;
  left: 16px;
  bottom: -1px;
  border-bottom: 1.5px dashed rgba(255, 255, 255, 0.18);
}
.rb-td-book__fare-kicker {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(244, 234, 214, 0.74);
}
.rb-td-book__fare-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.rb-td-book__fare strong {
  display: inline-block;
  font-size: 28px;
  font-weight: 900;
  color: #e8d5a8;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.rb-td-book__fare strong.is-muted {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
}
.rb-td-book__fare small {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
}
.rb-td-book__cap {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12.5px;
  font-weight: 750;
  color: rgba(255, 255, 255, 0.68);
}
.rb-td-book__body {
  padding: 18px 18px 20px;
}
.rb-td-book__route {
  display: flex;
  align-items: stretch;
  margin-bottom: 14px;
  border-radius: 16px;
  overflow: hidden;
  background: #fbf7f1;
  border: 1px solid rgba(26, 28, 30, 0.05);
}
.rb-td-book__stop {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
}
.rb-td-book__stop small {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
  font-weight: 800;
  color: #8a8c8a;
}
.rb-td-book__stop strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13px;
  font-weight: 850;
  color: var(--rb-ink);
  line-height: 1.45;
}
.rb-td-book__rail {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  flex-shrink: 0;
  color: var(--rb-gold-dark);
  background: rgba(196, 162, 101, 0.12);
  position: relative;
}
.rb-td-book__rail::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  left: 4px;
  border-top: 1.5px dashed rgba(154, 120, 64, 0.45);
}
.rb-td-book__rail svg {
  position: relative;
  z-index: 1;
  padding: 2px;
  background: #fbf7f1;
  border-radius: 50%;
}
.rb-td-book__meta {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.rb-td-book__meta li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid #f1ece8;
}
.rb-td-book__meta li:last-child { border-bottom: 0; }
.rb-td-book__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8a8c8a;
  font-weight: 700;
  flex-shrink: 0;
}
.rb-td-book__meta span svg {
  color: var(--rb-gold-dark);
  opacity: 0.9;
}
.rb-td-book__meta strong {
  color: var(--rb-ink);
  font-weight: 800;
  text-align: left;
  line-height: 1.5;
}
.rb-td-book__meta em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--rb-gold-dark);
}
.rb-td-book__agency {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 10px 12px;
  border-radius: 16px;
  background: #fbf7f1;
  border: 1px solid rgba(26, 28, 30, 0.04);
}
.rb-td-book__agency img,
.rb-td-book__mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  background: #fff;
  flex-shrink: 0;
}
.rb-td-book__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--rb-gold-soft), #fff);
  color: var(--rb-gold-dark);
  font-size: 18px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(196, 162, 101, 0.28);
}
.rb-td-book__agency small {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #8a8c8a;
  margin-bottom: 2px;
}
.rb-td-book__agency strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--rb-ink);
}
.rb-td-book__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--rb-red), var(--rb-red-dark));
  color: #fff !important;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none !important;
  box-shadow: 0 14px 28px rgba(225, 29, 46, 0.28);
  transition: transform .2s ease, box-shadow .2s ease, gap .2s ease;
}
.rb-td-book__cta:hover {
  transform: translateY(-2px);
  gap: 12px;
  box-shadow: 0 18px 34px rgba(225, 29, 46, 0.36);
  color: #fff !important;
}
.rb-td-book__note {
  margin: 10px 0 0;
  text-align: center;
  font-size: 11.5px;
  font-weight: 650;
  color: #8a8c8a;
  line-height: 1.6;
}
.rb-td-book__link {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--rb-red);
  text-decoration: none !important;
}
.rb-td-book.is-ended .rb-td-book__fare {
  background: linear-gradient(165deg, #3a3d40 0%, #2c2f32 100%);
}
.rb-td-book.is-ended .rb-td-book__fare strong {
  color: rgba(255, 255, 255, 0.72);
}

.rb-td-related {
  padding: 0 0 80px;
}
.rb-td-related__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.rb-td-related__head h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  color: var(--rb-ink);
}
.rb-td-related__more {
  font-size: 13px;
  font-weight: 800;
  color: var(--rb-red);
  text-decoration: none !important;
}
.rb-td-related__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 1100px) {
  .rb-td-facts__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .rb-td-layout {
    grid-template-columns: 1fr;
  }
  .rb-td-book { position: static; }
}
@media (max-width: 991px) {
  .rb-td-hero {
    min-height: 0;
    padding: 108px 0 72px;
  }
  .rb-td-hero__grid {
    grid-template-columns: 1fr;
  }
  .rb-td-hero__copy { padding-right: 0; }
  .rb-td-hero__copy::before { display: none; }
  .rb-td-hero__film { justify-content: flex-start; }
}
@media (max-width: 767px) {
  .rb-td-hero {
    padding: 100px 0 64px;
  }
  .rb-td-hero__title {
    font-size: clamp(26px, 8vw, 34px);
  }
  .rb-td-hero__bar {
    flex-direction: column;
    align-items: stretch;
  }
  .rb-td-hero__gallery-btn { align-self: flex-start; }
  .rb-td-facts {
    margin-top: -36px;
  }
  .rb-td-pass__notch { display: none; }
  .rb-td-facts__grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 12px;
  }
  .rb-td-facts__grid::-webkit-scrollbar { display: none; }
  .rb-td-fact {
    flex: 0 0 220px;
    scroll-snap-align: start;
    transform: none;
  }
  .rb-td-fact:hover { transform: none; box-shadow: none; }
  .rb-td-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 110px;
  }
  .rb-td-gallery__item.is-main {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .rb-td-split {
    grid-template-columns: 1fr;
  }
  .rb-td-section { padding: 18px; }
}
@media (max-width: 480px) {
  .rb-td-hero__journey { flex-direction: column; }
  .rb-td-hero__stop:first-child,
  .rb-td-hero__stop:last-child {
    border-radius: 16px;
  }
  .rb-td-hero__rail {
    width: 100%;
    height: 28px;
  }
}

/* ——— Ended / expired tour state ——— */
.rb-tour-row.is-ended,
.rb-tour-card.is-ended {
  position: relative;
  opacity: 1;
  filter: none;
  border-color: rgba(26, 28, 30, 0.08);
  background:
    linear-gradient(135deg, rgba(246, 243, 242, 0.65), rgba(255, 255, 255, 0.95));
}
.rb-tour-row.is-ended:hover,
.rb-tour-card.is-ended:hover {
  transform: none;
  box-shadow: 0 10px 28px rgba(26, 28, 30, 0.05);
}
.rb-tour-row.is-ended .rb-tour-row__media img,
.rb-tour-card.is-ended .rb-tour-card__media img {
  filter: grayscale(0.7) brightness(0.72) saturate(0.55);
  transform: none !important;
}
.rb-tour-row.is-ended .rb-tour-row__title,
.rb-tour-card.is-ended .rb-tour-card__title {
  color: #5a5d5a;
}
.rb-tour-row.is-ended:hover .rb-tour-row__title {
  color: #5a5d5a;
}
.rb-tour-ended {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(18, 12, 14, 0.58);
  backdrop-filter: blur(2px);
}
.rb-tour-ended__stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 148px;
  padding: 14px 18px 13px;
  border: 2.5px solid rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  background: rgba(225, 29, 46, 0.92);
  color: #fff;
  text-align: center;
  box-shadow: 0 16px 36px rgba(8, 6, 8, 0.35);
  transform: rotate(-7deg);
}
.rb-tour-ended__stamp strong {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}
.rb-tour-ended__stamp small {
  font-size: 12px;
  font-weight: 750;
}
.rb-tour-ended__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #3d3f3d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow:
    0 12px 28px rgba(26, 28, 30, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  white-space: nowrap;
}
.rb-tour-ended__pill svg {
  color: #8a8c8a;
  flex-shrink: 0;
}
.rb-tour-ended-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 12px;
  background: #f3f1f0;
  color: #5a5d5a;
  font-size: 12.5px;
  font-weight: 700;
}
.rb-tour-ended-note svg { color: #8a8c8a; flex-shrink: 0; }
.rb-tour-row__cta.is-ended,
.rb-tour-card__cta.is-ended {
  background: #e4e0df !important;
  color: #6a6d6a !important;
  border: 0;
  box-shadow: none !important;
  cursor: default;
  gap: 0;
}
.rb-tour-row.is-ended:hover .rb-tour-row__cta.is-ended,
.rb-tour-card.is-ended:hover .rb-tour-card__cta.is-ended {
  background: #e4e0df !important;
  color: #6a6d6a !important;
}
.rb-tour-row.is-ended .rb-tour-row__book {
  background: linear-gradient(165deg, #ece8e6 0%, #f4f1ef 100%);
  box-shadow: none;
}
.rb-tour-row.is-ended .rb-tour-row__price-label,
.rb-tour-row.is-ended .rb-tour-row__price small,
.rb-tour-row.is-ended .rb-tour-row__cap {
  color: #8a8c8a;
}
.rb-tour-row.is-ended .rb-tour-row__amount,
.rb-tour-card.is-ended .rb-tour-card__amount {
  color: #8a8c8a;
}

.rb-td-tag--ended {
  background: rgba(255, 255, 255, 0.92);
  color: #3d3f3d;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.rb-td-ended-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background:
    linear-gradient(120deg, #1a1c1e 0%, #3a3032 55%, #5a2a32 100%);
  color: #fff;
  box-shadow: 0 16px 36px rgba(26, 28, 30, 0.18);
}
.rb-td-ended-banner__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #ffd0d5;
}
.rb-td-ended-banner strong {
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
  font-weight: 850;
}
.rb-td-ended-banner p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}
.rb-td-book__ended {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  padding: 14px;
  border-radius: 14px;
  background: #f6f3f2;
  color: #4a4d4a;
}
.rb-td-book__ended svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #8a8c8a;
}
.rb-td-book__ended strong {
  display: block;
  font-size: 14px;
  font-weight: 850;
  margin-bottom: 2px;
}
.rb-td-book__ended span {
  font-size: 12px;
  font-weight: 600;
  color: #8a8c8a;
}
.rb-td-book__cta.is-ended {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border-radius: 16px;
  background: #eceaea;
  color: #7a7d7a;
  font-size: 15px;
  font-weight: 800;
  box-shadow: none;
  cursor: default;
  pointer-events: none;
  transform: none;
}
@media (max-width: 575px) {
  .rb-tour-ended__pill {
    font-size: 12px;
    padding: 8px 12px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }
}

.rb-pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 18px;
  width: 100%;
  padding: 14px 16px;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(225, 29, 46, 0.06), transparent 55%),
    #fff;
  border-radius: 22px;
  border: 1px solid rgba(26, 28, 30, 0.06);
  box-shadow: 0 14px 32px rgba(26, 28, 30, 0.05);
}
.rb-pager__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
  padding: 0 6px;
  min-width: 0;
}
.rb-pager__kicker {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--rb-red);
}
.rb-pager__range {
  font-size: 13.5px;
  font-weight: 700;
  color: #6b6e6a;
}
.rb-pager__range b {
  color: var(--rb-ink);
  font-weight: 900;
}
.rb-pager__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rb-pager__nav {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(26, 28, 30, 0.08);
  color: var(--rb-ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 6px 14px rgba(26, 28, 30, 0.04);
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.rb-pager__nav:hover {
  background: var(--rb-navy);
  border-color: transparent;
  color: #fff;
  transform: translateY(-1px);
}
.rb-pager__nav.is-disabled {
  opacity: .38;
  pointer-events: none;
  box-shadow: none;
}
.rb-pager__track {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 4px;
  list-style: none;
  background: #f4f1ec;
  border-radius: 999px;
}
.rb-pager__track li { display: flex; }
.rb-pager__num {
  min-width: 38px;
  height: 38px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--rb-ink);
  font-size: 13.5px;
  font-weight: 850;
  text-decoration: none !important;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}
.rb-pager__num:hover {
  background: #fff;
  color: var(--rb-red);
}
.rb-pager__num.is-current {
  background: var(--rb-red);
  color: #fff;
  box-shadow: 0 8px 16px rgba(225, 29, 46, 0.28);
}
.rb-pager__dots {
  min-width: 22px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b0aaa4;
  font-weight: 900;
}
.rb-terminals-pagination,
.rb-cities-pagination,
.rb-hotels-pagination,
.rb-tours-pagination,
.rb-magazine-pagination {
  margin-top: 28px;
}
@media (max-width: 767px) {
  .rb-pager {
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
  }
  .rb-pager__info {
    align-items: center;
    text-align: center;
  }
  .rb-pager__controls { justify-content: center; }
  .rb-pager__nav span { display: none; }
  .rb-pager__nav { padding: 0; width: 42px; }
  .rb-pager__track {
    max-width: calc(100% - 100px);
    overflow-x: auto;
    scrollbar-width: none;
  }
  .rb-pager__track::-webkit-scrollbar { display: none; }
}
