/* Bus tickets — same travel language as tours, timetable layout */
.rb-bus-page {
  --rb-bus-pink: #E11D2E;
  overflow-x: clip;
  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, #efe8dc);
}

.rb-bus-hero {
  position: relative;
  z-index: 24;
  padding: 112px 0 0;
  overflow: visible;
  min-height: 520px;
  isolation: isolate;
}
.rb-bus-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(120% 80% at 100% -10%, rgba(225, 29, 46, .16), transparent 42%),
    radial-gradient(90% 70% at -10% 110%, rgba(31, 122, 110, .14), transparent 46%),
    radial-gradient(70% 50% at 70% 20%, rgba(196, 162, 101, .18), transparent 48%),
    linear-gradient(165deg, #fdecee 0%, #f3e9dc 46%, #dceee8 100%);
}
.rb-bus-hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(28, 42, 58, .14) 1.15px, transparent 1.4px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .55), transparent 82%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .55), transparent 82%);
}
.rb-bus-hero__orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  filter: blur(8px);
  animation: rb-bus-pulse 9s ease-in-out infinite alternate;
}
.rb-bus-hero__orb--red {
  top: -8%;
  right: -6%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(225, 29, 46, .38), transparent 68%);
}
.rb-bus-hero__orb--gold {
  left: 18%;
  bottom: -18%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(196, 162, 101, .46), transparent 70%);
  animation-delay: -3s;
}
.rb-bus-hero__orb--teal {
  left: -8%;
  top: 18%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(31, 122, 110, .32), transparent 68%);
  animation-delay: -5s;
}
.rb-bus-hero__rings {
  position: absolute;
  z-index: 1;
  left: 6%;
  top: 16%;
  width: min(34vw, 320px);
  height: min(34vw, 320px);
  border-radius: 50%;
  border: 1.5px dashed rgba(225, 29, 46, .28);
  box-shadow:
    0 0 0 28px rgba(196, 162, 101, .08),
    0 0 0 56px rgba(31, 122, 110, .06);
}
.rb-bus-hero__atlas {
  position: absolute;
  z-index: 1;
  inset: -8% -4% 8%;
  width: 108%;
  height: 108%;
  opacity: .9;
}
.rb-bus-hero__fade {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 88px;
  background: linear-gradient(180deg, transparent, var(--rb-mist, #f4efe8));
}
@keyframes rb-bus-pulse {
  from { opacity: .55; transform: scale(1); }
  to { opacity: 1; transform: scale(1.08); }
}
.rb-bus-hero .container {
  position: relative;
  z-index: 3;
  overflow: visible;
}
.rb-bus-crumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(26, 28, 30, .08);
  box-shadow: 0 8px 24px rgba(28, 42, 58, .06);
  color: #6a7078;
  font-size: 12.5px;
  font-weight: 600;
}
.rb-bus-crumb a { color: var(--rb-ink, #1A1C1E); }
.rb-bus-hero__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  align-items: end;
  gap: 28px 40px;
  margin-bottom: 28px;
}
.rb-bus-hero__stage:not(:has(.rb-bus-hero__pass)) {
  grid-template-columns: minmax(0, 1fr);
}
.rb-bus-hero__copy {
  position: relative;
  max-width: 720px;
}
.rb-bus-hero__copy::before {
  content: "";
  position: absolute;
  right: -18px;
  top: 46px;
  width: 3px;
  height: 78px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--rb-gold, #C4A265), transparent);
}
.rb-bus-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff5f5, #f7f0e2);
  border: 1px solid rgba(225, 29, 46, .14);
  color: var(--rb-red, #E11D2E);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}
.rb-bus-hero__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: .4em;
  row-gap: 4px;
  margin: 0 0 16px;
  color: var(--rb-ink, #1A1C1E);
  font-size: clamp(30px, 5.4vw, 52px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.22;
  text-shadow: none;
}
.rb-bus-hero__title span { color: var(--rb-ink, #1A1C1E); }
.rb-bus-hero__title em {
  font-style: normal;
  color: #9a7840;
  text-shadow: none;
  filter: none;
  overflow-wrap: anywhere;
}
@supports (-webkit-background-clip: text) {
  .rb-bus-hero__title em {
    background: linear-gradient(120deg, #c44b54 0%, #9a7840 48%, #1F7A6E 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.rb-bus-hero__route {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  max-width: 100%;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  pointer-events: none;
  user-select: none;
}
.rb-bus-hero__route-kicker {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(225, 29, 46, .08);
  color: var(--rb-red, #E11D2E);
  font-size: 11px;
  font-weight: 800;
}
.rb-bus-hero__route-cities {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--rb-ink, #1A1C1E);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}
.rb-bus-hero__route-cities svg {
  flex: none;
  color: var(--rb-gold, #C4A265);
}
.rb-bus-hero__route-cities b { font-weight: 800; }
.rb-bus-hero__desc {
  max-width: 38em;
  margin: 0 0 18px;
  color: #5c6168;
  font-size: 15.5px;
  line-height: 1.85;
}
.rb-bus-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rb-bus-hero__stats li {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  min-width: 108px;
  padding: 10px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(26, 28, 30, .07);
  box-shadow: 0 10px 24px rgba(28, 42, 58, .06);
  color: var(--rb-ink, #1A1C1E);
}
.rb-bus-hero__stats strong {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}
.rb-bus-hero__stats span {
  font-size: 11.5px;
  font-weight: 700;
  opacity: .72;
}
.rb-bus-hero__stats .is-gold {
  background: linear-gradient(160deg, #fff8ea, #f7f0e2);
  border-color: rgba(196, 162, 101, .35);
}
.rb-bus-hero__pass {
  position: relative;
  align-self: center;
  width: 100%;
  max-width: 280px;
  margin-inline-start: auto;
  padding: 22px 22px 20px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 252, 246, .96), rgba(247, 236, 214, .92));
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow:
    0 0 0 1px rgba(196, 162, 101, .22),
    0 28px 50px rgba(28, 42, 58, .14);
  color: #2a1c16;
  transform: rotate(-3.5deg);
}
.rb-bus-hero__pass::before,
.rb-bus-hero__pass::after {
  content: "";
  position: absolute;
  top: 58%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #efe6da;
  box-shadow: 0 0 0 3px rgba(196, 162, 101, .16);
}
.rb-bus-hero__pass::before { right: -10px; }
.rb-bus-hero__pass::after { left: -10px; }
.rb-bus-hero__pass-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(196, 162, 101, .45);
  color: #8a6d3b;
  font-size: 11px;
  font-weight: 800;
}
.rb-bus-hero__pass-top b {
  color: #E11D2E;
  font-size: 13px;
}
.rb-bus-hero__pass-city em {
  display: block;
  margin-bottom: 2px;
  color: #8a6d3b;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}
.rb-bus-hero__pass-city strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}
.rb-bus-hero__pass-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  margin: 12px 0;
  color: #E11D2E;
}
.rb-bus-hero__pass-line i {
  display: block;
  height: 0;
  border-top: 1.5px dashed rgba(196, 162, 101, .7);
}
.rb-bus-hero__pass-fare {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed rgba(196, 162, 101, .45);
}
.rb-bus-hero__pass-fare span {
  display: block;
  color: #8a6d3b;
  font-size: 11px;
  font-weight: 700;
}
.rb-bus-hero__pass-fare strong {
  font-size: 20px;
  font-weight: 900;
}
.rb-bus-hero__pass-fare small {
  font-size: 12px;
  font-weight: 700;
  color: #8a6d3b;
}
.rb-bus-hero__desk {
  position: relative;
  z-index: 4;
  padding-bottom: 8px;
}
.rb-bus-search {
  position: relative;
  z-index: 30;
  margin-bottom: -42px;
  overflow: visible;
}
.rb-bus-hero .rb-search { overflow: visible; }
.rb-bus-hero .rb-search__shell {
  border-radius: 28px !important;
  border: 1px solid rgba(255, 255, 255, .95) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .9) inset,
    0 22px 50px rgba(28, 42, 58, .12) !important;
  overflow: visible !important;
}
.rb-bus-hero .rb-search__shell::before {
  display: block !important;
  content: "";
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 3px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, #E11D2E, #C4A265 55%, #1F7A6E);
  pointer-events: none;
  z-index: 2;
}

.rb-bus-body {
  position: relative;
  z-index: 1;
  padding: 72px 0 80px;
}
.rb-bus-rail {
  margin-bottom: 22px;
  min-width: 0;
  max-width: 100%;
}
.rb-dates {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 6px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 8px 6px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(247, 240, 226, .85), rgba(239, 232, 220, .7));
  border: 1px solid rgba(196, 162, 101, .22);
}
.rb-dates__scroller {
  display: block !important;
  flex: 1 1 0%;
  width: 0;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 4px 0;
  overflow-x: auto !important;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  touch-action: pan-x;
  white-space: nowrap !important;
}
.rb-dates__scroller::-webkit-scrollbar { display: none; }
.rb-dates__pad {
  display: inline-block;
  width: 4px;
  min-width: 4px;
  height: 1px;
  vertical-align: middle;
  pointer-events: none;
}
.rb-dates a.rb-dates__day {
  display: inline-flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  vertical-align: top !important;
  box-sizing: border-box;
  width: 6.4rem;
  min-width: 6.4rem;
  height: 58px;
  margin: 0 0 0 8px;
  padding: 6px 8px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 14px rgba(28, 42, 58, .05);
  color: #1c2a3a;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
  font-size: 13px;
  transition: none;
}
.rb-dates a.rb-dates__day small,
.rb-dates a.rb-dates__day strong {
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}
.rb-dates a.rb-dates__day small {
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
}
.rb-dates a.rb-dates__day strong {
  font-size: 13px;
  font-weight: 800;
}
.rb-dates a.rb-dates__day:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(28, 42, 58, .1);
}
.rb-dates a.rb-dates__day.is-active {
  background: linear-gradient(145deg, #ff3142, #E11D2E 55%, #b91422);
  color: #fff;
  box-shadow: 0 10px 22px rgba(225, 29, 46, .32);
}
.rb-dates a.rb-dates__day.is-active small,
.rb-dates a.rb-dates__day.is-active strong { color: #fff; }
.rb-dates__nav {
  flex: 0 0 auto;
  position: static;
  display: grid !important;
  place-items: center;
  width: 32px;
  height: 32px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #1c2a3a;
  box-shadow: 0 8px 16px rgba(28, 42, 58, .08);
  cursor: pointer;
  transform: none;
}
.rb-dates__nav.is-prev,
.rb-dates__nav.is-next { right: auto; left: auto; }
.rb-dates__nav:hover { color: #E11D2E; }

.rb-bus-popular { margin: 0 0 28px; }
.rb-bus-popular h2 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
}
.rb-bus-popular__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
}
.rb-bus-popular__grid a {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(28, 42, 58, .05);
  color: inherit;
}
.rb-bus-popular__grid span { color: #9ca3af; font-size: 12px; }
.rb-bus-popular__grid em {
  margin-right: auto;
  font-style: normal;
  font-size: 12px;
  color: #1f7a6e;
  font-weight: 700;
}

.rb-bus-note {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff6e8;
  color: #7a4e12;
  font-size: 13px;
}

.rb-bus-results__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}
.rb-bus-results__head h2 {
  margin: 0;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 800;
}
.rb-bus-results__head span { color: #6b7280; font-size: 13px; }

.rb-bus-list {
  display: grid;
  gap: 14px;
}

.rb-bus-card {
  display: grid;
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(196, 162, 101, .18);
  box-shadow: 0 14px 36px rgba(28, 42, 58, .06);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.rb-bus-card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 29, 46, .16);
  box-shadow: 0 22px 44px rgba(28, 42, 58, .1);
}
.rb-bus-card.is-vip {
  border-color: rgba(196, 162, 101, .42);
  box-shadow: 0 14px 36px rgba(154, 120, 64, .1);
}
.rb-bus-card.is-vip::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #9a7840, #f0dfb4, #c4a265);
}
.rb-bus-card.is-sold { opacity: .82; }
.rb-bus-card.is-sold:hover { transform: none; }

.rb-bus-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px 12px;
  border-bottom: 1px dashed rgba(196, 162, 101, .28);
}
.rb-bus-card__brand { min-width: 0; }
.rb-bus-card__company {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.rb-bus-card__company img,
.rb-bus-card__initial {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: contain;
  background: #f7f2ea;
  border: 1px solid rgba(196, 162, 101, .2);
  flex-shrink: 0;
}
.rb-bus-card__initial {
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #1c2a3a;
}
.rb-bus-card__company-text { min-width: 0; }
.rb-bus-card__company small { display: block; }
.rb-bus-card__company strong {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  max-width: 100%;
  font-size: 14px;
  line-height: 1.45;
  color: #1c2a3a;
}
.rb-bus-card__go {
  flex-shrink: 0;
  color: #c4a265;
  opacity: .85;
}
.rb-bus-card__company small {
  color: #6b7280;
  font-size: 12px;
  margin-top: 1px;
}
a.rb-bus-card__company:hover strong,
a.rb-bus-card__company:focus-visible strong {
  color: var(--rb-bus-pink, #E11D2E);
}
a.rb-bus-card__company:hover .rb-bus-card__go,
a.rb-bus-card__company:focus-visible .rb-bus-card__go {
  color: var(--rb-bus-pink, #E11D2E);
  opacity: 1;
}

.rb-bus-card__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rb-bus-card__chips li {
  padding: 3px 9px;
  border-radius: 999px;
  background: #f4efe8;
  color: #6b5340;
  font-size: 11px;
  font-weight: 700;
}
.rb-bus-card__chips li.is-vip {
  background: #1c2a3a;
  color: #f0dfb4;
}

.rb-bus-card__main {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr) 168px;
  gap: 12px 16px;
  align-items: center;
  padding: 14px 18px 16px;
}

.rb-bus-card__when {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 8px;
  border-radius: 16px;
  background: linear-gradient(180deg, #faf6ef, #f4efe8);
  text-align: center;
}
.rb-bus-card__when b {
  font-size: 28px;
  letter-spacing: -.04em;
  line-height: 1;
  color: #1c2a3a;
  font-variant-numeric: tabular-nums;
}
.rb-bus-card__when em {
  display: inline-flex;
  padding: 1px 8px;
  border-radius: 999px;
  background: rgba(196, 162, 101, .18);
  color: #9a7840;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
}
.rb-bus-card__when span {
  color: #6b7280;
  font-size: 12px;
  line-height: 1.4;
}

.rb-bus-card__route {
  display: grid;
  grid-template-columns: minmax(0, max-content) minmax(108px, 152px) minmax(0, max-content);
  grid-template-areas:
    "from-hint track to-hint"
    "from track to";
  justify-content: center;
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  width: 100%;
  min-width: 0;
}
.rb-bus-card__hint {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #b08a4a;
}
.rb-bus-card__hint.is-from {
  grid-area: from-hint;
  text-align: start;
}
.rb-bus-card__hint.is-to {
  grid-area: to-hint;
  text-align: end;
}
.rb-bus-card__stop {
  min-width: 0;
  max-width: 148px;
}
.rb-bus-card__stop.is-from {
  grid-area: from;
  text-align: start;
}
.rb-bus-card__stop.is-to {
  grid-area: to;
  text-align: end;
}
.rb-bus-card__stop em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  color: #1c2a3a;
  line-height: 1.3;
}
.rb-bus-card__stop small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #8a8074;
  font-size: 12px;
  margin-top: 3px;
}
.rb-bus-card__track {
  grid-area: track;
  display: flex;
  align-items: center;
  align-self: center;
  min-width: 0;
  height: 36px;
  padding: 0 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(247, 240, 226, .9), rgba(247, 240, 226, .35));
  box-shadow: inset 0 0 0 1px rgba(196, 162, 101, .16);
}
.rb-bus-card__pin {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #f7f0e2 58%);
  border: 1.5px solid #c4a265;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .7);
  flex-shrink: 0;
}
.rb-bus-card__pin.is-to {
  background: radial-gradient(circle at 35% 30%, #f7e7c4, #c4a265 70%);
  border-color: #9a7840;
}
.rb-bus-card__rail {
  flex: 1;
  height: 0;
  border-top: 1.5px dashed rgba(154, 120, 64, .48);
}
.rb-bus-card__bus {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0 3px;
  border-radius: 50%;
  background: #fff;
  color: #9a7840;
  border: 1px solid rgba(196, 162, 101, .42);
  box-shadow: 0 6px 12px rgba(154, 120, 64, .14);
  flex-shrink: 0;
}

.rb-bus-card__aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  min-width: 0;
  padding: 2px 2px 2px 6px;
  margin-right: 4px;
  border-right: 1px dashed rgba(196, 162, 101, .38);
}
.rb-bus-card__seats {
  font-size: 12px;
  font-weight: 700;
  color: #1f7a6e;
  text-align: start;
}
.rb-bus-card__seats.is-sold { color: #b91422; }
.rb-bus-card__price {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 6px;
}
.rb-bus-card__price strong { font-size: 20px; color: #1c2a3a; }
.rb-bus-card__price small { color: #6b7280; }
.rb-bus-card__price .is-muted { font-size: 14px; color: #9ca3af; }
.rb-bus-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #e11d2e;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(225, 29, 46, .22);
}
.rb-bus-card__cta:hover { filter: brightness(1.05); }
.rb-bus-card__cta.is-sold {
  background: #1c2a3a;
  box-shadow: none;
}

.rb-bus-empty {
  padding: 42px 20px;
  text-align: center;
  border-radius: 20px;
  background: #fff;
}
.rb-bus-empty p { margin: 8px auto 0; max-width: 440px; color: #6b7280; }
.rb-bus-pager { margin-top: 22px; }

@media (max-width: 991px) {
  .rb-bus-card__main {
    grid-template-columns: 110px minmax(0, 1fr);
    grid-template-areas:
      "when route"
      "aside aside";
  }
  .rb-bus-card__when { grid-area: when; }
  .rb-bus-card__route { grid-area: route; }
  .rb-bus-card__aside {
    grid-area: aside;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px 14px;
    width: 100%;
    margin: 2px 0 0;
    padding: 12px 0 0;
    border-right: 0;
    border-top: 1px dashed rgba(196, 162, 101, .28);
  }
  .rb-bus-card__cta { margin-top: 0; }
}

@media (max-width: 1100px) {
  .rb-bus-hero__stage {
    grid-template-columns: minmax(0, 1fr) minmax(200px, 240px);
    gap: 20px 24px;
  }
  .rb-bus-hero__pass { padding: 18px 16px 16px; }
  .rb-bus-hero__pass-city strong { font-size: 18px; }
}

@media (min-width: 992px) {
  .rb-bus-hero__stage:has(.rb-bus-hero__pass) .rb-bus-hero__route {
    display: none;
  }
}

@media (max-width: 991px) {
  .rb-bus-hero { padding-top: 108px; }
  .rb-bus-hero__stage {
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: 18px;
  }
  .rb-bus-hero__copy::before,
  .rb-bus-hero__pass { display: none; }
  .rb-bus-hero__atlas { opacity: .5; }
  .rb-bus-hero__orb--gold,
  .rb-bus-hero__rings { display: none; }
  .rb-bus-search { margin-bottom: -16px; }
}

@media (max-width: 640px) {
  .rb-bus-hero { padding-top: 112px; min-height: 0; }
  .rb-bus-hero__title {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 22px;
  }
  .rb-bus-hero__title span {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-shadow: none;
    opacity: .88;
  }
  .rb-bus-hero__title em { font-size: 28px; line-height: 1.3; }
  .rb-bus-hero__desc { font-size: 14px; line-height: 1.8; }
  .rb-bus-hero__route {
    margin-bottom: 12px;
  }
  .rb-bus-hero__route-cities { font-size: 15px; }
  .rb-bus-hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .rb-bus-hero__stats li {
    min-width: 0;
    width: auto;
    flex: none;
    padding: 10px 12px;
  }
  .rb-bus-crumb {
    max-width: 100%;
    font-size: 11.5px;
    padding: 6px 10px;
    line-height: 1.55;
  }
  .rb-bus-search { margin-bottom: 0; }
  .rb-bus-hero .rb-search__shell { border-radius: 22px !important; }
  .rb-bus-body { padding: 40px 0 64px; }
  .rb-bus-card__head {
    padding: 14px 14px 10px;
    align-items: flex-start;
  }
  .rb-bus-card__chips { max-width: 46%; }
  .rb-bus-card__chips li:nth-child(n+3) { display: none; }
  .rb-bus-card__main {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 14px 14px;
  }
  .rb-bus-card__when {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: baseline;
    gap: 8px 10px;
    width: 100%;
    padding: 10px 12px;
    text-align: start;
  }
  .rb-bus-card__when b { font-size: 26px; }
  .rb-bus-card__when span { margin-right: auto; }
  .rb-bus-card__route {
    width: 100%;
    padding: 6px 0 2px;
    grid-template-columns: minmax(0, 1fr) minmax(78px, 1fr) minmax(0, 1fr);
    justify-content: stretch;
  }
  .rb-bus-card__stop { max-width: none; }
  .rb-bus-card__stop em { font-size: 15px; }
  .rb-bus-card__track { height: 34px; }
  .rb-bus-card__aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "seats price"
      "cta cta";
    align-items: center;
    gap: 8px 10px;
    padding-top: 12px;
  }
  .rb-bus-card__seats { grid-area: seats; }
  .rb-bus-card__price {
    grid-area: price;
    justify-content: flex-end;
  }
  .rb-bus-card__cta {
    grid-area: cta;
    width: 100%;
  }
  .rb-dates { padding: 4px; gap: 0; }
  .rb-dates__scroller { padding: 2px 4px; }
  .rb-dates a.rb-dates__day {
    width: 4.45rem;
    min-width: 4.45rem;
    max-width: 4.45rem;
    height: 56px;
    min-height: 56px;
    padding: 9px 4px 6px;
    margin-left: 6px;
    border-radius: 14px;
  }
  .rb-dates__nav { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .rb-bus-card,
  .rb-bus-card:hover {
    transform: none;
    transition: none;
  }
}

/* Seat map — boarding pass + cabin */
.rb-seat-page {
  position: relative;
  padding: 118px 0 88px;
  overflow-x: clip;
}
.rb-seat-page__glow {
  position: absolute;
  inset: 80px -12% auto;
  height: 320px;
  pointer-events: none;
  background:
    radial-gradient(ellipse 42% 70% at 82% 30%, rgba(196, 162, 101, .3), transparent 70%),
    radial-gradient(ellipse 36% 60% at 12% 70%, rgba(31, 122, 110, .14), transparent 68%);
  filter: blur(8px);
}
.rb-seat-crumb {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  color: #8a8074;
  font-size: 13px;
  font-weight: 600;
}
.rb-seat-crumb a { color: #1c2a3a; }
.rb-seat-intro {
  position: relative;
  margin: 0 0 20px;
  max-width: 40em;
}
.rb-seat-intro__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  color: #9a7840;
  font-size: 12.5px;
  font-weight: 800;
  text-decoration: none;
}
.rb-seat-intro__back::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: rotate(-45deg);
}
.rb-seat-intro__back:hover { color: var(--rb-bus-pink, #E11D2E); }
.rb-seat-intro h1 {
  margin: 0 0 6px;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: #1c2a3a;
  line-height: 1.3;
}
.rb-seat-intro p {
  margin: 0;
  color: #6b6258;
  font-size: 14.5px;
  line-height: 1.8;
}
.rb-seat {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 328px;
  gap: 22px;
  align-items: start;
}
.rb-seat__main {
  min-width: 0;
  padding: 18px 18px 20px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.97), rgba(252,248,241,.96));
  border: 1px solid rgba(196, 162, 101, .22);
  box-shadow:
    0 22px 54px rgba(28, 42, 58, .08),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.rb-ticket {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 168px;
  grid-template-areas: "face stub";
  margin: 0 0 18px;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(196, 162, 101, .28);
  box-shadow: 0 16px 36px rgba(28, 42, 58, .06);
}
.rb-ticket__face {
  grid-area: face;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding: 16px 18px 16px 14px;
  background:
    radial-gradient(ellipse 80% 70% at 100% 0%, rgba(196, 162, 101, .1), transparent 55%),
    linear-gradient(180deg, #fffefb, #fffaf3);
}
.rb-ticket__stub {
  grid-area: stub;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 18px 14px;
  background:
    radial-gradient(circle at 0 0, rgba(196, 162, 101, .28), transparent 46%),
    linear-gradient(165deg, #2c3e52, #1c2a3a);
  color: #fff;
  text-align: center;
}
.rb-ticket__stub::before,
.rb-ticket__stub::after {
  content: "";
  position: absolute;
  right: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #f7f1e8;
  box-shadow: inset 0 0 0 1px rgba(196, 162, 101, .18);
}
.rb-ticket__stub::before { top: -10px; }
.rb-ticket__stub::after { bottom: -10px; }
.rb-ticket__stub span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #f0dfb4;
}
.rb-ticket__stub b {
  font-size: 34px;
  letter-spacing: -.05em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.rb-ticket__stub em {
  display: inline-flex;
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(240, 223, 180, .16);
  color: #f0dfb4;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
}
.rb-ticket__stub small {
  color: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}
.rb-ticket__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rb-seat__company {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
  color: inherit;
  text-decoration: none;
}
.rb-seat__company img,
.rb-seat__company > span {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(196, 162, 101, .28);
  box-shadow: 0 10px 20px rgba(28, 42, 58, .06);
  flex-shrink: 0;
}
.rb-seat__company > span {
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #1c2a3a;
  background: linear-gradient(180deg, #fff, #f7f2ea);
}
.rb-seat__company strong {
  display: block;
  font-size: 16px;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
.rb-seat__company small {
  display: block;
  margin-top: 2px;
  color: #9a7840;
  font-size: 11px;
  font-weight: 800;
}
a.rb-seat__company:hover strong,
a.rb-seat__company:focus-visible strong {
  color: var(--rb-bus-pink, #E11D2E);
}
.rb-seat__vip {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: #1c2a3a;
  color: #f0dfb4;
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}
.rb-ticket__route {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(92px, 1.2fr) minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  padding: 12px 12px 10px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(247, 240, 226, .55));
  box-shadow: inset 0 0 0 1px rgba(196, 162, 101, .16);
}
.rb-ticket__stop { min-width: 0; }
.rb-ticket__stop.is-from { text-align: start; }
.rb-ticket__stop.is-to { text-align: end; }
.rb-ticket__stop i {
  display: block;
  margin-bottom: 3px;
  color: #9a7840;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .08em;
}
.rb-ticket__stop b {
  display: block;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  color: #1c2a3a;
  overflow-wrap: anywhere;
}
.rb-ticket__stop small {
  display: block;
  margin-top: 4px;
  color: #8a8074;
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.rb-ticket__line {
  display: flex;
  align-items: center;
  min-width: 0;
  height: 40px;
}
.rb-ticket__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #c4a265;
  box-shadow: 0 0 0 3px rgba(255,255,255,.7);
  flex-shrink: 0;
}
.rb-ticket__dot.is-to {
  background: #c4a265;
  border-color: #9a7840;
}
.rb-ticket__rail {
  flex: 1;
  height: 2px;
  background: repeating-linear-gradient(90deg, #c4a265 0 6px, transparent 6px 12px);
  opacity: .7;
}
.rb-ticket__bus {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 4px;
  border-radius: 50%;
  background: #fff;
  color: #9a7840;
  border: 1px solid rgba(196, 162, 101, .4);
  box-shadow: 0 8px 16px rgba(154, 120, 64, .16);
  flex-shrink: 0;
}
.rb-ticket__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rb-ticket__facts li {
  min-width: 0;
  padding: 8px 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(196, 162, 101, .16);
}
.rb-ticket__facts span,
.rb-ticket__gates span {
  display: block;
  color: #9a7840;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 3px;
}
.rb-ticket__facts b,
.rb-ticket__facts a,
.rb-ticket__gates b {
  display: block;
  color: #1c2a3a;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.rb-ticket__facts a {
  text-decoration: none;
  letter-spacing: .02em;
}
.rb-ticket__facts a:hover { color: var(--rb-bus-pink, #E11D2E); }
.rb-ticket__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rb-ticket__chips li {
  padding: 5px 10px;
  border-radius: 999px;
  background: #f4efe8;
  color: #6b5340;
  font-size: 12px;
  font-weight: 700;
}
.rb-ticket__gates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.rb-ticket__gates div {
  padding: 9px 11px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fbf6ee, #f4eee3);
  border: 1px dashed rgba(196, 162, 101, .28);
}
.rb-ticket__note {
  margin: 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: #fff6e8;
  color: #7a4e12;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.8;
}

.rb-seat__alert,
.rb-seat__warn {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.8;
}
.rb-seat__alert { background: #fff6e8; color: #7a4e12; }
.rb-seat__warn {
  margin-top: 14px;
  background: linear-gradient(90deg, #fff4e8, #fff8f0);
  color: #9a3412;
  border: 1px solid rgba(194, 65, 12, .1);
}

.rb-seat__studio {
  padding: 4px 2px 0;
}
.rb-seat__studio-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px 16px;
  margin-bottom: 12px;
}
.rb-seat__studio-bar span {
  display: block;
  color: #9a7840;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.rb-seat__studio-bar h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #1c2a3a;
}
.rb-seat__map {
  display: flex;
  justify-content: center;
  min-width: 0;
  width: 100%;
}
.rb-seat__cabin {
  --seat-w: 42px;
  --seat-h: 48px;
  --seat-gutter: 6px;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(90deg, #243446 0 52px, transparent 52px),
    linear-gradient(180deg, #efe6d8, #f7f1e8 16%, #f4ece1);
  border: 1px solid rgba(36, 52, 70, .16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.65),
    0 18px 36px rgba(28, 42, 58, .08);
}
.rb-seat__cockpit {
  flex-shrink: 0;
  width: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  padding: 8px 0 10px;
  color: #f0dfb4;
}
.rb-seat__glass {
  flex: 1 1 auto;
  width: 34px;
  min-height: 36px;
  border-radius: 16px 16px 8px 8px;
  background:
    linear-gradient(180deg, rgba(186, 220, 255, .5), rgba(255,255,255,.12) 70%);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45);
}
.rb-seat__cockpit svg { color: #f7f0e2; }
.rb-seat__cockpit small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  color: #f0dfb4;
}
.rb-seat__deck {
  position: relative;
  flex: 0 1 auto;
  min-width: 0;
  width: max-content;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 12px 12px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.22), transparent 30%);
}
.rb-seat__windows {
  position: absolute;
  top: 6px;
  right: 8px;
  left: 8px;
  height: 7px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg,
    rgba(255,255,255,.7) 0 16px,
    rgba(36, 52, 70, .12) 16px 22px);
  pointer-events: none;
}
.rb-seat__grid {
  display: flex;
  flex-direction: column;
  gap: var(--seat-gutter);
  width: max-content;
  min-width: 0;
  max-width: 100%;
  direction: ltr;
  overflow: visible;
}
.rb-seat__bank {
  display: flex;
  flex-direction: column;
  gap: var(--seat-gutter);
  width: max-content;
  max-width: 100%;
}
.rb-seat__row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: var(--seat-gutter);
  width: max-content;
  min-width: 0;
  max-width: 100%;
  min-height: var(--seat-h);
  overflow: visible;
}
.rb-seat__row.is-aisle {
  width: auto;
  align-self: stretch;
  min-height: 14px;
}
.rb-seat__aisle {
  display: block;
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #e4d5bf, #d3c2a8);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4);
}
.rb-seat__gap {
  width: calc(var(--span, 1) * var(--seat-w) + (var(--span, 1) - 1) * var(--seat-gutter));
  height: var(--seat-h);
  flex: 0 0 auto;
  background: none;
  box-shadow: none;
}
.rb-seat__door {
  --door-w: calc(var(--span, 1) * var(--seat-w) + (var(--span, 1) - 1) * var(--seat-gutter));
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: var(--door-w);
  height: var(--seat-h);
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.rb-seat__door.is-echo {
  visibility: hidden;
  pointer-events: none;
}
.rb-seat__door-well {
  flex: none;
  width: 14px;
  height: 20px;
  border-radius: 7px 7px 2px 2px;
  background:
    radial-gradient(circle at 70% 58%, #f0dfb4 1.2px, transparent 1.4px),
    linear-gradient(180deg, #3a4d62 0 4px, #2a3c50 4px);
  box-shadow: inset 0 0 0 1.5px #243446;
}
.rb-seat__door b {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #8a7358;
  line-height: 1;
}
.rb-seat__cell {
  position: relative;
  width: var(--seat-w);
  height: var(--seat-h);
  flex: 0 0 var(--seat-w);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
  padding: 1px 2px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #1c2a3a;
  min-width: 0;
  box-shadow: none;
  transition: transform .16s ease, color .16s ease;
}
.rb-seat__rest {
  position: static;
  width: 56%;
  height: 8px;
  flex: none;
  border-radius: 8px 8px 3px 3px;
  background: currentColor;
  opacity: .38;
  pointer-events: none;
}
.rb-seat__cell b {
  display: grid;
  place-items: center;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  border-radius: 9px 9px 18px 18px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  background: #f3ebe0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.8),
    0 3px 0 rgba(28, 42, 58, .12);
}
.rb-seat__tail {
  display: flex;
  flex-shrink: 0;
  width: 54px;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  background: linear-gradient(180deg, #2c3e52, #243446);
  color: #f0dfb4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
}
button.rb-seat__cell {
  cursor: pointer;
  font: inherit;
}
button.rb-seat__cell:focus-visible {
  outline: 2px solid #c4a265;
  outline-offset: 2px;
}
.rb-seat__cell.is-available b {
  background: #fffdf8;
  box-shadow:
    inset 0 0 0 1.5px #c4a265,
    inset 0 1px 0 #fff,
    0 3px 0 rgba(154, 120, 64, .18);
}
.rb-seat__cell.is-available:hover {
  transform: translateY(-2px);
}
.rb-seat__cell.is-available:hover b {
  box-shadow:
    inset 0 0 0 1.5px #1c2a3a,
    0 4px 0 #1c2a3a;
}
.rb-seat__cell.is-selected {
  color: #fff;
}
.rb-seat__cell.is-selected .rb-seat__rest { opacity: .55; background: #fff; }
.rb-seat__cell.is-selected b {
  background: linear-gradient(180deg, #ff4a59, #E11D2E);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.28),
    0 3px 0 #b91422;
}
.rb-seat__cell.is-ladies { color: #7a4452; }
.rb-seat__cell.is-ladies b { background: #f6d5de; }
.rb-seat__cell.is-gents { color: #35556e; }
.rb-seat__cell.is-gents b { background: #d3e4f1; }
.rb-seat__cell.is-unavailable { color: #9a938a; }
.rb-seat__cell.is-unavailable b {
  background:
    repeating-linear-gradient(-45deg, #ece8e2 0 5px, #e0dbd4 5px 7px);
  box-shadow: none;
}
.rb-seat__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rb-seat__legend li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #6b6258;
  font-size: 12px;
  font-weight: 700;
}
.rb-seat__legend i {
  width: 15px;
  height: 17px;
  border-radius: 5px 5px 8px 8px;
  background: #f3ebe0;
  box-shadow: inset 0 0 0 1px #d8cfc2, 0 2px 0 #d4c6b4;
}
.rb-seat__legend .is-available { box-shadow: inset 0 0 0 1px #c4a265, 0 2px 0 #d4c6b4; }
.rb-seat__legend .is-ladies { background: #f3d4dc; box-shadow: none; }
.rb-seat__legend .is-gents { background: #d5e6f3; box-shadow: none; }
.rb-seat__legend .is-unavailable { background: #ece8e2; box-shadow: none; }
.rb-seat__legend .is-selected { background: #e11d2e; box-shadow: none; }

.rb-seat__side {
  position: sticky;
  top: 96px;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(196, 162, 101, .22);
  box-shadow: 0 18px 48px rgba(28, 42, 58, .07);
}
.rb-seat__pass-top {
  padding: 22px 22px 20px;
  background:
    radial-gradient(circle at 100% 0, rgba(196, 162, 101, .3), transparent 46%),
    linear-gradient(160deg, #2c3e52, #1c2a3a);
  color: #fff;
}
.rb-seat__pass-top span {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  color: #f0dfb4;
  margin-bottom: 4px;
}
.rb-seat__pass-top strong {
  display: block;
  font-size: 30px;
  letter-spacing: -.04em;
  line-height: 1.2;
}
.rb-seat__pass-top small {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
}
.rb-seat__pass-top.is-hot small { color: #ffb4ba; }
.rb-seat__pass-body {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 20px 20px;
}
.rb-seat__pass-body::before {
  content: "";
  position: absolute;
  top: 0;
  right: 16px;
  left: 16px;
  height: 0;
  border-top: 1px dashed #e5d9c6;
}
.rb-seat__fact {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.rb-seat__ico {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #f7f2ea;
  color: #9a7840;
  flex-shrink: 0;
}
.rb-seat__fact strong,
.rb-seat__fact small { display: block; }
.rb-seat__fact strong { font-size: 16px; }
.rb-seat__fact small { color: #8a8074; font-size: 12px; margin-top: 3px; }
.rb-seat__picks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: -6px 0 0 48px;
  padding: 0;
  list-style: none;
}
.rb-seat__picks li {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  min-width: 42px;
  padding: 6px 8px 5px;
  border-radius: 12px;
  background: #e11d2e;
  color: #fff;
  text-align: center;
}
.rb-seat__picks b {
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}
.rb-seat__picks span {
  margin-top: 2px;
  font-size: 9px;
  font-weight: 700;
  opacity: .8;
}
.rb-seat__refunds h3 {
  margin: 0 0 10px;
  font-size: 13px;
  color: #1c2a3a;
}
.rb-seat__refunds ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.rb-seat__refunds li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  color: #5b534c;
}
.rb-seat__refunds em {
  font-style: normal;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  white-space: nowrap;
}
.rb-seat__refunds .is-warn { background: #ffedd5; color: #c2410c; }
.rb-seat__refunds .is-danger { background: #fee2e2; color: #b91c1c; }
.rb-seat__buy,
.rb-seat-dock button {
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #ef3344, #e11d2e);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(225, 29, 46, .24);
}
.rb-seat__buy:hover:not(:disabled),
.rb-seat-dock button:hover:not(:disabled) {
  background: #b91422;
}
.rb-seat__buy:disabled,
.rb-seat-dock button:disabled {
  background: #e8d9c4;
  color: #8a8074;
  box-shadow: none;
  cursor: not-allowed;
}
.rb-seat__hint {
  margin: 0;
  color: #8a8074;
  font-size: 12px;
  line-height: 1.75;
}
.rb-seat__back {
  display: block;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #1c2a3a;
}
.rb-seat-dock { display: none; }

@media (max-width: 991px) {
  .rb-seat { grid-template-columns: 1fr; }
  .rb-seat__side { position: static; }
  .rb-seat-dock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 40;
    margin: 0;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255,251,246,.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(196, 162, 101, .22);
    box-shadow: 0 -10px 28px rgba(28, 42, 58, .08);
  }
  .rb-seat-dock[hidden] { display: none; }
  .rb-seat-dock strong,
  .rb-seat-dock small { display: block; }
  .rb-seat-dock strong { font-size: 16px; }
  .rb-seat-dock small { color: #8a8074; font-size: 12px; }
  .rb-seat-dock button { width: auto; min-width: 132px; flex: none; }
  .rb-seat__buy { display: none; }
  .rb-seat-page { padding-bottom: 108px; }
}

@media (max-width: 767px) {
  .rb-ticket {
    grid-template-columns: 1fr;
    grid-template-areas:
      "stub"
      "face";
  }
  .rb-ticket__stub {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px 14px;
    padding: 14px 16px;
    text-align: start;
  }
  .rb-ticket__stub::before,
  .rb-ticket__stub::after {
    right: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
  }
  .rb-ticket__stub::before { left: -9px; }
  .rb-ticket__stub::after { left: auto; right: -9px; bottom: auto; }
  .rb-ticket__stub b { font-size: 28px; }
  .rb-ticket__stub small { margin-right: auto; }
  .rb-ticket__route {
    grid-template-columns: minmax(0, 1fr) minmax(64px, .9fr) minmax(0, 1fr);
    column-gap: 6px;
  }
  .rb-ticket__stop b { font-size: 16px; }
  .rb-ticket__gates { grid-template-columns: 1fr; }
  .rb-seat-page .container {
    padding-left: 0;
    padding-right: 0;
  }
  .rb-seat-crumb,
  .rb-seat-intro {
    padding-inline: 14px;
  }
  .rb-ticket,
  .rb-seat__side,
  .rb-seat__alert,
  .rb-seat__warn {
    margin-inline: 12px;
  }
  .rb-seat__main {
    padding: 10px 0 12px;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .rb-seat__studio-bar { align-items: flex-start; padding: 0 12px; }
  .rb-seat__legend {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
  }
  .rb-seat__map {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .rb-seat__cabin {
    --seat-w: 64px;
    --seat-h: 52px;
    --seat-gutter: 6px;
    --col-gap: 8px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: calc(100% - 16px);
    max-width: 100%;
    flex: 0 0 auto;
    margin: 0 8px;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 22px;
    background:
      linear-gradient(180deg, #243446 0 48px, #f7f1e8 48px);
    box-shadow: 0 10px 24px rgba(28, 42, 58, .08);
  }
  .rb-seat__cockpit {
    position: sticky;
    top: 0;
    z-index: 2;
    flex-direction: row;
    width: auto;
    align-self: stretch;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding: 10px 12px 8px;
    background: linear-gradient(180deg, #2c3e52, #243446);
    border-bottom: 1px solid rgba(240, 223, 180, .12);
  }
  .rb-seat__glass { display: none; }
  .rb-seat__cockpit svg {
    box-sizing: content-box;
    margin-inline-start: 6px;
    width: 22px;
    height: 22px;
  }
  .rb-seat__cockpit small { font-size: 11px; font-weight: 800; color: #f0dfb4; }
  .rb-seat__cabin .rb-seat__deck {
    width: 100%;
    min-width: 0;
    max-width: none;
    overflow: hidden;
    max-height: none;
    box-sizing: border-box;
    padding: 10px 22px 12px;
    background: linear-gradient(90deg, rgba(255,255,255,.2), transparent 24%);
  }
  .rb-seat__cabin .rb-seat__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 14px minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto;
    justify-items: stretch;
    align-items: stretch;
    gap: 0 8px;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
  }
  .rb-seat__grid:not(:has(.is-aisle)) {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .rb-seat__bank,
  .rb-seat__row.is-aisle {
    min-width: 0;
    max-width: none;
    grid-row: 1;
    justify-self: stretch;
  }
  .rb-seat__cabin .rb-seat__bank {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--seat-gutter);
    width: auto;
    min-width: 0;
    max-width: none;
  }
  .rb-seat__cabin .rb-seat__row {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: var(--seat-gutter);
    min-height: 0;
    min-width: 0;
    width: auto;
    max-width: none;
    box-sizing: border-box;
  }
  .rb-seat__cabin .rb-seat__cell {
    width: auto;
    max-width: none;
    min-width: 0;
    height: var(--seat-h);
    flex: none;
    align-self: stretch;
    margin-inline: 0;
    box-sizing: border-box;
  }
  .rb-seat__bank.is-single {
    grid-column: 1;
  }
  .rb-seat__bank.is-pair {
    grid-column: 3 / span 2;
    flex-direction: row-reverse;
    gap: var(--col-gap);
  }
  .rb-seat__bank.is-pair > .rb-seat__row {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
  }
  .rb-seat__bank:only-child {
    margin-inline: auto;
  }
  .rb-seat__row {
    flex: 0 0 auto;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    gap: var(--seat-gutter);
    min-height: 0;
    min-width: 0;
    width: auto;
    box-sizing: border-box;
  }
  .rb-seat__bank.is-single .rb-seat__row {
    flex: 0 0 auto;
    width: auto;
    align-self: stretch;
  }
  .rb-seat__row.is-aisle {
    grid-column: 2;
    min-height: 0;
    width: auto;
    flex: none;
    max-width: none;
    margin: 0;
    align-self: stretch;
    justify-content: stretch;
    border-radius: 999px;
    background: linear-gradient(90deg, #e4d5bf, #d3c2a8);
  }
  .rb-seat__aisle { display: none; }
  .rb-seat__cell {
    width: auto;
    max-width: none;
    min-width: 0;
    height: var(--seat-h);
    flex: none;
    align-self: stretch;
    margin-inline: 0;
    box-sizing: border-box;
  }
  .rb-seat__cell b { font-size: 13px; }
  .rb-seat__gap,
  .rb-seat__door {
    width: auto;
    max-width: none;
    min-width: 0;
    height: calc(var(--span, 1) * var(--seat-h) + (var(--span, 1) - 1) * var(--seat-gutter));
    flex: none;
    margin: 0;
    align-self: stretch;
    box-sizing: border-box;
  }
  .rb-seat__gap {
    background: none;
    box-shadow: none;
    min-width: 0;
  }
  .rb-seat__door-well {
    width: 13px;
    height: 18px;
  }
  .rb-seat__tail {
    display: block;
    width: auto;
    writing-mode: horizontal-tb;
    transform: none;
    padding: 10px 12px 14px;
    border-top: 1px solid rgba(196, 162, 101, .22);
    background: #efe4d3;
    color: #6b6258;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .rb-seat-page { padding: 108px 0 108px; }
  .rb-seat-crumb { font-size: 12px; margin-bottom: 12px; }
  .rb-seat-intro { margin-bottom: 14px; }
  .rb-seat-intro h1 { font-size: 24px; }
  .rb-seat__main { padding: 8px 0 12px; border-radius: 0; }
  .rb-ticket__face { padding: 14px 12px; gap: 12px; }
  .rb-seat__company img,
  .rb-seat__company > span {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
  .rb-ticket__facts { grid-template-columns: 1fr 1fr; }
  .rb-seat__cabin {
    --seat-h: 50px;
  }
  .rb-seat__cabin .rb-seat__deck {
    padding-inline: 20px;
  }
  .rb-seat__cell b { font-size: 12px; }
  .rb-seat__cockpit svg { margin-inline-start: 6px; }
  .rb-seat__pass-top strong { font-size: 24px; }
  .rb-seat-dock button { min-width: 118px; }
}

@media (prefers-reduced-motion: reduce) {
  .rb-seat__cell,
  .rb-seat__cell.is-available:hover {
    transition: none;
    transform: none;
  }
}

.rb-bus-guide {
  margin-top: 48px;
  padding: 28px 28px 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(196, 162, 101, .18);
  box-shadow: 0 16px 36px rgba(28, 42, 58, .05);
}
.rb-bus-guide__head { max-width: 46em; margin-bottom: 22px; }
.rb-bus-guide__head span {
  display: inline-block;
  margin-bottom: 8px;
  color: #9a7840;
  font-size: 12px;
  font-weight: 800;
}
.rb-bus-guide__head h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
}
.rb-bus-guide__head p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #5c6168;
}
.rb-bus-guide__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.rb-bus-guide__grid section {
  padding: 18px 16px 16px;
  border-radius: 20px;
  background: #faf7f2;
}
.rb-bus-guide__grid h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
}
.rb-bus-guide__grid p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.9;
  color: #5c6168;
}
.rb-bus-faq { margin-top: 42px; }
.rb-bus-faq__head { margin-bottom: 16px; }
.rb-bus-faq__head span {
  display: inline-block;
  margin-bottom: 6px;
  color: #9a7840;
  font-size: 12px;
  font-weight: 800;
}
.rb-bus-faq__head h2 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
}
.rb-bus-faq__list { display: flex; flex-direction: column; gap: 10px; }
.rb-bus-faq__item {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(26, 28, 30, .06);
}
.rb-bus-faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 800;
}
.rb-bus-faq__item summary::-webkit-details-marker { display: none; }
.rb-bus-faq__item summary::after {
  content: "+";
  float: left;
  color: #9a7840;
  font-weight: 800;
}
.rb-bus-faq__item[open] summary::after { content: "−"; }
.rb-bus-faq__item p {
  margin: 0;
  padding: 0 18px 16px;
  font-size: 14px;
  line-height: 1.9;
  color: #5c6168;
}

@media (max-width: 991px) {
  .rb-bus-guide__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .rb-seat__cell { transition: none; }
  .rb-bus-hero__orb,
  .rb-bus-hero__pass { animation: none; transform: none; }
}
