/* ==========================================================================
   TAYRA TOURS — SINGLE TOUR (PRODUCT) PAGE
   Rebrands the legacy maroon single-tour styling to the Tayra green palette
   and styles the meta-box content sections + booking sidebar.
   Loaded AFTER app.css so the overrides win.
   ========================================================================== */

.tayra-single-tour-container {
  background-color: var(--tayra-color-bg);
  padding-bottom: 1px;
}

/* ---------- REBRAND: HEADER ---------- */
.single-tour-title { color: var(--tayra-color-heading); font-weight: 800; }

.single-tour-breadcrumbs,
.single-tour-breadcrumbs a { color: var(--tayra-color-muted); }
.single-tour-breadcrumbs a:hover { color: var(--tayra-color-primary); }
.single-tour-breadcrumbs .bc-sep { color: var(--tayra-color-secondary); }
.single-tour-breadcrumbs .bc-current { color: var(--tayra-color-heading); font-weight: 600; }

/* ---------- REBRAND: HIGHLIGHTS BAR ---------- */
.single-tour-highlights-bar {
  background: var(--tayra-color-surface);
  border: 1px solid var(--tayra-color-border);
  box-shadow: 0 8px 25px rgba(45, 140, 40, 0.05);
  /* Adapts to however many facts have data (1–5). */
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  row-gap: 1rem;
}
.highlight-col { border-right-color: var(--tayra-color-divider); }
.highlight-col .icon-circle {
  background: rgba(45, 140, 40, 0.08);
  color: var(--tayra-color-primary);
}
.highlight-title { color: var(--tayra-color-heading); }
.highlight-subtitle { color: var(--tayra-color-primary); }

/* ---------- FACTS ROW (single strip shown before the itinerary) ---------- */
.st-facts-row {
  display: flex;
  flex-wrap: nowrap;
  background: var(--tayra-color-surface);
  border: 1px solid var(--tayra-color-border);
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(45, 140, 40, 0.05);
  overflow: hidden;
  margin: 0 0 3rem;
}
.st-fact-cell {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 1.15rem;
  border-left: 1px solid var(--tayra-color-divider);
}
.st-fact-cell:first-child { border-left: none; }
.st-fact-cell-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(45, 140, 40, 0.08);
  color: var(--tayra-color-primary);
}
.st-fact-cell-text { display: flex; flex-direction: column; min-width: 0; line-height: 1.3; }
.st-fact-cell-label {
  font-family: var(--tayra-font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tayra-color-muted);
  margin-bottom: 1px;
}
.st-fact-cell-value {
  font-family: var(--tayra-font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--tayra-color-heading);
  overflow-wrap: anywhere;
}

@media (max-width: 700px) {
  .st-facts-row { flex-wrap: wrap; }
  .st-fact-cell {
    flex: 1 1 50%;
    border-left: none;
    border-top: 1px solid var(--tayra-color-divider);
  }
  .st-fact-cell:nth-child(-n+2) { border-top: none; }
}

/* ---------- GALLERY (clickable) + LIGHTBOX ---------- */
.single-tour-gallery-grid .gallery-img { cursor: pointer; }
.single-tour-gallery-grid .gallery-main-item,
.single-tour-gallery-grid .gallery-sub-item { cursor: pointer; }

/* Airbnb gallery: constrain the grid rows to the fixed 480px height so the
   images fill & crop (object-fit: cover) instead of expanding to their natural
   size and overflowing the rectangle. */
.single-tour-gallery-grid { grid-template-rows: minmax(0, 1fr); }
.gallery-side-grid { grid-template-rows: minmax(0, 1fr) minmax(0, 1fr); }
.gallery-main-item,
.gallery-side-grid,
.gallery-sub-item {
  min-width: 0;
  min-height: 0;
}

.st-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
  background: rgba(8, 15, 10, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.st-lightbox.is-open { opacity: 1; visibility: visible; }

.st-lb-stage {
  margin: 0;
  max-width: 92vw;
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.st-lb-img {
  max-width: 92vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  background: rgba(255, 255, 255, 0.03);
}

.st-lb-close,
.st-lb-arrow {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
}
.st-lb-close:hover,
.st-lb-arrow:hover { background: var(--tayra-color-secondary); color: #143321; }

.st-lb-close { top: 1.25rem; right: 1.5rem; width: 46px; height: 46px; }
.st-lb-arrow { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; }
.st-lb-arrow:hover { transform: translateY(-50%) scale(1.06); }
.st-lb-prev { left: 1.5rem; }
.st-lb-next { right: 1.5rem; }

.st-lb-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--tayra-font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.4rem 1rem;
  border-radius: 50px;
}

@media (max-width: 600px) {
  .st-lb-arrow { width: 42px; height: 42px; }
  .st-lb-prev { left: 0.5rem; }
  .st-lb-next { right: 0.5rem; }
  .st-lb-close { top: 0.75rem; right: 0.75rem; }
}

/* ---------- STICKY SECTION NAVIGATION ---------- */
.single-tour-nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--tayra-color-surface);
  border-top: 1px solid var(--tayra-color-border);
  border-bottom: 1px solid var(--tayra-color-border);
  margin-top: 2rem;
  transition: box-shadow 0.25s ease;
}
.single-tour-nav.is-stuck { box-shadow: 0 6px 18px rgba(45, 140, 40, 0.1); }

.single-tour-nav-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.single-tour-nav-inner::-webkit-scrollbar { display: none; }

.st-nav-tab {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  /* Distribute all tabs evenly across the full width of the bar. */
  flex: 1 1 0;
  min-width: 120px;
  padding: 0.9rem 1rem;
  color: var(--tayra-color-muted);
  font-family: var(--tayra-font-heading);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  border-left: 1px solid var(--tayra-color-divider);
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.st-nav-tab:first-child { border-left: none; }
.st-nav-tab svg { width: 22px; height: 22px; color: currentColor; transition: color 0.2s ease; }

.st-nav-tab:hover { color: var(--tayra-color-primary); background: var(--tayra-color-surface-alt); }
.st-nav-tab.is-active {
  color: var(--tayra-color-primary);
  border-bottom-color: var(--tayra-color-primary);
  background: var(--tayra-color-surface-alt);
}

.st-nav-tab--enquire { color: var(--tayra-color-secondary-dark); }
.st-nav-tab--enquire:hover {
  color: var(--tayra-color-white);
  background: var(--tayra-color-secondary-dark);
}

/* Anchor offset so sections land below the sticky nav */
.single-tour-main section[id] { scroll-margin-top: 92px; }

/* ---------- LAYOUT ---------- */
.single-tour-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 3rem;
  margin-top: 3rem;
  padding-bottom: 3.5rem;
  align-items: start;
}

.single-tour-main { min-width: 0; }

/* ---------- SECTIONS & HEADINGS ---------- */
.st-section { margin-bottom: 3rem; }
.st-section:last-child { margin-bottom: 0; }

/* ---------- TAB PANELS (Only active tab is shown) ---------- */
.st-tab-panels {
  min-width: 0;
}

.st-tab-panel {
  display: none !important;
}

.st-tab-panel.is-active {
  display: block !important;
  animation: stTabFadeIn 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.st-tab-panel.st-section {
  margin-bottom: 0;
}

@keyframes stTabFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.single-tour-intro-section { margin-top: 0; max-width: none; }

.tour-intro-heading { color: var(--tayra-color-primary); font-weight: 700; }
.tour-intro-body-content { color: var(--tayra-color-body); }

.st-section-heading {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--tayra-font-heading);
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-weight: 800;
  color: var(--tayra-color-heading);
  margin: 0 0 1.5rem;
}

.st-heading-accent {
  display: inline-block;
  width: 6px;
  height: 1.35em;
  background: var(--tayra-color-secondary);
  border-radius: 50px;
  flex-shrink: 0;
}

/* ---------- PROSE (meta WYSIWYG content) ---------- */
.st-prose {
  font-family: var(--tayra-font-body);
  color: var(--tayra-color-body);
  font-size: 1rem;
  line-height: 1.75;
}
.st-prose > *:first-child { margin-top: 0; }
.st-prose > *:last-child { margin-bottom: 0; }

.st-prose h2,
.st-prose h3,
.st-prose h4 {
  font-family: var(--tayra-font-heading);
  color: var(--tayra-color-primary);
  font-weight: 700;
  line-height: 1.3;
  margin: 1.5rem 0 0.75rem;
}
.st-prose h3 { font-size: 1.2rem; }
.st-prose h4 { font-size: 1.05rem; }

.st-prose p { margin: 0 0 1.1rem; }
.st-prose ul,
.st-prose ol { margin: 0 0 1.1rem; padding-left: 1.4rem; }
.st-prose li { margin-bottom: 0.5rem; }
.st-prose ul li::marker { color: var(--tayra-color-secondary-dark); }
.st-prose strong { color: var(--tayra-color-heading); }
.st-prose a { color: var(--tayra-color-primary); text-decoration: underline; }
.st-prose a:hover { color: var(--tayra-color-primary-dark); }
.st-prose img { max-width: 100%; height: auto; border-radius: 12px; }

.st-prose blockquote {
  margin: 0 0 1.1rem;
  padding: 0.85rem 1.25rem;
  border-left: 4px solid var(--tayra-color-secondary);
  background: var(--tayra-color-surface-alt);
  border-radius: 0 10px 10px 0;
  color: var(--tayra-color-body);
}

.st-card-prose {
  background: var(--tayra-color-surface);
  border: 1px solid var(--tayra-color-border);
  border-radius: 16px;
  padding: 1.6rem 1.75rem;
  box-shadow: 0 6px 20px rgba(45, 140, 40, 0.04);
}

/* ---------- ACCORDION (itinerary + FAQ) ---------- */
.st-accordion { display: flex; flex-direction: column; gap: 0.85rem; }

.st-acc-item {
  border: 1px solid var(--tayra-color-border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--tayra-color-surface);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.st-acc-item.is-open {
  border-color: var(--tayra-color-secondary);
  box-shadow: 0 10px 28px rgba(45, 140, 40, 0.08);
}

.st-acc-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--tayra-font-heading);
}

.st-acc-daynum {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--tayra-color-primary);
  color: var(--tayra-color-white);
  font-weight: 800;
  font-size: 0.9rem;
}
.st-acc-item.is-open .st-acc-daynum { background: var(--tayra-color-secondary-dark); }

.st-faq-q-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(45, 140, 40, 0.1);
  color: var(--tayra-color-primary);
  font-weight: 800;
  font-size: 1rem;
}

.st-acc-title {
  flex: 1;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--tayra-color-heading);
  line-height: 1.35;
}

.st-acc-chevron {
  flex-shrink: 0;
  color: var(--tayra-color-primary);
  display: inline-flex;
  transition: transform 0.3s ease;
}
.st-acc-item.is-open .st-acc-chevron { transform: rotate(180deg); }

/* Smooth open/close via grid-template-rows */
.st-acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}
.st-acc-item.is-open .st-acc-body { grid-template-rows: 1fr; }

.st-acc-body-inner {
  overflow: hidden;
  min-height: 0;
}
.st-acc-item.is-open .st-acc-body-inner { padding: 0 1.35rem 1.35rem calc(1.25rem + 34px + 1rem); }
.st-faq-item.is-open .st-acc-body-inner { padding-left: calc(1.25rem + 30px + 1rem); }

/* ---------- INCLUDES / NOT INCLUDED ---------- */
.st-inc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.st-inc-card {
  border: 1px solid var(--tayra-color-border);
  border-radius: 16px;
  padding: 1.5rem 1.6rem;
}
.st-inc-yes { background: rgba(255, 108, 208, 0.08); border-color: rgba(255, 108, 208, 0.4); }
.st-inc-no { background: rgba(211, 47, 47, 0.045); border-color: rgba(211, 47, 47, 0.22); }

.st-inc-yes .st-inc-prose h2,
.st-inc-yes .st-inc-prose h3 { color: var(--tayra-color-primary); margin-top: 0; }
.st-inc-no .st-inc-prose h2,
.st-inc-no .st-inc-prose h3 { color: var(--tayra-color-error); margin-top: 0; }

.st-inc-prose ul { list-style: none; padding-left: 0; margin-bottom: 0; }
.st-inc-prose ul li {
  position: relative;
  padding-left: 1.85rem;
  margin-bottom: 0.6rem;
}
.st-inc-prose ul li::before {
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}
.st-inc-yes .st-inc-prose ul li::before {
  content: '✓';
  background: var(--tayra-color-secondary);
  color: #143321;
}
.st-inc-no .st-inc-prose ul li::before {
  content: '✕';
  background: rgba(211, 47, 47, 0.15);
  color: var(--tayra-color-error);
}

/* ---------- BOOKING SIDEBAR (MATCHES SPECIFICATION & REFERENCE DESIGN) ---------- */
.single-tour-sidebar {
  position: sticky;
  top: 1.5rem;
}

.st-booking-card {
  background: var(--tayra-color-surface, #ffffff);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Price Header */
.st-booking-price-header {
  text-align: center;
  margin-bottom: 1.35rem;
}

.st-price-top-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
}

.st-price-from-txt {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
}

.st-price-from-txt del {
  color: #64748b;
  font-weight: 700;
  margin-left: 0.15rem;
}

.st-price-discount-badge {
  background: #ef4444;
  color: #ffffff;
  font-family: var(--tayra-font-heading, sans-serif);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.18rem 0.45rem;
  border-radius: 4px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.st-price-amount-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  line-height: 1;
  margin-top: 0.35rem;
}

.st-currency-code {
  font-family: var(--tayra-font-heading, sans-serif);
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e293b;
  letter-spacing: 0.02em;
}

.st-main-price {
  font-family: var(--tayra-font-heading, sans-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1;
}

.st-main-price.st-on-request {
  font-size: 1.5rem;
  color: #2D8C28;
}

/* Booking Actions */
.st-booking-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Button 1: Primary Action (WeTravel / Book Now) - Cataleya Brand Green */
.st-btn-reserve-wetravel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: var(--tayra-color-primary, #2D8C28);
  color: #ffffff !important;
  border: none;
  border-radius: 12px;
  padding: 0.95rem 1rem;
  font-family: var(--tayra-font-heading, sans-serif);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(45, 140, 40, 0.32);
}

.st-btn-reserve-wetravel:hover {
  background: var(--tayra-color-primary-dark, #1E6B1A);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 140, 40, 0.45);
}

.st-btn-reserve-wetravel * {
  pointer-events: none;
}

/* Button 2: Secondary Action (Send Inquiry) - Clean Brand Secondary Style */
.st-btn-send-inquiry {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: #ffffff;
  color: var(--tayra-color-primary, #2D8C28) !important;
  border: 2px solid var(--tayra-color-primary, #2D8C28);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-family: var(--tayra-font-heading, sans-serif);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.st-btn-send-inquiry:hover {
  background: rgba(45, 140, 40, 0.08);
  border-color: var(--tayra-color-primary-dark, #1E6B1A);
  color: var(--tayra-color-primary-dark, #1E6B1A) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 140, 40, 0.16);
}

/* WhatsApp Row */
.st-sidebar-whatsapp-row {
  text-align: center;
  margin-top: 0.45rem;
  padding-top: 0.25rem;
}

.st-sidebar-whatsapp-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  transition: color 0.2s ease;
}

.st-sidebar-whatsapp-link strong {
  font-weight: 800;
  color: #0f172a;
}

.st-sidebar-whatsapp-link:hover {
  color: var(--tayra-color-primary, #2D8C28);
}

/* Trust List Below Card - Modern Professional Vector Icons (No Emojis) */
.st-sidebar-trust-list {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.st-trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--tayra-color-heading, #0B1B12);
}

.st-trust-icon-wrap {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(45, 140, 40, 0.1);
  color: var(--tayra-color-primary, #2D8C28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.st-trust-check-wrap {
  background: rgba(45, 140, 40, 0.12);
  color: var(--tayra-color-primary, #2D8C28);
}

.st-star-svg {
  display: inline-block;
  vertical-align: -1px;
  margin: 0 1px;
}

.st-trust-sep {
  margin: 0 0.35rem;
  color: #94a3b8;
}

.st-trust-rating-score {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 700;
}

.st-trust-rating-count {
  color: #64748b;
  font-size: 0.85rem;
  font-weight: normal;
}

/* Guarantee Banner Box */
.st-sidebar-guarantee-banner {
  background: rgba(45, 140, 40, 0.04);
  border: 1px solid rgba(45, 140, 40, 0.18);
  border-radius: 12px;
  padding: 1.15rem 1rem;
  text-align: center;
  margin-top: 1.25rem;
}

.st-sidebar-guarantee-banner p {
  margin: 0;
  font-family: var(--tayra-font-heading, sans-serif);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.03em;
  color: var(--tayra-color-heading, #0B1B12);
  text-transform: uppercase;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
  .single-tour-layout { grid-template-columns: 1fr; gap: 2rem; }
  .single-tour-sidebar { order: -1; }
  .st-booking-card { position: static; }
  .st-inc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .st-acc-item.is-open .st-acc-body-inner { padding-left: 1.25rem; }
  .st-faq-item.is-open .st-acc-body-inner { padding-left: 1.25rem; }
  .st-acc-header { gap: 0.75rem; padding: 1rem; }
}

/* ---------- RELATED TOURS SECTION (End of Tour Content) ---------- */
.st-related-tours-section {
  padding: 4rem 0 5.5rem;
  border-top: 1px solid var(--tayra-color-border);
  background: var(--tayra-color-surface);
}

.st-related-header {
  margin-bottom: 2.75rem;
}

.st-related-header .st-section-heading {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
}

.st-related-subtitle {
  font-family: var(--tayra-font-body);
  font-size: 0.95rem;
  color: var(--tayra-color-muted);
  margin: 0;
  line-height: 1.6;
}

/* Card metadata (location, duration) */
.st-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  margin: 0 0 0.75rem;
}

.st-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--tayra-color-muted);
}

.st-meta-item svg {
  color: var(--tayra-color-primary);
  flex-shrink: 0;
}

/* Card footer & price styling */
.st-related-grid .tour-card-footer {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--tayra-color-divider);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.st-related-grid .tour-price-group {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.st-related-grid .price-label {
  font-family: var(--tayra-font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tayra-color-muted);
  margin-bottom: 3px;
}

.st-related-grid .price-value {
  font-family: var(--tayra-font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--tayra-color-primary);
  line-height: 1.1;
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 2px;
  transition: color 0.25s ease;
}

.st-related-grid .price-value .woocommerce-Price-amount {
  color: var(--tayra-color-primary);
  font-weight: 800;
}

.st-related-grid .price-value .woocommerce-Price-currencySymbol {
  font-size: 0.95rem;
  font-weight: 700;
  margin-right: 2px;
}

.st-related-grid .price-value del {
  color: var(--tayra-color-muted);
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.65;
  margin-right: 0.35rem;
}

.st-related-grid .price-value ins {
  text-decoration: none;
}

/* Polished "MORE DETAILS" pill button */
.st-related-grid .tour-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.52rem 1.05rem;
  border: 1.5px solid rgba(45, 140, 40, 0.28);
  border-radius: 50px;
  background: rgba(45, 140, 40, 0.07);
  color: var(--tayra-color-primary);
  font-family: var(--tayra-font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  margin-left: 0 !important;
  position: relative;
  z-index: 2;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease,
              box-shadow 0.25s ease, transform 0.2s ease;
}

.st-related-grid .tour-card-btn span {
  color: inherit;
  transition: color 0.25s ease;
}

.st-related-grid .tour-card-btn svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

/* Ensure related grid matches brand hover and aesthetics */
.st-related-grid .tayra-tour-card {
  box-shadow: 0 8px 25px rgba(45, 140, 40, 0.06);
}

.st-related-grid .tayra-tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(45, 140, 40, 0.16);
  border-color: var(--tayra-color-secondary);
}

.st-related-grid .tayra-tour-card:hover .tour-card-btn,
.st-related-grid .tour-card-btn:hover {
  background: var(--tayra-color-primary);
  border-color: var(--tayra-color-primary);
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(45, 140, 40, 0.28);
  transform: translateY(-1px);
}

.st-related-grid .tayra-tour-card:hover .tour-card-btn span,
.st-related-grid .tour-card-btn:hover span {
  color: #ffffff;
}

.st-related-grid .tayra-tour-card:hover .tour-card-btn svg,
.st-related-grid .tour-card-btn:hover svg {
  transform: translateX(4px);
  color: #ffffff;
}

.st-related-grid .tayra-tour-card:hover .price-value {
  color: var(--tayra-color-primary-dark);
}

/* Load more / Explore All button */
.st-related-tours-section .tayra-tours-load-more {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.st-related-tours-section .load-more-btn {
  background-color: transparent !important;
  border: 1.5px solid var(--tayra-color-border) !important;
  color: var(--tayra-color-heading) !important;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-family: var(--tayra-font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.st-related-tours-section .load-more-btn:hover {
  background-color: var(--tayra-color-primary) !important;
  border-color: var(--tayra-color-primary) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(45, 140, 40, 0.25);
}

