/* Tours listing — cinematic travel layout matching homepage */
.rb-tours-page {
  --rb-tour-pink: #E11D2E;
  background:
    radial-gradient(ellipse 55% 32% at 100% 8%, rgba(196, 162, 101, 0.16), transparent 55%),
    radial-gradient(ellipse 45% 28% at 0% 42%, rgba(31, 122, 110, 0.08), transparent 50%),
    var(--rb-mist);
}

.rb-tours-hero {
  position: relative;
  z-index: 24;
  padding: 128px 0 0;
  overflow: visible;
  min-height: 460px;
  isolation: isolate;
}
.rb-tours-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background: #1a1012 !important;
  transform: none !important;
  z-index: 0;
}
.rb-tours-hero__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--rb-hero-focus, center center);
  display: block;
  transform: none;
}
.rb-tours-hero__bg::before {
  content: none;
  display: none;
}
.rb-tours-hero__bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 56px;
  background: linear-gradient(180deg, transparent, var(--rb-mist));
  pointer-events: none;
}
.rb-tours-hero__grain,
.rb-tours-hero__veil,
.rb-tours-hero__glow {
  position: absolute;
  pointer-events: none;
}
.rb-tours-hero__veil {
  inset: 0;
  z-index: 1;
  background: linear-gradient(108deg, rgba(12, 18, 24, 0.52) 0%, rgba(18, 28, 32, 0.22) 48%, rgba(12, 18, 24, 0.16) 100%);
}
.rb-tours-hero__grain {
  inset: 0;
  z-index: 2;
  opacity: .2;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}
.rb-tours-hero__glow {
  inset: auto -10% -20% 35%;
  z-index: 2;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 162, 101, 0.42), transparent 70%);
  filter: blur(10px);
  animation: rb-tours-pulse 7s ease-in-out infinite alternate;
}
@keyframes rb-tours-pulse {
  from { opacity: .55; transform: scale(1); }
  to { opacity: 1; transform: scale(1.08); }
}
.rb-tours-hero .container {
  position: relative;
  z-index: 3;
  overflow: visible;
}
.rb-tours-hero__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 28px;
  margin-bottom: 8px;
}
.rb-tours-hero__intro {
  max-width: 680px;
  margin-bottom: 12px;
  color: #fff;
  position: relative;
}
.rb-tours-hero__intro::before {
  content: "";
  position: absolute;
  right: -22px;
  top: 38px;
  width: 3px;
  height: 72px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--rb-gold), transparent);
}
.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(10px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.rb-tours-hero__title {
  margin: 0 0 12px;
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 900;
  line-height: 1.22;
  color: #fff;
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.32);
}
.rb-tours-hero__title em {
  font-style: normal;
  color: #ffd4d8;
}
.rb-tours-hero__desc {
  margin: 0 0 18px;
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.84);
  max-width: 34em;
}
.rb-tours-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.rb-tours-hero__stats li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.rb-tours-hero__stats strong {
  font-weight: 900;
}

.rb-tours-hero__collage {
  position: relative;
  height: 248px;
  margin-bottom: 18px;
}
.rb-tours-hero__shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow:
    0 22px 48px rgba(8, 6, 8, 0.38),
    0 0 0 3px rgba(255, 255, 255, 0.18);
  background: #2a181c;
}
.rb-tours-hero__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rb-tours-hero__shot figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--rb-ink);
  font-size: 11.5px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rb-tours-hero__shot--1 {
  width: 168px;
  height: 210px;
  right: 118px;
  top: 8px;
  transform: rotate(-9deg);
  z-index: 1;
}
.rb-tours-hero__shot--2 {
  width: 176px;
  height: 224px;
  right: 8px;
  top: 0;
  transform: rotate(7deg);
  z-index: 2;
}
.rb-tours-hero__shot--3 {
  width: 150px;
  height: 188px;
  right: 72px;
  top: 52px;
  transform: rotate(-2deg);
  z-index: 3;
}

.rb-tours-page .rb-tours-search,
.rb-tours-search {
  position: relative;
  z-index: 30;
  margin-top: 18px;
  margin-bottom: -28px;
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.rb-tours-page .rb-search { z-index: 30; overflow: visible; }
.rb-tours-page .rb-search__tabs {
  display: none !important;
}
.rb-tours-page .rb-search__shell {
  border-radius: 28px !important;
  border: 0 !important;
  box-shadow: 0 18px 40px rgba(12, 8, 10, 0.12) !important;
  overflow: visible !important;
}
.rb-tours-page .rb-search__field.select,
.rb-tours-page .rb-search__field,
.rb-tours-page .rb-citybox {
  overflow: visible;
  z-index: 2;
}
.rb-tours-page .rb-search__field:focus-within,
.rb-tours-page .rb-citybox:focus-within {
  z-index: 40;
}
.rb-tours-page .rb-cities {
  z-index: 90;
}
.rb-tours-page .rb-datepicker__panel {
  right: 0;
  left: auto;
}

.rb-tours-body {
  position: relative;
  z-index: 1;
  padding-top: 64px !important;
  padding-bottom: 88px !important;
  background: transparent;
}
.rb-tours-body::after { display: none; }

.rb-tours-promises {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 26px;
}
.rb-tours-promise {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  padding: 20px 20px 20px 18px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(26, 28, 30, 0.06);
  box-shadow: 0 14px 32px rgba(26, 28, 30, 0.05);
  transition: transform .3s cubic-bezier(.22, 1, .36, 1), box-shadow .3s ease, border-color .2s ease;
}
.rb-tours-promise::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  right: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
}
.rb-tours-promise:nth-child(1)::before { background: linear-gradient(180deg, var(--rb-teal), #3aa394); }
.rb-tours-promise:nth-child(2)::before { background: linear-gradient(180deg, var(--rb-gold), #d4b36f); }
.rb-tours-promise:nth-child(3)::before { background: linear-gradient(180deg, var(--rb-sky), #6a93b0); }
.rb-tours-promise:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(26, 28, 30, 0.1);
}
.rb-tours-promise__ico {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rb-teal);
  background: var(--rb-teal-soft);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}
.rb-tours-promise:nth-child(1) {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(31, 122, 110, 0.12), transparent 58%),
    #fff;
}
.rb-tours-promise:nth-child(1) .rb-tours-promise__ico {
  color: var(--rb-teal);
  background: var(--rb-teal-soft);
}
.rb-tours-promise:nth-child(2) {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(196, 162, 101, 0.16), transparent 58%),
    #fff;
}
.rb-tours-promise:nth-child(2) .rb-tours-promise__ico {
  color: var(--rb-gold-dark);
  background: var(--rb-gold-soft);
}
.rb-tours-promise:nth-child(3) {
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(61, 107, 140, 0.12), transparent 58%),
    #fff;
}
.rb-tours-promise:nth-child(3) .rb-tours-promise__ico {
  color: var(--rb-sky);
  background: var(--rb-sky-soft);
}
.rb-tours-promise:nth-child(1):hover { border-color: rgba(31, 122, 110, 0.28); }
.rb-tours-promise:nth-child(2):hover { border-color: rgba(196, 162, 101, 0.42); }
.rb-tours-promise:nth-child(3):hover { border-color: rgba(61, 107, 140, 0.28); }
.rb-tours-promise__copy {
  min-width: 0;
}
.rb-tours-promise__copy strong {
  display: block;
  font-size: 16px;
  font-weight: 850;
  color: var(--rb-ink);
  line-height: 1.4;
}
.rb-tours-promise__copy p {
  display: block;
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 650;
  color: #6b6e6a;
  line-height: 1.7;
}

.rb-tours-rail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 24px;
  padding: 12px 14px 12px 12px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #f7fbf9);
  border: 1px solid rgba(31, 122, 110, 0.12);
  box-shadow: 0 12px 32px rgba(31, 122, 110, 0.06);
}
.rb-tours-rail__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
  padding: 4px 10px 4px 4px;
}
.rb-tours-rail__copy strong {
  font-size: 13.5px;
  font-weight: 850;
  color: var(--rb-ink);
  line-height: 1.35;
  white-space: nowrap;
}
.rb-tours-rail__copy small {
  font-size: 11.5px;
  font-weight: 650;
  color: #8a9098;
  white-space: nowrap;
}
.rb-tours-chips {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  min-width: 0;
  overflow-x: auto;
  padding: 4px 2px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.rb-tours-chips::-webkit-scrollbar { display: none; }
.rb-tours-chips a,
.rb-tours-chips__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 14px 0 8px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(31, 122, 110, 0.12);
  color: #4a4d4a;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 6px 16px rgba(26, 28, 30, 0.05);
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform .2s ease, border-color .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease;
}
.rb-tours-chips__item--plain {
  padding: 0 16px;
}
.rb-tours-chips a:hover,
.rb-tours-chips a.is-active,
.rb-tours-chips__item:hover,
.rb-tours-chips__item.is-active {
  transform: translateY(-2px);
  border-color: rgba(31, 122, 110, 0.32);
  color: var(--rb-teal-dark);
  background: var(--rb-teal-soft);
  box-shadow: 0 10px 22px rgba(31, 122, 110, 0.1);
}
.rb-tours-chips__av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, #d4b36f, #9a7840);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
.rb-tours-chips__item:nth-child(3n+2) .rb-tours-chips__av {
  background: linear-gradient(145deg, #2a9a8c, #165a52);
}
.rb-tours-chips__item:nth-child(3n) .rb-tours-chips__av {
  background: linear-gradient(145deg, #5a8aad, #3d6b8c);
}
.rb-tours-chips__item.is-active .rb-tours-chips__av,
.rb-tours-chips__item:hover .rb-tours-chips__av {
  box-shadow: 0 4px 10px rgba(31, 122, 110, 0.28);
}
.rb-tours-chips__name {
  font-size: 13.5px;
  font-weight: 800;
  color: inherit;
}

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

.rb-tours-filters-toggle {
  display: none;
  width: 100%;
  height: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(26, 28, 30, 0.08);
  border-radius: 18px;
  background: #fff;
  color: var(--rb-ink);
  font-size: 14px;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 24px rgba(26, 28, 30, 0.05);
}
.rb-tours-filters-toggle svg { color: var(--rb-teal); }

.rb-tours-filters__card {
  position: sticky;
  top: 96px;
  background:
    linear-gradient(180deg, #fffdfc 0%, #fff 42%),
    #fff;
  border-radius: 28px;
  border: 1px solid rgba(26, 28, 30, 0.06);
  box-shadow:
    0 20px 48px rgba(26, 28, 30, 0.07),
    0 0 0 1px rgba(255, 255, 255, 0.7) inset;
  padding: 0 0 18px;
  overflow: hidden;
}
.rb-tours-filters__card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rb-gold), var(--rb-teal), var(--rb-red));
}
.rb-tours-filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 8px;
  padding: 22px 20px 16px;
  border-bottom: 1px solid rgba(26, 28, 30, 0.06);
  background: radial-gradient(80% 80% at 100% 0%, rgba(31, 122, 110, 0.1), transparent 60%);
}
.rb-tours-filters__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.rb-tours-filters__ico {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, #2a9a8c, #165a52);
  color: #fff;
  box-shadow: 0 8px 16px rgba(31, 122, 110, 0.22);
}
.rb-tours-filters__head h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  color: var(--rb-ink);
  line-height: 1.3;
}
.rb-tours-filters__head small {
  display: block;
  margin-top: 2px;
  font-size: 11.5px;
  font-weight: 650;
  color: #8a8c8a;
}
.rb-tours-filters__reset {
  flex-shrink: 0;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(31, 122, 110, 0.16);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  color: var(--rb-teal);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
}
.rb-tours-filters__group {
  margin: 0 20px 18px;
  padding-top: 16px;
  border-top: 1px dashed #efe8e6;
}
.rb-tours-filters__group.is-first { border-top: 0; padding-top: 8px; }
.rb-tours-filters__label {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 850;
  color: #6b6e6a;
  letter-spacing: 0.02em;
}
.rb-tours-filters__scopes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  border-radius: 16px;
  background: #f3f0ec;
}
.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: center;
  min-height: 42px;
  padding: 0 8px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 13.5px;
  font-weight: 850;
  color: #5a5d5a;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.rb-tours-filters__scope.is-active span,
.rb-tours-filters__scope:has(input:checked) span {
  background: #fff;
  color: var(--rb-teal-dark);
  border-color: rgba(31, 122, 110, 0.14);
  box-shadow: 0 8px 16px rgba(26, 28, 30, 0.08);
}
.rb-tours-filters__scope:hover span {
  color: var(--rb-teal);
}
.rb-tours-filters__transport {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.rb-tours-filters__chip {
  margin: 0;
  cursor: pointer;
}
.rb-tours-filters__chip input { position: absolute; opacity: 0; pointer-events: none; }
.rb-tours-filters__chip span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 72px;
  padding: 10px 6px;
  border-radius: 16px;
  border: 1px solid #efe8e6;
  background: #fff;
  font-size: 11.5px;
  font-weight: 800;
  color: #4a4d4a;
  transition: .2s ease;
}
.rb-tours-filters__chip span svg { color: #8a8c8a; }
.rb-tours-filters__chip:has(input:checked) span,
.rb-tours-filters__chip:hover span {
  border-color: rgba(31, 122, 110, 0.28);
  background: var(--rb-teal-soft);
  color: var(--rb-teal-dark);
  box-shadow: 0 10px 20px rgba(31, 122, 110, 0.08);
}
.rb-tours-filters__chip:has(input:checked) span svg,
.rb-tours-filters__chip:hover span svg { color: var(--rb-teal); }
.rb-tours-filters__prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.rb-tours-filters__field,
.rb-tours-filters__money {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
}
.rb-tours-filters__field > span,
.rb-tours-filters__money > span {
  font-size: 11px;
  font-weight: 800;
  color: #8a8c8a;
}
.rb-tours-filters__money-box {
  position: relative;
  display: block;
}
.rb-tours-filters__money-box em {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  color: #8a8c8a;
  pointer-events: none;
}
.rb-tours-filters__field input,
.rb-tours-filters__prices input,
.rb-tours-filters__money-box input {
  width: 100%;
  height: 48px;
  border: 1px solid #efe8e6;
  border-radius: 14px;
  background: #fff;
  padding: 0 12px 0 42px;
  font-size: 14px;
  font-weight: 800;
  color: var(--rb-ink);
  letter-spacing: 0.01em;
  appearance: textfield;
  -moz-appearance: textfield;
}
.rb-tours-filters__money-box input::-webkit-outer-spin-button,
.rb-tours-filters__money-box input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.rb-tours-filters__field input:focus,
.rb-tours-filters__money-box input:focus {
  outline: 0;
  border-color: rgba(31, 122, 110, 0.35);
  box-shadow: 0 0 0 4px rgba(31, 122, 110, 0.08);
}
.rb-tours-filters__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.rb-tours-filters__quick button {
  height: 32px;
  padding: 0 10px;
  border: 1px solid #efe8e6;
  border-radius: 999px;
  background: #fff;
  color: #5a5d5a;
  font-size: 11.5px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.rb-tours-filters__quick button:hover,
.rb-tours-filters__quick button.is-on {
  background: var(--rb-teal-soft);
  color: var(--rb-teal-dark);
  border-color: rgba(31, 122, 110, 0.22);
}
.rb-tours-filters__check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 20px 16px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--rb-gold-soft), #fff);
  border: 1px solid rgba(196, 162, 101, 0.28);
  font-size: 13px;
  font-weight: 800;
  color: #4a4d4a;
  cursor: pointer;
}
.rb-tours-filters__check input {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--rb-red);
}
.rb-tours-filters__check-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.rb-tours-filters__check-copy b {
  font-size: 13.5px;
  font-weight: 850;
  color: var(--rb-ink);
}
.rb-tours-filters__check-copy small {
  font-size: 11.5px;
  font-weight: 650;
  color: #8a8c8a;
}
.rb-tours-filters__apply {
  width: calc(100% - 40px);
  margin: 0 20px;
  height: 50px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(145deg, #1c2a3a, #165a52);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 14px 28px rgba(26, 28, 30, 0.18);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.rb-tours-filters__apply:hover {
  background: linear-gradient(145deg, #ff3142, var(--rb-red));
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(225, 29, 46, 0.28);
}

.rb-tours-block + .rb-tours-block { margin-top: 52px; }
.rb-tours-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.rb-tours-block__heading {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.rb-tours-block__mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(145deg, #2a9a8c, #165a52);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(31, 122, 110, 0.22);
}
.rb-tours-block__eyebrow {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 800;
  color: var(--rb-teal);
  letter-spacing: 0.02em;
}
.rb-tours-block__title {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 900;
  color: var(--rb-ink);
}
.rb-tours-block__title::after { display: none; }
.rb-tours-block__count {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: #8a8c8a;
}
.rb-tours-block__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(31, 122, 110, 0.18);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  color: var(--rb-teal);
  text-decoration: none !important;
  transition: background .2s ease, color .2s ease, transform .2s ease, gap .2s ease;
}
.rb-tours-block__more:hover {
  background: var(--rb-red);
  color: #fff;
  transform: translateY(-2px);
  gap: 10px;
}

.rb-tours-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rb-tours-empty {
  margin: 0;
  padding: 48px 24px;
  text-align: center;
  background: #fff;
  border-radius: 22px;
  border: 1px dashed #e4dfde;
  color: #8a8c8a;
  font-weight: 700;
}
.rb-tours-pagination { margin-top: 28px; }

.rb-tours-page .rb-tour-row {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
  min-height: 0;
  border-radius: 24px;
  border: 1px solid rgba(26, 28, 30, 0.06);
  box-shadow: 0 16px 40px rgba(26, 28, 30, 0.06);
  overflow: hidden;
  background: #fff;
}
.rb-tours-page .rb-tour-row:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 122, 110, 0.18);
  box-shadow: 0 24px 48px rgba(26, 28, 30, 0.1);
}
.rb-tours-page .rb-tour-row__status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(90deg, #9b1522 0%, #d21f32 50%, #9b1522 100%);
  color: #fff;
  font-size: 15.5px;
  font-weight: 850;
  letter-spacing: -0.01em;
}
.rb-tours-page .rb-tour-row__status svg {
  flex-shrink: 0;
}
.rb-tours-page .rb-tour-row__inner {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  min-height: 208px;
}
.rb-tours-page .rb-tour-row__media {
  position: relative;
  min-height: 208px;
  overflow: hidden;
}
.rb-tours-page .rb-tour-row__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 42%, rgba(12, 8, 10, 0.42) 100%);
  pointer-events: none;
}
.rb-tours-page .rb-tour-row.is-ended .rb-tour-row__media::after { display: none; }
.rb-tours-page .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-tours-page .rb-tour-ended__stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 168px;
  padding: 16px 20px 15px;
  border: 3px solid #fff;
  border-radius: 12px;
  background: var(--rb-red);
  color: #fff;
  text-align: center;
  box-shadow: 0 18px 40px rgba(8, 6, 8, 0.4);
  transform: rotate(-6deg);
}
.rb-tours-page .rb-tour-ended__stamp strong {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.15;
}
.rb-tours-page .rb-tour-ended__stamp small {
  font-size: 13px;
  font-weight: 800;
  opacity: .95;
}
.rb-tours-page .rb-tour-row__badge {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: linear-gradient(145deg, #d4b36f, #9a7840);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(154, 120, 64, 0.32);
}
.rb-tours-page .rb-tour-row__badge--special {
  right: auto;
  left: 12px;
  top: 12px;
  bottom: auto;
  background: #fff;
  color: var(--rb-gold-dark);
  box-shadow: 0 8px 16px rgba(12, 8, 10, 0.16);
}
.rb-tours-page .rb-tour-row__place {
  position: absolute;
  z-index: 2;
  right: 12px;
  left: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: calc(100% - 24px);
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--rb-ink);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rb-tours-page .rb-tour-row__place svg {
  color: var(--rb-teal);
  flex-shrink: 0;
}
.rb-tours-page .rb-tour-row__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 214px;
  padding: 0;
  gap: 0;
  align-items: stretch;
}
.rb-tours-page .rb-tour-row__main {
  padding: 18px 20px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.rb-tours-page .rb-tour-row__kicker {
  margin: 0 0 8px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 800;
  color: var(--rb-teal);
}
.rb-tours-page .rb-tour-row:hover .rb-tour-row__title {
  color: var(--rb-teal-dark);
}
.rb-tours-page .rb-tour-row__route {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 0;
  background: none;
  color: #5a5d5a;
  font-size: 13px;
  font-weight: 700;
}
.rb-tours-page .rb-tour-row__route span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rb-tours-page .rb-tour-row__route i {
  width: 22px;
  height: 1px;
  flex-shrink: 0;
  background: linear-gradient(90deg, #d8d0cf, var(--rb-gold), #d8d0cf);
  position: relative;
}
.rb-tours-page .rb-tour-row__route i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rb-gold);
  transform: translate(-40%, -50%);
}
.rb-tours-page .rb-tour-row__meta {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
}
.rb-tours-page .rb-tour-row__meta li {
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f6f3f2;
  font-size: 12px;
  font-weight: 750;
  color: #5a5d5a;
}
.rb-tours-page .rb-tour-row__meta li svg {
  color: var(--rb-teal);
  flex-shrink: 0;
  margin-top: 0;
}
.rb-tours-page .rb-tour-row__aside {
  min-width: 0;
  margin: 0;
  padding: 16px 16px 16px 0;
  border-right: 0;
  border-radius: 0;
  background: transparent;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.rb-tours-page .rb-tour-row__aside::before,
.rb-tours-page .rb-tour-row__aside::after { display: none; }
.rb-tours-page .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-tours-page .rb-tour-row__price-label {
  display: block;
  margin-bottom: 4px;
  font-size: 11.5px;
  font-weight: 800;
  color: rgba(244, 234, 214, 0.72);
  letter-spacing: 0.02em;
}
.rb-tours-page .rb-tour-row__price-value {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.rb-tours-page .rb-tour-row__amount {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: #e8d5a8;
  letter-spacing: -0.03em;
  line-height: 1.15;
  white-space: nowrap;
}
.rb-tours-page .rb-tour-row__price small {
  display: block;
  font-size: 11.5px;
  font-weight: 750;
  color: rgba(255, 255, 255, 0.52);
  white-space: nowrap;
}
.rb-tours-page .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-tours-page .rb-tour-row__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  height: 44px;
  margin-top: 2px;
  padding: 0 14px;
  border-radius: 14px;
  background: linear-gradient(145deg, #e8d5a8, #c4a265);
  color: #1c2a3a;
  white-space: nowrap;
  font-size: 13.5px;
  font-weight: 850;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(8, 14, 18, 0.22);
}
.rb-tours-page .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-tours-page .rb-tour-row__cta span {
  white-space: nowrap;
}
.rb-tours-page .rb-tour-row.is-ended {
  background: #f7f5f4;
  border-color: rgba(26, 28, 30, 0.06);
}
.rb-tours-page .rb-tour-row.is-ended:hover {
  transform: none;
  box-shadow: 0 16px 40px rgba(26, 28, 30, 0.06);
}
.rb-tours-page .rb-tour-row.is-ended .rb-tour-row__media img {
  filter: grayscale(0.7) brightness(0.72) saturate(0.55);
}
.rb-tours-page .rb-tour-row.is-ended .rb-tour-row__title {
  color: #5a5d5a;
}
.rb-tours-page .rb-tour-row.is-ended:hover .rb-tour-row__title {
  color: #5a5d5a;
}
.rb-tours-page .rb-tour-row.is-ended .rb-tour-row__book {
  background: linear-gradient(165deg, #ece8e6 0%, #f4f1ef 100%);
  box-shadow: none;
}
.rb-tours-page .rb-tour-row.is-ended .rb-tour-row__price-label,
.rb-tours-page .rb-tour-row.is-ended .rb-tour-row__price small {
  color: #8a8c8a;
}
.rb-tours-page .rb-tour-row.is-ended .rb-tour-row__amount {
  color: #6a6d6a;
}
.rb-tours-page .rb-tour-row__cta.is-ended {
  background: #d8d4d2 !important;
  color: #6a6d6a !important;
  border: 0;
  box-shadow: none !important;
}

@media (max-width: 1100px) {
  .rb-tours-hero__top { grid-template-columns: minmax(0, 1fr) 260px; }
  .rb-tours-hero__shot--1 { width: 140px; height: 180px; right: 96px; }
  .rb-tours-hero__shot--2 { width: 148px; height: 192px; }
  .rb-tours-hero__shot--3 { width: 128px; height: 160px; right: 58px; }
}

@media (max-width: 991px) {
  .rb-tours-page { max-width: 100%; overflow-x: clip; }
  .rb-tours-hero { padding: 118px 0 0; max-width: 100%; }
  .rb-tours-hero__bg { inset: 0; }
  .rb-tours-hero__top { grid-template-columns: 1fr; overflow: hidden; }
  .rb-tours-hero__collage { display: none; }
  .rb-tours-hero__intro::before { display: none; }
  .rb-tours-hero__glow { display: none; }
  .rb-tours-search { margin-bottom: -12px; }
  .rb-tours-promises { grid-template-columns: 1fr; }
  .rb-tours-rail {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
  }
  .rb-tours-layout { grid-template-columns: minmax(0, 1fr); min-width: 0; }
  .rb-tours-filters-toggle { display: inline-flex; }
  .rb-tours-filters { display: none; }
  .rb-tours-filters.is-open { display: block; }
  .rb-tours-filters__card { position: static; }
  .rb-tours-page .rb-tour-row__inner { grid-template-columns: 180px minmax(0, 1fr); }
  .rb-tours-page .rb-tour-row__media { min-height: 176px; }
  .rb-tours-page .rb-tour-row__body { grid-template-columns: 1fr; }
  .rb-tours-page .rb-tour-row__main { padding: 16px 16px 8px; }
  .rb-tours-page .rb-tour-row__aside {
    padding: 0 16px 16px;
  }
  .rb-tours-page .rb-tour-row__book {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 16px;
    padding: 14px 16px;
  }
  .rb-tours-page .rb-tour-row__price { min-width: 0; }
  .rb-tours-page .rb-tour-row__cap {
    width: 100%;
    order: 3;
    padding-top: 0;
    border-top: 0;
  }
  .rb-tours-page .rb-tour-row__cta {
    width: auto;
    min-width: 148px;
    padding: 0 18px;
    margin-top: 0;
  }
  .rb-tours-page .rb-tour-ended__stamp { min-width: 0; padding: 10px 12px; }
  .rb-tours-page .rb-tour-ended__stamp strong { font-size: 15px; }
  .rb-tours-page .rb-tour-ended__stamp small { font-size: 10.5px; }
}
@media (max-width: 700px) {
  .rb-tours-hero { padding: 108px 0 0; min-height: 0; }
  .rb-tours-search { margin-top: 16px; margin-bottom: 0; }
  .rb-tours-page .rb-search__shell { border-radius: 22px !important; }
  .rb-tours-page .rb-tour-row__inner { grid-template-columns: 1fr; }
  .rb-tours-page .rb-tour-row__media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
  .rb-tours-page .rb-tour-row__body {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .rb-tours-page .rb-tour-row__main { padding: 16px 16px 8px; }
  .rb-tours-page .rb-tour-row__aside {
    padding: 0 16px 16px;
    border-right: 0;
    border-top: 0;
  }
  .rb-tours-page .rb-tour-row__cta { width: auto; min-width: 148px; padding: 0 18px; }
  .rb-tours-page .rb-tour-row__status { font-size: 14px; padding: 12px 14px; }
  .rb-tours-hero__stats li { font-size: 12px; }
  .rb-tours-promise { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .rb-tours-hero__glow { animation: none; }
}
