html {
  scroll-padding-top: 5rem;
}

:root {
  --hotela-blue: #003580;
  --hotela-action: #0071c2;
  --hotela-yellow: #febb02;
  --hotela-text: #262626;
  --hotela-muted: #6b6b6b;
  --hotela-page-bg: #f5f5f5;
  --hotela-card-radius: 8px;
}

body {
  font-family: BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--hotela-text);
  background-color: var(--hotela-page-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  background-color: var(--hotela-blue);
}

.site-header .navbar-brand:hover {
  color: #fff !important;
  opacity: 0.92;
}

.site-header .btn-light {
  color: var(--hotela-action) !important;
  border: none;
}

.site-header .btn-light:hover {
  background-color: #f0f3ff !important;
}

.hero {
  background-color: var(--hotela-blue);
}

.hero-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.hero-sub {
  font-size: 1.05rem;
  opacity: 0.95;
}

.search-panel {
  border: 3px solid var(--hotela-yellow);
  border-radius: var(--hotela-card-radius);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  user-select: none;
}

.search-panel-inner {
  background: #fff;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  min-height: 3.25rem;
  border-bottom: 1px solid #e7e7e7;
  cursor: default;
}

.search-field-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}

.search-field-body {
  flex: 1;
  min-width: 0;
}

.search-placeholder {
  color: var(--hotela-text);
  font-size: 0.9rem;
}

.search-btn-wrap {
  min-height: 3.25rem;
}

.search-btn {
  background-color: var(--hotela-action);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
  min-height: 100%;
  letter-spacing: 0.02em;
}

@media (min-width: 992px) {
  .search-field {
    border-bottom: none;
    border-right: 1px solid #e7e7e7;
    min-height: 4rem;
  }

  .search-btn-wrap {
    min-width: 8.5rem;
    min-height: 4rem;
  }

  .search-btn {
    padding: 0 1.25rem;
    font-size: 1.05rem;
  }
}

.hero-check-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.fake-checkbox {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 2px;
  flex-shrink: 0;
  background: transparent;
}

.page-main {
  flex: 1;
}

.section-muted {
  background-color: var(--hotela-page-bg);
}

.section-title {
  color: var(--hotela-text);
}

.section-lead {
  max-width: 48rem;
  line-height: 1.55;
}

.why-card {
  text-align: left;
}

.why-card-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.why-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hotela-text);
  margin-bottom: 0.35rem;
}

.why-card-text {
  font-size: 0.85rem;
  color: var(--hotela-muted);
  line-height: 1.45;
}

.property-card {
  border-radius: var(--hotela-card-radius);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.property-card:hover {
  box-shadow: 0 8px 24px rgba(0, 53, 128, 0.12) !important;
  transform: translateY(-2px);
}

.property-img-wrap {
  position: relative;
  border-radius: var(--hotela-card-radius) var(--hotela-card-radius) 0 0;
  overflow: hidden;
}

.property-img {
  height: 180px;
  object-fit: cover;
  width: 100%;
}

@media (min-width: 992px) {
  .property-img {
    height: 200px;
  }
}

.wishlist-btn {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: var(--hotela-action);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.deal-chip {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: #c00;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  padding: 0.15rem 0.35rem;
  background-color: var(--hotela-blue);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 4px 4px 4px 0;
}

.property-meta-deco {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  line-height: 1.2;
}

.property-type-label {
  color: var(--hotela-text);
  font-weight: 600;
}

.property-stars {
  color: #ffb700;
  font-size: 0.62rem;
  letter-spacing: -0.12em;
  white-space: nowrap;
}

.property-stars .bi {
  margin-right: 0.02rem;
}

.partner-pick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  background: #febb02;
  border-radius: 2px;
  color: #fff;
  font-size: 0.55rem;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.genius-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  background-color: var(--hotela-blue);
  padding: 0.12rem 0.4rem 0.12rem 0.35rem;
  border-radius: 4px;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.genius-badge-pill .bi {
  font-size: 0.6rem;
  opacity: 0.95;
}

.property-price {
  font-size: 0.9rem;
  color: var(--hotela-text);
}

.promo-banner {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  height: 160px;
  max-height: 160px;
}

.letter-spacing-sm {
  letter-spacing: 0.08em;
}

.promo-banner-title {
  color: var(--hotela-text);
  line-height: 1.35;
}

.promo-banner-lead {
  font-size: 0.875rem;
}

.promo-banner-desc {
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.promo-banner-visual {
  flex: 0 0 160px;
  width: 160px;
  max-width: 160px;
  max-height: 160px;
  align-self: stretch;
  overflow: hidden;
}

.promo-banner-img {
  display: block;
  width: 160px;
  height: 160px;
  max-width: 160px;
  max-height: 160px;
  object-fit: cover;
}

.btn-promo {
  background-color: var(--hotela-action) !important;
  border-color: var(--hotela-action) !important;
  font-weight: 600;
  border-radius: 4px;
}

.genius-banner {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.genius-visual {
  background: linear-gradient(180deg, #f8fafc 0%, #eef4fb 100%);
}

.genius-img {
  max-height: 140px;
  object-fit: contain;
}

.featured-stays-wrap {
  padding-right: 0;
}

@media (min-width: 992px) {
  .featured-stays-section .container {
    padding-right: 3.25rem;
  }

  .featured-stays-scroll-hint {
    position: absolute;
    right: 0.25rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
  }

  .featured-stays-scroll-hint-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: #fff;
    color: var(--hotela-text);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    border: 1px solid #e7e7e7;
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  .featured-stays-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    -webkit-overflow-scrolling: touch;
  }

  .featured-stays-row > [class*="col-"] {
    flex: 0 0 88%;
    max-width: 88%;
    scroll-snap-align: start;
  }
}

.site-footer {
  background-color: var(--hotela-blue);
}

.footer-top-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-top-links a:hover {
  text-decoration: underline;
  color: #fff;
}

.footer-col-title {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.95);
}

.footer-link-list a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  display: inline-block;
  padding: 0.2rem 0;
}

.footer-link-list a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.15);
}

.link-primary {
  color: var(--hotela-action) !important;
}

.btn-primary {
  background-color: var(--hotela-action);
  border-color: var(--hotela-action);
}

.text-primary {
  color: var(--hotela-action) !important;
}

/* —— 住宿详情页 —— */
.property-detail-page {
  background-color: #fff;
}

.property-detail-topbar {
  background-color: #fff;
  border-bottom: 1px solid #e7e7e7;
}

.property-detail-topbar .btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: #fff;
  color: var(--hotela-text);
}

.property-detail-topbar .btn-icon:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
  color: var(--hotela-text);
}

.property-detail-topbar .btn-icon.is-saved {
  color: var(--hotela-action);
  border-color: rgba(0, 113, 194, 0.45);
  background: rgba(0, 113, 194, 0.08);
}

.property-detail-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
  border-radius: calc(var(--hotela-card-radius) + 2px);
  overflow: hidden;
  background: #0d0d0d;
}

@media (min-width: 768px) {
  .property-detail-gallery {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: 1fr 1fr;
    gap: 0.45rem;
    max-height: clamp(320px, 52vw, 440px);
  }

  .property-detail-gallery .gallery-hero {
    grid-row: 1 / -1;
    grid-column: 1;
  }

  .property-detail-gallery .gallery-cell {
    min-height: 0;
  }
}

.property-detail-gallery .gallery-hero img,
.property-detail-gallery .gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.001);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .property-detail-gallery .gallery-hero img,
  .property-detail-gallery .gallery-cell img {
    transition: none;
  }
}

.property-detail-gallery .gallery-preview-btn:hover img,
.property-detail-gallery .gallery-preview-btn:focus-visible img {
  transform: scale(1.045);
  filter: brightness(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .property-detail-gallery .gallery-preview-btn:hover img,
  .property-detail-gallery .gallery-preview-btn:focus-visible img {
    transform: scale(1.001);
    filter: none;
  }
}

.property-detail-gallery .gallery-hero {
  min-height: 220px;
  aspect-ratio: 4 / 3;
}

@media (min-width: 768px) {
  .property-detail-gallery .gallery-hero {
    min-height: 0;
    aspect-ratio: auto;
  }
}

.property-detail-gallery .gallery-cell {
  position: relative;
  min-height: 120px;
}

.property-detail-gallery .gallery-preview-btn {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: #1a1a1a;
  cursor: zoom-in;
  border-radius: 0;
  overflow: hidden;
}

.property-detail-gallery .gallery-preview-btn:focus-visible {
  outline: 2px solid var(--hotela-action);
  outline-offset: 2px;
}

.property-detail-gallery .gallery-hero .gallery-preview-btn {
  min-height: 220px;
}

@media (min-width: 768px) {
  .property-detail-gallery .gallery-hero .gallery-preview-btn {
    min-height: 0;
    height: 100%;
  }

  .property-detail-gallery .gallery-cell .gallery-preview-btn {
    min-height: 0;
  }
}

.property-detail-gallery .gallery-cell .gallery-preview-btn {
  min-height: 120px;
}

/* Fullscreen image lightbox */
.gallery-lightbox-modal .modal-content {
  background: #050505;
}

.gallery-lightbox {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh;
}

.gallery-lightbox-close-wrap {
  position: fixed;
  top: calc(1rem + env(safe-area-inset-top, 0px));
  right: calc(1rem + env(safe-area-inset-right, 0px));
  z-index: 1090;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox-close-wrap:hover {
  background: rgba(255, 255, 255, 0.14);
}

.gallery-lightbox-close {
  position: static;
  flex-shrink: 0;
  margin: 0;
  opacity: 0.92;
}

.gallery-lightbox-close-wrap:hover .gallery-lightbox-close {
  opacity: 1;
}

.gallery-lightbox-body {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 100dvh;
  min-height: 100vh;
}

.gallery-lightbox-carousel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.gallery-lightbox-inner {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 0;
}

.gallery-lightbox-inner .carousel-item {
  min-height: calc(100dvh - 5rem);
  min-height: calc(100vh - 5rem);
  padding: 0 0.75rem;
}

.gallery-lightbox-inner .carousel-item .gallery-lightbox-frame {
  min-height: calc(100dvh - 5rem);
  min-height: calc(100vh - 5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: min(96vw, 1320px);
  margin-inline: auto;
}

.gallery-modal-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100dvh - 5.5rem);
  max-height: calc(100vh - 5.5rem);
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.gallery-lightbox-indicators {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1rem 1.25rem calc(1.35rem + env(safe-area-inset-bottom, 0px));
  gap: 0.45rem;
  justify-content: center;
  z-index: 1085;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  pointer-events: none;
}

.gallery-lightbox-indicators [type="button"] {
  pointer-events: auto;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
  opacity: 1;
  text-indent: -9999px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.gallery-lightbox-indicators [type="button"].active {
  background: #fff;
  transform: scale(1.2);
}

.gallery-lightbox-indicators [type="button"]:hover {
  background: rgba(255, 255, 255, 0.55);
}

.gallery-lightbox-control {
  width: 2.75rem;
  height: 2.75rem;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  opacity: 0.72;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: opacity 0.2s ease, background 0.2s ease;
}

.gallery-lightbox-control:hover {
  opacity: 0.95;
  background: rgba(255, 255, 255, 0.16);
}

.gallery-lightbox-control .carousel-control-prev-icon,
.gallery-lightbox-control .carousel-control-next-icon {
  width: 1.15rem;
  height: 1.15rem;
}

.gallery-lightbox-carousel .carousel-control-prev {
  left: max(0.75rem, env(safe-area-inset-left, 0px));
}

.gallery-lightbox-carousel .carousel-control-next {
  right: max(0.75rem, env(safe-area-inset-right, 0px));
}

@media (max-width: 575.98px) {
  .gallery-lightbox-control {
    width: 2.35rem;
    height: 2.35rem;
    opacity: 0.55;
  }

  .gallery-lightbox-inner .carousel-item {
    padding: 0 0.35rem;
  }
}

.property-detail-tabs {
  border-bottom: 1px solid #e7e7e7;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.property-detail-tabs .nav-link {
  color: var(--hotela-muted);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  padding: 0.85rem 1rem;
}

.property-detail-tabs .nav-link:hover {
  color: var(--hotela-text);
}

.property-detail-tabs .nav-link.active {
  color: var(--hotela-action);
  border-bottom-color: var(--hotela-action);
  background: transparent;
}

.property-detail-title {
  font-family: Georgia, "Times New Roman", "Noto Serif SC", "Songti SC", serif;
  font-weight: 700;
  color: var(--hotela-text);
  letter-spacing: -0.02em;
}

.property-detail-rating-green {
  --detail-rating-green: #2d7c58;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--detail-rating-green);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.35rem 0.65rem;
  border-radius: 6px 6px 6px 0;
}

.property-detail-highlight-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hotela-text);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.property-amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
}

.property-amenity-item .bi {
  font-size: 1.15rem;
  color: var(--hotela-text);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.property-detail-sidebar-card {
  border: 1px solid #e7e7e7;
  border-radius: var(--hotela-card-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.property-detail-map {
  height: 200px;
  border: 0;
  width: 100%;
  display: block;
}

img.property-detail-map-static {
  object-fit: cover;
  vertical-align: middle;
}

.property-nearby-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.property-nearby-item .bi {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--hotela-action);
}

.property-detail-tab-panels {
  position: relative;
}

.property-detail-tab-panels > .tab-pane {
  transition: opacity 0.15s ease-out;
}

.property-detail-section-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hotela-text);
  margin-bottom: 0.75rem;
}

.property-detail-soft-card {
  border: 1px solid #e7e7e7;
  border-radius: var(--hotela-card-radius);
  background: #fff;
  padding: 1rem 1.15rem;
  height: 100%;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.property-detail-soft-card .property-detail-soft-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #f4f6f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hotela-action);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.property-detail-room-card {
  border: 1px solid #e7e7e7;
  border-radius: var(--hotela-card-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.property-detail-room-card .property-detail-room-img {
  height: 140px;
  object-fit: cover;
  width: 100%;
}

.property-detail-room-card .property-detail-room-body {
  padding: 1rem 1.15rem;
}

.property-detail-room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.85rem;
  color: var(--hotela-muted);
}

.property-detail-room-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.property-detail-room-meta .bi {
  color: var(--hotela-text);
  opacity: 0.75;
}

.property-detail-policy-list {
  padding: 1.5rem 1.5rem 1.65rem;
}

.property-detail-policy-row {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  padding: 1.35rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}

.property-detail-policy-row:first-child {
  padding-top: 0;
}

.property-detail-policy-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.property-detail-policy-row .policy-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: #eef4ff;
  color: var(--hotela-action);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
  margin-top: 0.1rem;
}

.property-detail-policy-text {
  min-width: 0;
  flex: 1;
}

.property-detail-policy-text .policy-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--hotela-text);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.property-detail-policy-text .policy-desc {
  font-size: 0.875rem;
  color: var(--hotela-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.property-detail-access-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #f0f4f8;
  color: var(--hotela-text);
}

.property-detail-access-badge.available {
  background: #e8f5ee;
  color: #1e5c3a;
}

.property-detail-access-badge.limited {
  background: #fff8e6;
  color: #8a6d1a;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.link-arrow .bi {
  font-size: 1rem;
}

.auth-page .page-main {
  display: none;
}

.auth-shell {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.auth-card {
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.auth-page .btn-primary {
  background-color: var(--hotela-action);
  border-color: var(--hotela-action);
}

.auth-page .btn-primary:hover {
  background-color: #005fa3;
  border-color: #005fa3;
}

/* —— 静态内容页（帮助中心、条款等） —— */
.static-page-hero {
  background-color: var(--hotela-blue);
  color: #fff;
  padding: 1.75rem 0 2rem;
}

.static-page-hero .static-page-title {
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.static-page-hero .static-page-lead {
  font-size: 0.95rem;
  opacity: 0.92;
  margin-bottom: 0;
  max-width: 40rem;
}

.static-page-hero .breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
}

.static-page-hero .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.static-page-hero .breadcrumb-item a:hover {
  text-decoration: underline;
  color: #fff;
}

.static-page-hero .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.95);
}

.content-prose {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--hotela-text);
}

.content-prose > h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.65rem;
  color: var(--hotela-text);
}

.content-prose > h2:first-child {
  margin-top: 0;
}

.content-prose > h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 1.35rem;
  margin-bottom: 0.5rem;
}

.content-prose p {
  margin-bottom: 0.85rem;
  color: var(--hotela-muted);
}

.content-prose p:last-child {
  margin-bottom: 0;
}

.content-prose ul,
.content-prose ol {
  margin-bottom: 0.85rem;
  padding-left: 1.25rem;
  color: var(--hotela-muted);
}

.content-prose li {
  margin-bottom: 0.35rem;
}

.content-prose .note-card {
  border-left: 4px solid var(--hotela-action);
  background: #f4f8fc;
  padding: 1rem 1.15rem;
  border-radius: 0 var(--hotela-card-radius) var(--hotela-card-radius) 0;
  margin: 1.25rem 0;
  font-size: 0.9rem;
}

.content-prose .note-card p {
  margin-bottom: 0;
  color: var(--hotela-text);
}

.discover-subnav .nav-link {
  color: var(--hotela-muted);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
}

.discover-subnav .nav-link:hover {
  color: var(--hotela-text);
  background: #eef4fb;
}

.discover-subnav .nav-link.active {
  color: #fff;
  background: var(--hotela-action);
}

.static-info-card {
  border: 1px solid #e7e7e7;
  border-radius: var(--hotela-card-radius);
  background: #fff;
  padding: 1.25rem 1.35rem;
  height: 100%;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.static-info-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.static-info-card p {
  font-size: 0.875rem;
  color: var(--hotela-muted);
  margin-bottom: 0;
  line-height: 1.55;
}
