/* Apartamento Sol y Luna — hospitality template styles */
:root {
  /* Defaults — hospedaje themes override these via assets/themes/<id>/theme.css */
  --gst-brand: #154C63;
  --gst-brand-hover: #1A5A75;
  --gst-brand-deep: #0E3444;
  --gst-accent-gold: #C4A35A;
  --gst-accent-orange: var(--gst-accent-gold);
  --gst-ink: #1F2A2E;
  --gst-ink-muted: #5E6D73;
  --gst-bg: #FCFAF6;
  --gst-bg-soft: #FFFFFF;
  --gst-border: rgba(21, 76, 99, 0.12);
  --gst-border-strong: rgba(21, 76, 99, 0.24);
  --gst-radius: 18px;
  --gst-button-radius: 999px;
  --gst-max: 1180px;
  --gst-shadow: 0 18px 45px rgba(21, 76, 99, 0.12);
  --gst-shadow-soft: 0 10px 28px rgba(21, 76, 99, 0.09);
  --gst-font-display: Georgia, "Times New Roman", serif;
  --gst-font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --gst-font-size: 1rem;
  --gst-font-small: 0.9375rem;
  --gst-font-lead: 1.125rem;
  --gst-line-height: 1.65;
  --gst-section-space: clamp(3.25rem, 7vw, 5rem);
  --gst-card-space: clamp(1.25rem, 3vw, 1.75rem);
  --gst-control-height: 3rem;
  --gst-focus: 0 0 0 3px rgba(196, 163, 90, 0.35);
  --gst-success: #236b4b;
  --gst-success-bg: #edf8f2;
  --gst-error: #9c2f2f;
  --gst-error-bg: #fff1f1;
  --gst-warning: #765a12;
  --gst-warning-bg: #fff8df;
  --gst-transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--gst-font);
  font-size: var(--gst-font-size);
  line-height: var(--gst-line-height);
  color: var(--gst-ink);
  background-color: var(--gst-bg);
  background-image:
    radial-gradient(circle at top left, rgba(196, 163, 90, 0.14), transparent 34rem),
    linear-gradient(180deg, var(--gst-bg) 0%, var(--gst-bg) 24rem);
  overflow-x: hidden;
  max-width: 100%;
}

/* GWT offset on demo chrome only (avoid body padding + sticky top double gap) */
body.has-gwt-site-nav {
  padding-top: 0;
  display: flow-root;
}

body.has-gwt-site-nav .gst-header {
  margin-top: var(--gwt-site-navbar-offset, calc(0.8rem + 0.8rem + 2.25rem + 2px));
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--gst-radius);
}

a {
  color: var(--gst-brand);
  text-decoration: none;
}

a:hover {
  color: var(--gst-brand-hover);
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--gst-brand-hover);
  outline-offset: 3px;
}

.gst-skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: #FFFFFF;
  color: var(--gst-brand);
  box-shadow: var(--gst-shadow);
  transform: translateY(-150%);
}

.gst-skip-link:focus {
  transform: translateY(0);
}

.gst-container {
  width: 100%;
  max-width: var(--gst-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header: top bar scrolls; main nav sticks */
.gst-header {
  background: rgba(252, 250, 246, 0.94);
  border-bottom: 1px solid var(--gst-border);
}

.gst-nav-sticky {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(252, 250, 246, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gst-border);
  box-shadow: 0 8px 24px rgba(21, 76, 99, 0.06);
}

body.has-gwt-site-nav .gst-nav-sticky {
  top: var(--gwt-site-navbar-offset, calc(0.8rem + 0.8rem + 2.25rem + 2px));
}

.gst-main {
  min-height: 50vh;
}

.gst-topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: var(--gst-font-small);
  color: var(--gst-ink-muted);
  border-bottom: 1px solid var(--gst-border);
}

.gst-topbar span,
.gst-topbar a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.gst-topbar-primary {
  color: var(--gst-brand);
  font-weight: 750;
}

.gst-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  min-width: 0;
  flex: 0 1 auto;
}

.logo .gst-brand {
  display: inline-block;
  max-width: min(14.5rem, 52vw);
  font-weight: 700;
  font-size: clamp(0.92rem, 2.6vw, 1.2rem);
  line-height: 1.2;
  color: var(--gst-brand);
  letter-spacing: -0.02em;
  white-space: normal;
  text-wrap: balance;
}

@media (min-width: 900px) {
  .logo .gst-brand {
    max-width: 16rem;
    font-size: 1.2rem;
  }
}

.gst-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: var(--gst-bg-soft);
  border: 1px solid var(--gst-border);
  border-radius: 8px;
  cursor: pointer;
}

.gst-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gst-brand);
}

.gst-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.25rem;
}

.gst-nav a {
  color: #3f535a;
  font-weight: 600;
  font-size: 0.95rem;
}

.gst-nav a:hover,
.gst-nav a[aria-current="page"] {
  color: var(--gst-brand);
}

.gst-nav .gst-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 2px solid var(--gst-brand);
  background: transparent;
  color: var(--gst-brand);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1.25;
  white-space: nowrap;
}

.gst-nav .gst-nav-cta:hover {
  color: #FFFFFF;
  background: var(--gst-brand);
}

@media (max-width: 900px) {
  .gst-nav-toggle {
    display: flex;
  }

  .gst-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0 0;
  }

  .gst-nav.is-open {
    display: flex;
  }

  .gst-nav .gst-nav-cta {
    white-space: normal;
    text-align: center;
    width: 100%;
    justify-content: flex-start;
  }
}

/* Hero */
.gst-hero {
  padding: var(--gst-section-space) 0;
  text-align: center;
}

.gst-hero h1 {
  margin: 0 0 1.35rem;
  font-size: clamp(2.35rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--gst-ink);
}

.gst-hero p {
  margin: 0 auto;
  max-width: 38rem;
  color: var(--gst-ink-muted);
  font-size: clamp(1.0625rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.gst-hero--sunmoon {
  display: grid;
  gap: clamp(2.25rem, 5vw, 4.5rem);
  align-items: center;
  text-align: left;
  min-height: min(680px, 80vh);
}

@media (min-width: 900px) {
  .gst-hero--sunmoon {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  }
}

.gst-hero--sunmoon p {
  margin-left: 0;
}

.gst-eyebrow,
.gst-kicker {
  display: inline-flex;
  margin: 0 0 0.8rem;
  color: var(--gst-accent-orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gst-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.gst-hero-visual {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(217, 179, 106, 0.2));
  border: 1px solid var(--gst-border);
  border-radius: 34px;
  padding: 0.85rem;
  box-shadow: var(--gst-shadow);
}

.gst-hero-visual img {
  width: 100%;
  min-height: 520px;
  max-height: 650px;
  object-fit: cover;
  background: #FFFFFF;
  border-radius: 26px;
}

/* Booking strip — classes .hotel_booking_area / .hotel_booking kept for gwt-booking.js */
.hotel_booking_area {
  position: relative;
  z-index: 5;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 0 0 4.75rem;
}

.hotel_booking {
  background: var(--gst-bg-soft);
  border: 1px solid var(--gst-border);
  border-radius: 28px;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  box-shadow: 0 24px 70px rgba(21, 76, 99, 0.16);
}

.hotel_booking form {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  align-items: end;
}

.hotel_booking form .gst-smart-calendar {
  grid-column: span 12;
}

.gst-book-label {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .gst-book-label {
    grid-column: span 2;
  }
}

.gst-book-label-inner h6 {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gst-ink-muted);
}

.gst-book-label-inner p {
  margin: 0;
  font-weight: 700;
  color: var(--gst-ink);
  font-size: 1.15rem;
}

.gst-field {
  grid-column: span 12;
}

@media (min-width: 768px) {
  .gst-field--sm {
    grid-column: span 2;
  }
  .gst-field--wide {
    grid-column: span 6;
  }
}

.gst-field label {
  display: block;
  font-size: var(--gst-font-small);
  color: #51646b;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.gst-input,
.gst-select {
  width: 100%;
  padding: 0.82rem 0.95rem;
  border-radius: 14px;
  border: 1px solid var(--gst-border);
  background: #fbfaf7;
  color: var(--gst-ink);
  font: inherit;
  min-height: var(--gst-control-height);
}

.gst-input:focus,
.gst-select:focus {
  outline: 2px solid var(--gst-brand);
  outline-offset: 1px;
}

.gst-book-actions {
  grid-column: span 12;
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .gst-book-actions {
    grid-column: span 12;
  }
}

/* Buttons — .btn used by gwt-booking.js */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.86rem 1.55rem;
  min-height: 3rem;
  border-radius: var(--gst-button-radius);
  border: 1px solid var(--gst-brand);
  background: var(--gst-brand);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(21, 76, 99, 0.18);
  transition: background var(--gst-transition), border-color var(--gst-transition), box-shadow var(--gst-transition), transform var(--gst-transition);
}

.btn:hover {
  background: var(--gst-brand-hover);
  border-color: var(--gst-accent-gold);
  color: #FFFFFF !important;
  box-shadow: 0 14px 30px rgba(21, 76, 99, 0.2);
  transform: translateY(-2px);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.62;
  box-shadow: none;
  transform: none;
}

.btn[aria-busy="true"] [data-button-label]::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-right: 0.6rem;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-top-color: #FFFFFF;
  border-radius: 50%;
  vertical-align: -0.15rem;
  animation: gst-spin 700ms linear infinite;
}

@keyframes gst-spin {
  to { transform: rotate(360deg); }
}

.btn-success {
  background: var(--gst-brand);
  border-color: var(--gst-brand);
  color: #FFFFFF !important;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--gst-brand) !important;
  border-color: rgba(21, 76, 99, 0.2);
  box-shadow: none;
}

.btn-ghost:hover {
  background: #FFFFFF;
  color: var(--gst-brand) !important;
  border-color: var(--gst-accent-orange);
}

/* Featured rooms */
.gst-section {
  padding: var(--gst-section-space) 0;
}

.gst-section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.38));
}

.gst-section-title {
  text-align: center;
  margin: 0 0 3rem;
}

.gst-section-title h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.gst-section-title p {
  margin: 0;
  color: var(--gst-ink-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.gst-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 700px) {
  .gst-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gst-grid-auto {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.gst-unit-grid--single,
.gst-unit-count-1 {
  display: flex;
  justify-content: center;
  grid-template-columns: 1fr;
}

.gst-unit-grid--single > .gst-unit-card,
.gst-unit-count-1 > .gst-unit-card {
  width: 100%;
  max-width: 1040px;
}

@media (min-width: 900px) {
  .gst-unit-grid--single > .gst-unit-card,
  .gst-unit-count-1 > .gst-unit-card {
    width: 82%;
  }
}

@media (min-width: 700px) and (max-width: 899px) {
  .gst-unit-grid--single > .gst-unit-card,
  .gst-unit-count-1 > .gst-unit-card {
    width: 94%;
  }
}

.gst-unit-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #1b2430;
}

.gst-card-media.gst-unit-media {
  aspect-ratio: 16 / 9;
}

.gst-unit-carousel,
.gst-unit-slider {
  outline: none;
}

.gst-unit-carousel-track,
.gst-unit-slider-viewport {
  position: relative;
  width: 100%;
  height: 100%;
}

.gst-unit-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.gst-unit-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gst-unit-slide img,
.gst-unit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
}

.gst-unit-carousel-btn,
.gst-unit-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 32, 0.62);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.gst-unit-carousel-btn:hover,
.gst-unit-carousel-btn:focus-visible,
.gst-unit-slider-btn:hover,
.gst-unit-slider-btn:focus-visible {
  background: rgba(15, 23, 32, 0.86);
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.gst-unit-slider-btn--prev { left: 0.75rem; }
.gst-unit-slider-btn--next { right: 0.75rem; }

.gst-unit-carousel-dots,
.gst-unit-slider-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.75rem;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

.gst-unit-carousel-dot,
.gst-unit-slider-dot {
  width: 0.7rem;
  height: 0.7rem;
  min-width: 0.7rem;
  min-height: 0.7rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 0 1px rgba(15, 23, 32, 0.35);
  cursor: pointer;
  padding: 0;
}

.gst-unit-carousel-dot.is-active,
.gst-unit-carousel-dot[aria-current="true"],
.gst-unit-slider-dot.is-active,
.gst-unit-slider-dot[aria-current="true"] {
  background: #fff;
}

.gst-unit-carousel-dot:focus-visible,
.gst-unit-slider-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.gst-card {
  background: var(--gst-bg-soft);
  border: 1px solid var(--gst-border);
  border-radius: var(--gst-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--gst-shadow-soft);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.gst-card:hover {
  box-shadow: var(--gst-shadow);
  transform: translateY(-3px);
}

.gst-card-media {
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  background: #FFFFFF;
}

.gst-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.gst-card-body {
  padding: var(--gst-card-space);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  flex: 1;
}

.gst-card-body h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.2rem, 2vw, 1.35rem);
  font-weight: 700;
}

.gst-card-body p {
  color: var(--gst-ink-muted);
  line-height: 1.65;
}

.gst-card.gst-card-body {
  display: block;
}

.single_room_wrapper .gst-card-body,
.single_room_wrapper .room_details {
  display: block;
}

.single_room_wrapper h5 {
  color: var(--gst-ink);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.single_room_wrapper .room_rent p {
  color: var(--gst-brand);
  font-size: 1.35rem;
  font-weight: 800;
}

.single_room_wrapper .room_rent span {
  color: var(--gst-ink-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.single_room_wrapper .btn {
  margin-top: 1rem;
}

.gst-trust-grid {
  align-items: stretch;
}

@media (min-width: 700px) {
  .gst-trust-grid {
    grid-template-columns: 1.25fr 0.875fr 0.875fr;
  }
}

.gst-trust-grid .gst-card {
  border-color: rgba(217, 179, 106, 0.28);
}

.gst-trust-grid .gst-card:first-child {
  background:
    linear-gradient(135deg, rgba(21, 76, 99, 0.96), rgba(42, 157, 176, 0.92)),
    #154C63;
  color: #FFFFFF;
  box-shadow: 0 26px 70px rgba(21, 76, 99, 0.24);
}

.gst-trust-grid .gst-card:first-child .gst-kicker,
.gst-trust-grid .gst-card:first-child p {
  color: rgba(255, 255, 255, 0.82);
}

.gst-trust-grid .gst-card:first-child h3 {
  color: #FFFFFF;
  font-size: clamp(1.9rem, 4vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.gst-trust-grid .gst-card:first-child .gst-kicker {
  font-size: clamp(1.65rem, 4vw, 3rem);
  letter-spacing: -0.045em;
  text-transform: none;
}

.gst-price {
  margin: 0;
  color: var(--gst-ink-muted);
  font-size: 0.9rem;
}

.gst-price strong {
  color: var(--gst-brand);
  font-size: 1.1rem;
}

.gst-center {
  text-align: center;
  margin-top: 2rem;
}

/* Destination guide */
.gst-guide-hero {
  max-width: 880px;
  padding-bottom: 3.5rem;
}

.gst-guide-hero .gst-eyebrow {
  justify-content: center;
  margin-bottom: 1rem;
}

.gst-guide-hero p + p {
  margin-top: 1rem;
  max-width: 48rem;
}

.gst-guide-section {
  padding-top: 3.5rem;
}

.gst-guide-grid {
  align-items: stretch;
}

.gst-guide-card {
  min-height: 100%;
  border-color: rgba(217, 179, 106, 0.25);
}

.gst-guide-card .gst-card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 100%;
  padding: 1.75rem;
}

.gst-guide-card h3 {
  color: var(--gst-brand);
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

.gst-guide-card p {
  margin: 0 0 1.35rem;
  flex: 1;
}

.gst-guide-card .btn {
  margin-top: auto;
}

.gst-guide-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.9rem;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: rgba(217, 179, 106, 0.18);
  color: #6d5420;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gst-guide-feature,
.gst-guide-callout,
.gst-guide-cta {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--gst-border);
  border-radius: 32px;
  box-shadow: var(--gst-shadow-soft);
}

.gst-guide-feature {
  padding: clamp(2rem, 5vw, 4rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 244, 239, 0.92)),
    #FFFFFF;
}

.gst-guide-feature h2,
.gst-guide-callout h2,
.gst-guide-cta h2 {
  margin: 0 0 1rem;
  color: var(--gst-brand);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.04em;
}

.gst-guide-feature p,
.gst-guide-callout p,
.gst-guide-cta p {
  margin: 0;
  color: var(--gst-ink-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.gst-guide-callout {
  padding: clamp(1.75rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(21, 76, 99, 0.96), rgba(42, 157, 176, 0.9)),
    var(--gst-brand);
  color: #FFFFFF;
  box-shadow: 0 24px 60px rgba(21, 76, 99, 0.2);
}

.gst-guide-callout .gst-guide-label {
  background: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}

.gst-guide-callout h2,
.gst-guide-callout p {
  color: #FFFFFF;
}

.gst-guide-callout p {
  opacity: 0.86;
}

.gst-guide-cta {
  text-align: center;
  padding: clamp(2.25rem, 5vw, 4.25rem);
  background:
    radial-gradient(circle at top left, rgba(217, 179, 106, 0.2), transparent 18rem),
    #FFFFFF;
}

.gst-guide-cta .gst-hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

/* Reviews and trust page */
.gst-reviews-hero {
  max-width: 940px;
  padding-bottom: 3.5rem;
}

.gst-reviews-hero .gst-eyebrow {
  justify-content: center;
  margin-bottom: 1rem;
}

.gst-grid--4 {
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .gst-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .gst-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gst-review-summary .gst-card {
  border-color: rgba(42, 157, 176, 0.18);
}

.gst-review-summary .gst-card-body {
  display: block;
  padding: 1.7rem;
}

.gst-review-summary h3 {
  color: var(--gst-brand);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.gst-review-carousel {
  position: relative;
}

.gst-review-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.5rem 0.1rem 1.4rem;
}

.gst-review-track::-webkit-scrollbar {
  display: none;
}

.gst-review-card {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  background: #FFFFFF;
  border: 1px solid var(--gst-border);
  border-radius: 28px;
  box-shadow: var(--gst-shadow-soft);
  padding: 1.7rem;
}

@media (min-width: 640px) {
  .gst-review-card {
    flex-basis: calc((100% - 1.5rem) / 2);
  }
}

@media (min-width: 980px) {
  .gst-review-card {
    flex-basis: calc((100% - 3rem) / 3);
  }
}

.gst-review-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.gst-review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 3.2rem;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gst-brand), var(--gst-brand-hover));
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1.25rem;
}

.gst-review-head h3 {
  margin: 0;
  color: var(--gst-brand);
  font-size: 1.1rem;
}

.gst-review-head p,
.gst-review-card p {
  margin: 0;
  color: var(--gst-ink-muted);
  line-height: 1.7;
}

.gst-review-card > p {
  margin-bottom: 1.25rem;
  flex: 1;
}

.gst-review-card blockquote {
  flex: 1;
  margin: 0 0 1.25rem;
  padding: 0;
}

.gst-review-card blockquote p {
  margin: 0;
}

.gst-review-source {
  padding-top: 1rem;
  border-top: 1px solid var(--gst-border);
  color: var(--gst-ink-muted);
  font-size: var(--gst-font-small);
  line-height: 1.5;
}

.gst-review-card strong {
  color: var(--gst-ink);
}

.gst-review-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--gst-border);
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--gst-brand);
  box-shadow: var(--gst-shadow-soft);
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.gst-review-arrow:hover {
  background: var(--gst-brand);
  color: #FFFFFF;
}

.gst-review-arrow--prev {
  left: -1rem;
}

.gst-review-arrow--next {
  right: -1rem;
}

@media (max-width: 700px) {
  .gst-review-arrow {
    position: static;
    transform: none;
    margin: 0.25rem;
  }

  .gst-review-carousel {
    text-align: center;
  }
}

.gst-review-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.gst-review-dots button {
  width: 0.65rem;
  height: 0.65rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(21, 76, 99, 0.25);
  cursor: pointer;
}

.gst-review-dots button.is-active {
  width: 1.6rem;
  border-radius: 999px;
  background: var(--gst-brand-hover);
}

.gst-section-title--readable {
  width: min(100%, 50rem);
  margin-inline: auto;
}

.gst-section-title--readable .gst-eyebrow {
  margin-bottom: 0.75rem;
}

.gst-review-value-grid {
  align-items: stretch;
}

.gst-review-value-grid .gst-card {
  border-color: rgba(217, 179, 106, 0.32);
}

.gst-review-value-grid h3 {
  color: var(--gst-brand);
}

.gst-review-value-grid p {
  margin-bottom: 0;
}

.gst-review-decision {
  width: min(100%, 920px);
  margin-inline: auto;
  padding: clamp(1.5rem, 5vw, 3.25rem);
  border: 1px solid var(--gst-border);
  border-radius: var(--gst-radius);
  background:
    radial-gradient(circle at top right, rgba(217, 179, 106, 0.17), transparent 20rem),
    #FFFFFF;
  box-shadow: var(--gst-shadow-soft);
}

.gst-review-decision h2 {
  margin: 0 0 1rem;
}

.gst-review-decision > p:last-of-type {
  max-width: 48rem;
  color: var(--gst-ink-muted);
}

.gst-context-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.gst-context-links a {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gst-border);
  border-radius: 12px;
  background: var(--gst-bg);
  color: var(--gst-brand);
  font-weight: 700;
}

.gst-context-links a:hover {
  border-color: var(--gst-border-strong);
  background: #FFFFFF;
}

@media (max-width: 640px) {
  .gst-context-links {
    grid-template-columns: 1fr;
  }
}

/* About */
.gst-split {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 800px) {
  .gst-split {
    grid-template-columns: 1fr 1fr;
  }
}

.gst-split h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  letter-spacing: -0.035em;
}

.gst-split p {
  margin: 0 0 1.25rem;
  color: var(--gst-ink-muted);
  line-height: 1.75;
}

/* Footer strip */
.gst-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--gst-border);
  background: var(--gst-bg-soft);
}

.gst-footer-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .gst-footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gst-footer h3 {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gst-ink-muted);
}

.gst-footer p,
.gst-footer a {
  margin: 0;
  font-size: 0.95rem;
  color: var(--gst-ink);
}

.gst-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gst-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--gst-border);
  background: var(--gst-bg);
  font-size: 1rem;
}

.gst-note {
  font-size: var(--gst-font-small);
  color: var(--gst-ink-muted);
  text-align: center;
  padding: 1rem 0;
  line-height: 1.6;
}

/* Reserva / booking steps */
.gst-booking-wrap {
  padding: 2rem 0 3rem;
}

.booking {
  width: min(100%, 960px);
  margin-inline: auto;
}

.gst-tablist {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.gst-tablist a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--gst-border);
  background: var(--gst-bg-soft);
  color: var(--gst-ink-muted);
  font-size: 0.85rem;
  font-weight: 600;
  pointer-events: none;
}

.gst-tablist a i {
  font-style: normal;
  font-weight: 800;
  color: var(--gst-brand);
}

.gst-tablist a[aria-current="step"] {
  border-color: var(--gst-brand);
  color: var(--gst-brand);
}

.tab-pane {
  display: none;
  padding: 1.25rem 0;
}

.tab-pane.active {
  display: block;
}

.gst-booking-panel {
  background: var(--gst-bg-soft);
  border: 1px solid var(--gst-border);
  border-radius: var(--gst-radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

#personal_info .hotel_booking_area {
  margin-top: 0;
  padding: 0;
}

#personal_info .hotel_booking {
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.hotel_booking form.booking-guest-form {
  display: block;
  width: 100%;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem 1.25rem;
}

.booking-form-field {
  min-width: 0;
}

.booking-form-field label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gst-ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.booking-form-field .form-control {
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
}

.booking-form-field textarea.form-control {
  min-height: 8rem;
  resize: vertical;
}

@media (min-width: 640px) {
  .booking-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-form-field--full {
    grid-column: 1 / -1;
  }
}

.gst-row-2 {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .gst-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.booking_next_btn {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gst-border);
}

.booking-form-actions {
  align-items: center;
  justify-content: space-between;
}

.booking-form-actions .floatright {
  margin-left: 0;
}

@media (max-width: 639px) {
  .booking-form-actions > .btn {
    width: 100%;
  }
}

.floatright {
  margin-left: auto;
}

.right_pay_now {
  margin-top: 1rem;
  text-align: right;
}

.form-control {
  width: 100%;
  min-height: var(--gst-control-height);
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--gst-border);
  background: #FFFFFF;
  color: var(--gst-ink);
  font: inherit;
}

.form-control:focus {
  border-color: var(--gst-brand-hover);
  box-shadow: var(--gst-focus);
  outline: none;
}

.form-control:disabled {
  cursor: not-allowed;
  background: #ecece8;
  color: var(--gst-ink-muted);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.table-bordered td,
.table-bordered th {
  border: 1px solid var(--gst-border);
  padding: 0.6rem;
}

.booking_done_confirmation a {
  color: var(--gst-brand);
  font-weight: 700;
}

/* Standalone footer strip */
.gst-gwt-strip {
  text-align: center;
  padding: 1.35rem 1rem 1.6rem;
  background: #0b0c10;
  color: #c5c6c7;
  border-top: 2px solid var(--gst-brand);
  font-size: 0.95rem;
  margin-top: 2rem;
}

.gst-gwt-strip p {
  margin: 0 0 0.65rem;
}

.gst-gwt-strip a {
  display: inline-block;
  margin: 0.35rem 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.gst-gwt-strip .gst-gwt-btn--primary {
  background: var(--gst-brand);
  color: #FFFFFF;
}

.gst-gwt-strip .gst-gwt-btn--outline {
  border: 2px solid var(--gst-brand);
  color: var(--gst-brand);
  background: transparent;
}

/* Admin panel cards (Bootstrap-compatible dark panels) */
.gst-admin-panel {
  background: var(--gst-bg-soft);
  border: 1px solid var(--gst-border);
  border-radius: var(--gst-radius);
  padding: 1.25rem;
}

.gst-admin-panel h2 {
  font-size: 1.1rem;
  margin: 0 0 1rem;
  font-weight: 700;
}

.gst-admin .table {
  color: var(--gst-ink);
  font-size: 0.875rem;
}

.gst-admin .table-dark {
  --bs-table-bg: var(--gst-bg-soft);
  --bs-table-striped-bg: rgba(0, 0, 0, 0.15);
  --bs-table-border-color: var(--gst-border);
}

.gst-payment-methods {
  margin: 1.5rem 0;
  padding-top: 1rem;
  border-top: 1px solid var(--gst-border);
}

.gst-payment-method {
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-content: space-between;
  padding: .75rem;
  margin: .5rem 0;
  border: 1px solid var(--gst-border);
  border-radius: var(--gst-radius);
  background: #FFFFFF;
}

.gst-payment-method p {
  flex: 1;
  margin: 0;
}

.gst-payment-unavailable {
  color: #7a5a00;
  font-weight: 700;
}

/* Shared public content system */
h1,
h2,
h3 {
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

h3 {
  line-height: 1.25;
}

p,
li {
  text-wrap: pretty;
}

.gst-muted,
.gst-lead {
  color: var(--gst-ink-muted);
}

.gst-lead {
  font-size: var(--gst-font-lead);
}

.gst-readable {
  max-width: 42rem;
}

.gst-content-offset {
  margin-top: 2rem;
}

.gst-form-subgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.gst-form-stack {
  display: grid;
  gap: 1rem;
}

.gst-form-panel {
  width: min(100%, 44rem);
  margin-inline: auto;
  padding: clamp(1.25rem, 4vw, 2.25rem);
  box-shadow: var(--gst-shadow-soft);
}

.gst-form-panel > h2 {
  margin-top: 0;
}

.gst-form-panel label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: var(--gst-font-small);
  font-weight: 700;
}

.gst-hero-actions--center {
  justify-content: center;
  margin-bottom: 0;
}

.gst-footer-links {
  display: grid;
  gap: 0.4rem;
}

.gst-footer-whatsapp {
  color: var(--gst-brand) !important;
  font-weight: 750;
}

.gst-footer-note {
  margin: 2rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gst-border);
  color: var(--gst-ink-muted);
  font-size: var(--gst-font-small);
  text-align: center;
}

.gst-footer-admin-separator {
  margin-inline: 0.35rem;
}

.gst-footer-admin-link {
  color: var(--gst-ink-muted);
  font-size: 0.875rem;
  font-weight: 600;
}

.gst-footer-admin-link:hover {
  color: var(--gst-brand);
}

.gst-feature-intro {
  margin-bottom: 2rem;
}

.gst-highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gst-highlight-card {
  position: relative;
  padding: var(--gst-card-space);
  border: 1px solid var(--gst-border);
  border-radius: var(--gst-radius);
  background: rgba(255, 255, 255, 0.84);
}

.gst-highlight-card h3,
.gst-highlight-card p {
  margin: 0;
}

.gst-highlight-card h3 {
  padding-left: 1.2rem;
  font-size: 1.1rem;
}

.gst-highlight-card p {
  margin-top: 0.55rem;
  color: var(--gst-ink-muted);
}

.gst-highlight-mark {
  position: absolute;
  top: 1.72rem;
  left: 1.3rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gst-accent-orange);
}

.gst-disclosure,
.gst-faq-item {
  border: 1px solid var(--gst-border);
  border-radius: var(--gst-radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--gst-shadow-soft);
}

.gst-disclosure > summary,
.gst-faq-item > summary {
  position: relative;
  padding: 1.1rem 3.25rem 1.1rem 1.25rem;
  color: var(--gst-brand);
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

.gst-disclosure > summary::-webkit-details-marker,
.gst-faq-item > summary::-webkit-details-marker {
  display: none;
}

.gst-disclosure > summary::after,
.gst-faq-item > summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 500;
}

.gst-disclosure[open] > summary::after,
.gst-faq-item[open] > summary::after {
  content: "−";
}

.gst-disclosure-content {
  padding: 0 1.25rem 1.25rem;
}

.gst-amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.gst-amenity-card {
  padding: var(--gst-card-space);
  border: 1px solid var(--gst-border);
  border-radius: var(--gst-radius);
  background: var(--gst-bg-soft);
}

.gst-amenity-card--featured {
  border-color: rgba(217, 179, 106, 0.55);
  background: #fffbf2;
}

.gst-amenity-card h3 {
  margin: 0 0 0.8rem;
  color: var(--gst-brand);
  font-size: 1.15rem;
}

.gst-amenity-card p {
  margin: 0 0 0.8rem;
  color: var(--gst-ink-muted);
  font-size: var(--gst-font-small);
}

.gst-amenity-card ul,
.gst-rule-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.gst-amenity-card li,
.gst-rule-card li {
  margin: 0.38rem 0;
}

.gst-rules-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.gst-rule-card {
  padding: var(--gst-card-space);
  border: 1px solid var(--gst-border);
  border-radius: var(--gst-radius);
  background: #FFFFFF;
  box-shadow: var(--gst-shadow-soft);
}

.gst-rule-card h3 {
  margin: 0 0 0.8rem;
  color: var(--gst-brand);
  font-size: 1.15rem;
}

.gst-rules-grid--compact .gst-rule-card {
  box-shadow: none;
  background: var(--gst-bg);
}

.gst-faq-list {
  display: grid;
  gap: 0.9rem;
  width: min(100%, 850px);
  margin-inline: auto;
}

.gst-faq-answer {
  padding: 0 1.25rem 1.25rem;
  color: var(--gst-ink-muted);
}

.gst-faq-answer p {
  margin: 0;
}

.gst-alert {
  display: block;
  min-height: 1.5rem;
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: var(--gst-font-small);
  line-height: 1.55;
}

.gst-alert:empty {
  display: none;
}

.gst-alert--success {
  color: var(--gst-success);
  background: var(--gst-success-bg);
  border: 1px solid rgba(35, 107, 75, 0.2);
}

.gst-alert--error {
  color: var(--gst-error);
  background: var(--gst-error-bg);
  border: 1px solid rgba(156, 47, 47, 0.2);
}

.gst-alert--progress {
  color: var(--gst-warning);
  background: var(--gst-warning-bg);
  border: 1px solid rgba(118, 90, 18, 0.18);
}

.gst-alert--warning,
.gst-payment-warning {
  color: var(--gst-warning);
  background: var(--gst-warning-bg);
  border: 1px solid rgba(118, 90, 18, 0.28);
}

.gst-payment-warning {
  margin: 0.85rem 0 1rem;
}

.gst-payment-warning p {
  margin: 0 0 0.45rem;
}

.gst-payment-warning p:last-child {
  margin-bottom: 0;
}

.gst-booking-heading {
  margin-bottom: 2rem;
}

.gst-booking-heading h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(2.2rem, 5vw, 3.25rem);
}

.gst-review-summary-panel,
.gst-booking-rules {
  margin: 1.25rem 0;
  padding: var(--gst-card-space);
  border: 1px solid var(--gst-border);
  border-radius: var(--gst-radius);
  background: var(--gst-bg);
}

.gst-booking-rules > h3 {
  margin-top: 0;
}

.gst-checkout-retry {
  margin-top: 1rem;
}

.gst-breadcrumbs {
  padding-top: 1rem;
}

.gst-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  color: var(--gst-ink-muted);
  font-size: var(--gst-font-small);
  list-style: none;
}

.gst-breadcrumbs li:not(:last-child)::after {
  margin-left: 0.45rem;
  content: "/";
}

.gst-breadcrumbs a {
  color: inherit;
}

.gst-section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid var(--gst-border);
  border-bottom: 1px solid var(--gst-border);
}

.gst-section-nav a {
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--gst-border);
  border-radius: var(--gst-button-radius);
  color: var(--gst-ink);
  text-decoration: none;
}

.gst-section-nav a:hover {
  border-color: var(--gst-brand);
  color: var(--gst-brand);
}

.gst-section-soft {
  background: var(--gst-bg-soft);
}

.gst-property-figure {
  margin: 0;
}

.gst-property-figure img {
  width: 100%;
  height: auto;
  border-radius: var(--gst-radius);
}

.gst-property-figure figcaption {
  margin-top: 0.55rem;
  color: var(--gst-ink-muted);
  font-size: var(--gst-font-small);
}

.gst-text-link {
  display: inline-block;
  min-height: 44px;
  padding: 0.65rem 0;
  font-weight: 700;
}

.gst-form-privacy {
  margin: 0;
  color: var(--gst-ink-muted);
  font-size: var(--gst-font-small);
}

#descripcion,
#amenidades,
#habitaciones,
#reglas,
#accesibilidad,
#resenas,
#ubicacion,
#disponibilidad,
#booking-search {
  scroll-margin-top: 7rem;
}

.gst-smart-calendar {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0.75rem 0 0.25rem;
  padding: 0.85rem 1rem 1rem;
  border: 1px solid rgba(28, 45, 58, 0.12);
  border-radius: 0.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 248, 250, 0.95));
}

.gst-calendar-status {
  margin: 0 0 0.75rem;
  color: var(--gst-ink-muted);
  font-size: var(--gst-font-small);
}

.gst-calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.gst-calendar-month {
  margin: 0;
  font-weight: 700;
  text-transform: capitalize;
}

.gst-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.35rem;
}

.gst-cal-dow {
  display: grid;
  place-items: center;
  min-height: 2rem;
  color: var(--gst-ink-muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.gst-cal-cell {
  min-height: 44px;
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 0.55rem;
  background: #eef6f2;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.gst-cal-cell:focus-visible {
  outline: 2px solid #1f6f5b;
  outline-offset: 2px;
}

.gst-cal-cell--empty {
  visibility: hidden;
  pointer-events: none;
}

.gst-cal-cell--unavailable,
.gst-cal-cell[disabled] {
  background: #eceff1;
  color: #8a9399;
  text-decoration: line-through;
  cursor: not-allowed;
  opacity: 0.85;
}

.gst-cal-cell--available:hover {
  background: #d7eee4;
}

.gst-cal-cell--selected {
  background: #1f6f5b;
  color: #fff;
}

.gst-calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--gst-ink-muted);
  font-size: var(--gst-font-small);
}

.gst-calendar-legend li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.gst-cal-swatch {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 0.25rem;
  border: 1px solid rgba(28, 45, 58, 0.18);
}

.gst-cal-swatch--available { background: #eef6f2; }
.gst-cal-swatch--unavailable { background: #eceff1; }
.gst-cal-swatch--selected { background: #1f6f5b; }

.gst-availability-state {
  max-width: 40rem;
}

.gst-availability-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.gst-booking-recovery {
  margin-top: 1.25rem;
}

@media (max-width: 760px) {
  .gst-rules-grid {
    grid-template-columns: 1fr;
  }

  .gst-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .gst-hero--sunmoon {
    min-height: 0;
  }

  .gst-hero-visual img {
    min-height: 300px;
  }

  .right_pay_now .btn,
  .gst-hero-actions .btn {
    width: 100%;
  }

  .gst-payment-method {
    align-items: stretch;
    flex-direction: column;
  }

  .gst-section-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
