/* ============================================================
   Single tour detail page
   ============================================================ */

/* ── PHOTO GALLERY ────────────────────────────────────────── */
.st-gallery {
  background: #111;
  overflow: hidden;
}

.st-gallery__main {
  position: relative;
  overflow: hidden;
  line-height: 0;
}

.st-gallery__main-img {
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform .4s ease;
}

.st-gallery__main-img:hover {
  transform: scale(1.015);
}

.st-gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}

.st-gallery__all-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(0,0,0,.6);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background .15s;
  font-family: inherit;
}

.st-gallery__all-btn:hover {
  background: rgba(0,0,0,.8);
}

/* Thumbnail strip */
.st-gallery__strip {
  display: flex;
  gap: 3px;
  padding: 3px 0 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: #111;
}

.st-gallery__strip::-webkit-scrollbar { display: none; }

.st-gallery__thumb {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  opacity: .65;
  transition: opacity .15s, outline .1s;
  display: block;
}

.st-gallery__thumb:hover { opacity: .9; }
.st-gallery__thumb.is-active {
  opacity: 1;
  outline: 2.5px solid #fff;
  outline-offset: -2.5px;
}

/* ── LIGHTBOX ─────────────────────────────────────────────── */
.st-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.st-lightbox.is-open {
  display: flex;
  animation: lb-fade .18s ease;
}

@keyframes lb-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.st-lightbox__img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  padding: 48px 64px 8px;
  box-sizing: border-box;
}

.st-lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
  animation: lb-img-in .18s ease;
}

@keyframes lb-img-in {
  from { opacity: 0; transform: scale(.97); }
  to   { opacity: 1; transform: scale(1); }
}

.st-lightbox__close {
  position: fixed;
  top: 16px;
  right: 20px;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  z-index: 9110;
}
.st-lightbox__close:hover { background: rgba(255,255,255,.22); }

.st-lightbox__prev,
.st-lightbox__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  z-index: 9110;
}
.st-lightbox__prev { left: 12px; }
.st-lightbox__next { right: 12px; }
.st-lightbox__prev:hover,
.st-lightbox__next:hover { background: rgba(255,255,255,.22); }

.st-lightbox__counter {
  color: rgba(255,255,255,.65);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 6px 0;
  flex-shrink: 0;
}

.st-lightbox__strip {
  display: flex;
  gap: 4px;
  padding: 6px 16px 12px;
  overflow-x: auto;
  scrollbar-width: none;
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
}
.st-lightbox__strip::-webkit-scrollbar { display: none; }

.st-lightbox__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 48px;
  object-fit: cover;
  cursor: pointer;
  opacity: .45;
  border-radius: 3px;
  transition: opacity .15s, outline .1s;
}
.st-lightbox__thumb:hover { opacity: .75; }
.st-lightbox__thumb.is-active {
  opacity: 1;
  outline: 2px solid #fff;
  outline-offset: -2px;
}

/* ── TWO-COLUMN LAYOUT ────────────────────────────────────── */
.st-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

/* ── Vendor byline ────────────────────────────────────────── */
.st-vendor-byline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}

.st-vendor-byline a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.st-vendor-byline a:hover { text-decoration: underline; }

/* ── MAIN (LEFT) ──────────────────────────────────────────── */
.st-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.st-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
.st-breadcrumb a:hover { color: var(--primary); }
.st-breadcrumb span { color: var(--light); }

.st-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -.5px;
}

.st-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--muted);
}
.st-rating {
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
}
.st-dot { color: var(--border); }

/* Key facts strip */
.st-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.st-fact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

.st-fact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent);
}

/* Sections */
.st-section {
  margin-bottom: 40px;
}
.st-section__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg);
}

.st-description {
  font-size: 15px;
  line-height: 1.75;
  color: #333;
}
.st-description p { margin-bottom: 12px; }

/* Includes */
.st-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.st-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.st-checklist li {
  font-size: 14px;
  color: #333;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.st-checklist--yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2e7d32;
  font-weight: 700;
}
.st-checklist--no li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #c62828;
  font-weight: 700;
}

/* ── SIDEBAR (RIGHT) ──────────────────────────────────────── */
.st-sidebar {
  position: sticky;
  top: 80px;
}
.st-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--card-shadow);
}

.st-card__price {
  margin-bottom: 14px;
}
.st-card__price-was {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 400;
  margin-bottom: 2px;
}
.st-card__discount-badge {
  display: inline-block;
  background: #c0001a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 4px;
  vertical-align: middle;
  text-decoration: none;
  margin-left: 4px;
}
.st-card__price-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.st-card__from {
  font-size: 13px;
  color: var(--muted);
}
.st-card__amount.is-discounted {
  color: #c0001a;
}
.st-card__promo-banner {
  background: linear-gradient(135deg, #ff6b00, #ff9a00);
  color: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  text-align: center;
  line-height: 1.4;
}
.st-card__from {
  font-size: 13px;
  color: var(--muted);
}
.st-card__amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
}
.st-card__per {
  font-size: 13px;
  color: var(--muted);
}

.st-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.st-card__trip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid var(--bg);
}

/* Enquiry form */
.st-form-success {
  text-align: center;
  padding: 24px 0 8px;
}
.st-form-error {
  background: #fff3f3;
  border: 1px solid #f5c6cb;
  color: #c62828;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 16px;
}
.st-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.st-form__row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.st-form__row--half {
  flex-direction: row;
  gap: 10px;
}
.st-form__row--half > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.st-form label {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .4px;
}
.st-form input,
.st-form textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .15s;
  font-family: inherit;
  box-sizing: border-box;
}
.st-form input:focus,
.st-form textarea:focus { border-color: var(--primary); }
.st-form input::placeholder,
.st-form textarea::placeholder { color: var(--light); }
.st-form textarea { resize: vertical; min-height: 80px; }

.st-form__submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .15s;
  letter-spacing: .2px;
}
.st-form__submit:hover { opacity: .88; }

.st-form__note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .st-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .st-sidebar { position: static; }
  .st-gallery__main-img { height: 300px; }
  .st-gallery__strip { display: none; }
  .st-lightbox__prev { left: 6px; }
  .st-lightbox__next { right: 6px; }
  .st-lightbox__img-wrap { padding: 48px 52px 8px; }
  .st-facts { gap: 4px 16px; }
  .st-includes { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .st-layout { padding: 24px 16px 60px; }
}

/* ── BOOK BUTTON ──────────────────────────────────────────── */
.st-book-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .15s, transform .1s;
  margin-top: 20px;
  font-family: inherit;
  letter-spacing: .01em;
}

.st-book-btn:hover { opacity: .88; transform: translateY(-1px); }
.st-book-btn:active { transform: translateY(0); }

.st-book-note {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #888;
  margin: 8px 0 0;
}

/* ── MODAL BACKDROP ───────────────────────────────────────── */
.vt-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(2px);
}

.vt-modal-backdrop.is-open {
  display: flex;
  animation: vt-fade-in .18s ease;
}

@keyframes vt-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── MODAL BOX ────────────────────────────────────────────── */
.vt-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  animation: vt-slide-up .2s ease;
  position: relative;
}

@keyframes vt-slide-up {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* ── MODAL HEADER ─────────────────────────────────────────── */
.vt-modal__header {
  margin-bottom: 6px;
}

.vt-modal__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 3px;
}

.vt-modal__tour-name {
  font-size: 13px;
  color: #888;
  margin: 0;
  line-height: 1.4;
}

.vt-modal__field-hint {
  font-size: 11px;
  font-weight: 400;
  color: #aaa;
}

/* ── NO-PAY NOTICE ────────────────────────────────────────── */
.vt-modal__no-pay {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #27ae60;
  font-weight: 600;
  background: #f0faf4;
  border: 1px solid #b7e4c7;
  border-radius: 8px;
  padding: 8px 12px;
  margin: 12px 0 20px;
}

/* ── MODAL FORM ───────────────────────────────────────────── */
.vt-modal__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.vt-modal__field label {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.vt-modal__field input,
.vt-modal__field textarea {
  padding: 10px 13px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  background: #fafafa;
  transition: border-color .15s;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
}

.vt-modal__field input:focus,
.vt-modal__field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}

/* ── MODAL ACTIONS ────────────────────────────────────────── */
.vt-modal__actions {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.vt-modal__send {
  flex: 1;
  padding: 13px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: opacity .15s;
}

.vt-modal__send:hover { opacity: .88; }

.vt-modal__cancel {
  padding: 13px 20px;
  background: #f0f0f0;
  color: #555;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s;
}

.vt-modal__cancel:hover { background: #e3e3e3; }

/* ── MODAL ERROR ──────────────────────────────────────────── */
.vt-modal__error {
  display: none;
  background: #fff0f0;
  border: 1px solid #fcc;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #c00;
  margin-bottom: 16px;
}

/* ── MODAL SUCCESS ────────────────────────────────────────── */
.vt-modal__success {
  display: none;
  text-align: center;
  padding: 20px 0 8px;
}

.vt-modal__success-icon {
  width: 56px;
  height: 56px;
  background: #27ae60;
  color: #fff;
  border-radius: 50%;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.vt-modal__success-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 10px;
}

.vt-modal__success-msg {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 24px;
}

.vt-modal__close-btn {
  padding: 12px 32px;
  background: #f0f0f0;
  color: #444;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background .15s;
}

.vt-modal__close-btn:hover { background: #e3e3e3; }

@media (prefers-color-scheme: dark) {
  .st-fact { color: #c0c0d8; }
}

@media (prefers-color-scheme: dark) {
  .vt-modal { background: #1e1e2e; }
  .vt-modal__title { color: #e0e0f0; }
  .vt-modal__field input,
  .vt-modal__field textarea { background: #15151f; border-color: #3a3a4a; color: #e0e0f0; }
  .vt-modal__cancel { background: #2e2e3e; color: #ccc; }
  .vt-modal__cancel:hover { background: #3e3e4e; }
  .vt-modal__close-btn { background: #2e2e3e; color: #ccc; }
  .vt-modal__error { background: #2a1010; border-color: #6a2020; }
  .vt-modal__success-title { color: #e0e0f0; }
}

/* ── SIDEBAR ITINERARY SELECTOR ───────────────────────────── */
.st-variants {
  margin-bottom: 16px;
}

.st-variants__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #aaa;
  margin: 0 0 8px;
}

.st-variants__options {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.st-variant-opt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1.5px solid #e0e0e0;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  transition: border-color .15s, background .15s;
}

.st-variant-opt:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.st-variant-opt.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.st-variant-opt__dur  { font-weight: 600; }

.st-variant-opt__price {
  font-weight: 700;
  font-size: 15px;
}

.st-variant-opt.is-active .st-variant-opt__price {
  color: rgba(255,255,255,.9);
}

/* ── ITINERARY ACCORDION ──────────────────────────────────── */
.st-accordion {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
}

.st-accordion__item {
  border-bottom: 1px solid #e8e8e8;
}

.st-accordion__item:last-child {
  border-bottom: none;
}

.st-accordion__hd {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background .15s;
}

.st-accordion__hd:hover {
  background: #f7f7fb;
}

.st-accordion__item.is-open .st-accordion__hd {
  background: #f7f7fb;
}

.st-accordion__day {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  background: var(--accent);
  padding: 3px 9px;
  border-radius: 20px;
}

.st-accordion__title {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
}

.st-accordion__chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #aaa;
  transition: transform .25s;
}

.st-accordion__item.is-open .st-accordion__chevron {
  transform: rotate(180deg);
}

.st-accordion__bd {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}

.st-accordion__item.is-open .st-accordion__bd {
  grid-template-rows: 1fr;
}

.st-accordion__content {
  overflow: hidden;
  padding: 0 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
}

.st-accordion__item.is-open .st-accordion__content {
  padding: 4px 20px 20px;
}

.st-accordion__content h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--accent);
  margin: 14px 0 6px;
}

.st-accordion__content h3:first-child {
  margin-top: 0;
}

.st-accordion__content p {
  margin: 0 0 10px;
}

.st-accordion__content em {
  color: #888;
  font-size: 13px;
}

/* Meal line inside itinerary day */
.st-day-meals {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 14px 0 4px;
  padding: 8px 12px;
  background: #f5f9f0;
  border-left: 3px solid #6aaa3a;
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  line-height: 1.5;
}
.st-day-meals__label {
  font-weight: 700;
  color: #4a8a20;
  white-space: nowrap;
  flex-shrink: 0;
}
.st-day-meals__value {
  color: #444;
}

@media (prefers-color-scheme: dark) {
  .st-day-meals { background: #1a2a14; border-left-color: #5a9a2a; }
  .st-day-meals__label { color: #7dc84a; }
  .st-day-meals__value { color: #c0c0c0; }
  .st-accordion { border-color: #2e2e3e; }
  .st-accordion__item { border-color: #2e2e3e; }
  .st-accordion__hd:hover,
  .st-accordion__item.is-open .st-accordion__hd { background: #1a1a2a; }
  .st-accordion__title { color: #e0e0f0; }
  .st-accordion__content { color: #aaa; }
}

@media (prefers-color-scheme: dark) {
  .st-gallery { background: #0a0a0f; }
  .st-gallery__strip { background: #0a0a0f; }
  .st-gallery__all-btn {
    background: rgba(0,0,0,.75);
    border-color: rgba(255,255,255,.25);
  }
  .st-gallery__all-btn:hover { background: rgba(0,0,0,.9); }
}

/* ── RELATED TRIPS ────────────────────────────────────────── */
.st-related {
  background: #f7f8fc;
  padding: 56px 24px;
}
.st-related__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.st-related__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 28px;
  color: #111;
}
.st-related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.st-related__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e8eaf0;
  transition: box-shadow .2s, transform .2s;
}
.st-related__card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.st-related__img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.st-related__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.st-related__card:hover .st-related__img-wrap img {
  transform: scale(1.05);
}
.st-related__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 3px 8px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.st-related__body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.st-related__name {
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  color: #111;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.st-related__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .8rem;
  color: #666;
  margin-top: auto;
}
.st-related__price {
  color: #e8612a;
  font-weight: 700;
  margin-left: auto;
}

@media (max-width: 900px) {
  .st-related__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .st-related__grid { grid-template-columns: 1fr; }
  .st-related { padding: 40px 16px; }
}

@media (prefers-color-scheme: dark) {
  .st-related { background: #0f0f1a; }
  .st-related__title { color: #f0f0f8; }
  .st-related__card { background: #1a1a2a; border-color: #2e2e3e; }
  .st-related__name { color: #e0e0f0; }
  .st-related__meta { color: #999; }
}

/* ── Activity highlights ─────────────────────────────────── */
.st-activity-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.st-activity {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border: 1px solid var(--border, #e8e8e8);
  border-radius: 20px;
  background: var(--white, #fff);
}
.st-activity__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--accent);
}
.st-activity__icon svg {
  width: 13px;
  height: 13px;
}
.st-activity__label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
}
@media (prefers-color-scheme: dark) {
  .st-activity { background: #1a1a2a; border-color: #2e2e3e; }
  .st-activity__label { color: #c0c0d8; }
}

/* ── Room types (cruise) ──────────────────────────────────────────────── */
.st-rooms {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.st-room {
  border: 1px solid var(--border, #e0e0e0);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--white, #fff);
}
.st-room__img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.st-room__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.st-room__body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.st-room__name { font-size: 1.05rem; font-weight: 700; margin: 0; color: inherit; }
.st-room__tag {
  display: inline-block;
  font-size: .75rem;
  background: #f0f4ff;
  color: #3355cc;
  border-radius: 20px;
  padding: 2px 10px;
  font-weight: 600;
  align-self: flex-start;
}
.st-room__specs {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: .88rem;
  color: #555;
}
.st-room__spec-icon { margin-right: 6px; font-size: .85em; }
.st-room__extra-label { font-size: .82rem; margin: 4px 0 2px; color: #555; }
.st-room__extra-beds {
  list-style: disc;
  margin: 0 0 0 18px;
  padding: 0;
  font-size: .82rem;
  color: #555;
}
.st-room__more-btn {
  margin-top: auto;
  padding-top: 12px;
  background: none;
  border: none;
  color: var(--accent, #e8612a);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  padding-left: 0;
}
.st-room__more-btn:hover { text-decoration: underline; }

/* Modal */
.st-room-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.st-room-modal.is-open { display: flex; }
.st-room-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(3px);
}
.st-room-modal__box {
  position: relative;
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  padding: 28px 28px 24px;
}
.st-room-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: .7;
  transition: opacity .15s;
  z-index: 1;
}
.st-room-modal__close:hover { opacity: 1; }
.st-room-modal__title { font-size: 1.3rem; font-weight: 700; margin: 0 0 20px; }
.st-room-modal__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
/* Carousel */
.st-room-modal__carousel { display: flex; flex-direction: column; gap: 10px; }
.st-room-modal__main-wrap {
  position: relative;
  aspect-ratio: 4/3;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}
.st-room-modal__main-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.st-room-modal__prev,
.st-room-modal__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.45);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.st-room-modal__prev { left: 8px; }
.st-room-modal__next { right: 8px; }
.st-room-modal__prev:hover,
.st-room-modal__next:hover { background: rgba(0,0,0,.7); }
.st-room-modal__prev.is-hidden,
.st-room-modal__next.is-hidden { display: none; }
.st-room-modal__thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.st-room-modal__thumb {
  width: 60px;
  height: 45px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: .7;
  transition: opacity .15s, border-color .15s;
}
.st-room-modal__thumb.is-active { opacity: 1; border-color: var(--accent, #e8612a); }
/* Details panel */
.st-room-modal__details { display: flex; flex-direction: column; gap: 10px; }
.st-room-modal__section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #888;
  margin: 8px 0 0;
}
.st-room-modal__specs {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: .9rem;
  color: #333;
}
.st-room-modal__desc { font-size: .88rem; color: #555; line-height: 1.6; }
.st-room-modal__amenities {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 12px;
  font-size: .85rem;
  color: #333;
}
.st-room-modal__amenities li::before { content: "✓ "; color: #2a8a3a; font-weight: 700; }

@media (max-width: 680px) {
  .st-room-modal__body { grid-template-columns: 1fr; }
  .st-room-modal__box { padding: 20px 16px 18px; }
  .st-rooms { grid-template-columns: 1fr; }
}

@media (prefers-color-scheme: dark) {
  .st-room { background: #1a1a2a; border-color: #2e2e3e; }
  .st-room__specs { color: #aaa; }
  .st-room__extra-beds { color: #aaa; }
  .st-room__tag { background: #1e2a4a; color: #7799ee; }
  .st-room-modal__box { background: #1a1a2a; color: #e0e0f0; }
  .st-room-modal__close { color: var(--accent); }
  .st-room-modal__specs { color: #ccc; }
  .st-room-modal__desc { color: #aaa; }
  .st-room-modal__amenities { color: #ccc; }
  .st-room-modal__section-label { color: #666; }
  .st-room__name { color: #e0e0f0; }
}
