/* ─── Reset & base ─── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 130px; }
body {
  margin: 0;
  font-family: 'Sarabun', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans Thai', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #1a1a2e;
  background: #fafbfc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #0061a8; text-decoration: none; transition: color 0.15s ease; }
a:hover { text-decoration: underline; }

/* Headings use Prompt — geometric Thai font with a premium feel */
h1, h2, h3, h4, h5, h6,
.brand-name-en {
  font-family: 'Prompt', 'Sarabun', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.3;
}

/* Design tokens — keep brand consistent across /shop/ and /hotel/ */
:root {
  --color-bg:      #fafbfc;
  --color-card:    #ffffff;
  --color-border:  #e8ecf1;
  --color-border-strong: #d4dae3;
  --color-text:    #1a1a2e;
  --color-muted:   #6b7280;
  --color-subtle:  #9ca3af;
  --color-primary: #d8232a;             /* CTA red — Agoda-ish */
  --color-primary-dark: #b41b22;
  --color-primary-light: #fff0f1;
  --color-link:    #0061a8;             /* Booking-inspired blue */
  --color-accent:  #f4b400;             /* highlight yellow */
  --color-accent-soft: #fff8dc;
  --color-good:    #007a3d;             /* review green */
  --color-good-light: #e8f5e9;
  --shadow-xs:     0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm:     0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md:     0 4px 12px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg:     0 10px 30px rgba(15, 23, 42, 0.10), 0 4px 8px rgba(15, 23, 42, 0.06);
  --radius-sm:     6px;
  --radius:        10px;
  --radius-lg:     14px;
  --radius-xl:     20px;
  --transition:    all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Layout ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

/* ─── Header ─── */
.site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--color-text);
}
.brand:hover { text-decoration: none; }
.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}
.brand-name { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name-en {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--color-text);
}
.brand-name-th {
  font-size: 0.72rem;
  color: var(--color-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.main-nav {
  margin-left: auto;
  display: flex;
  gap: 0.4rem;
  font-size: 0.92rem;
}
.main-nav a {
  color: var(--color-text);
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  font-weight: 500;
  transition: var(--transition);
}
.main-nav a:hover {
  background: var(--color-bg);
  color: var(--color-link);
  text-decoration: none;
}

/* ─── Breadcrumb ─── */
.breadcrumb {
  font-size: 0.82rem;
  color: var(--color-muted);
  padding: 1.25rem 0 0.5rem;
  font-weight: 400;
}
.breadcrumb .sep { margin: 0 0.5rem; color: var(--color-subtle); }
.breadcrumb a { color: var(--color-link); font-weight: 500; }
.breadcrumb a:hover { color: var(--color-primary); }

/* ─── Page header ─── */
.page-header { padding: 1.5rem 0 2.5rem; }
.page-header h1 {
  font-size: clamp(1.65rem, 4.5vw, 2.2rem);
  margin: 0 0 0.6rem;
  line-height: 1.25;
  color: var(--color-text);
  font-weight: 800;
  letter-spacing: -0.015em;
}
.page-header .subtitle {
  color: var(--color-muted);
  font-size: 1.02rem;
  margin: 0;
  font-weight: 400;
  max-width: 800px;
}

/* ─── Intro section ─── */
.intro-section {
  background: #fff;
  border-radius: 12px;
  padding: 1.25rem;
  margin: 0 0 2rem;
  border: 1px solid #ececec;
}
.intro-section p { margin: 0 0 0.75rem; }
.intro-section p:last-child { margin-bottom: 0; }

/* ─── Section headings ─── */
section { margin: 2rem 0; }
section h2 {
  font-family: 'Prompt', 'Sarabun', system-ui, sans-serif;
  font-size: 1.4rem;
  margin: 0 0 1rem;
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Premium "related hotels" section — appears after detail body */
.related {
  margin: 2.5rem 0 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.related h2 {
  font-size: 1.45rem;
  margin-bottom: 1.25rem;
}

/* ─── Province / intent / place grids ─── */
.province-grid, .intent-grid, .place-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}
.province-card, .intent-card, .place-card {
  display: block;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 1rem;
  text-decoration: none;
  color: #1a1a1a;
  transition: transform 0.15s, border-color 0.15s;
}
.province-card:hover, .intent-card:hover, .place-card:hover {
  border-color: #0066cc;
  transform: translateY(-2px);
  text-decoration: none;
}
.province-card h3, .intent-card h3, .place-card h3 {
  font-size: 1rem;
  margin: 0 0 0.2rem;
}

/* ─── Hotel card grid ─── */
.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hotel-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-xs);
}
.hotel-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--color-border-strong);
}
.hotel-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.hotel-card__link:hover { text-decoration: none; }
.hotel-card__image {
  position: relative;
  aspect-ratio: 3 / 2;
  background: #f0f0f0;
  overflow: hidden;
}
.hotel-card__image img {
  width: 100%; height: 100%; object-fit: cover;
}
.hotel-card__image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: #999; font-size: 0.85rem;
}
.hotel-card__body { padding: 0.9rem 1rem 1rem; }
.hotel-card__title {
  font-size: 1rem;
  line-height: 1.35;
  margin: 0 0 0.35rem;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hotel-card__location {
  font-size: 0.85rem;
  color: #666;
  margin: 0 0 0.35rem;
}
.hotel-card__distance {
  font-size: 0.8rem;
  color: #0066cc;
  margin: 0 0 0.35rem;
}
.hotel-card__review {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 0.85rem;
  margin: 0.35rem 0;
}
.review-score {
  font-weight: 700;
  color: #007a3d;
  font-size: 0.95rem;
}
.review-label { color: #007a3d; font-weight: 600; }
.review-count { color: #999; font-size: 0.78rem; }
.hotel-card__price {
  display: flex;
  flex-direction: column;
  margin: 0.6rem 0 0.4rem;
}
.price-label { font-size: 0.72rem; color: #999; }
.price-amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: #cc0033;
}
.hotel-card__cta {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.85rem;
  color: #0066cc;
  font-weight: 600;
}
.badge-star {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: #ffd84d;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ─── Comparison table ─── */
.comparison-section { margin: 2rem 0; }
.comparison-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 700px;
}
.comparison-table th,
.comparison-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}
.comparison-table th {
  background: #f8f8f8;
  font-weight: 600;
  color: #555;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: #fafafa; }
.comparison-table .muted { color: #999; font-size: 0.85em; }
.comparison-table__cta-col { width: 110px; }

/* ─── Filter chips ─── */
.filter-chips, .chip-row { margin: 1rem 0 1.5rem; }
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.chip {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 999px;
  color: #444;
  font-size: 0.88rem;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.chip:hover {
  border-color: #0066cc;
  color: #0066cc;
  text-decoration: none;
}

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
}
.btn-primary { background: #cc0033; color: #fff; }
.btn-primary:hover { background: #a3002a; text-decoration: none; }
.btn-cta { background: #0066cc; color: #fff; font-size: 0.85rem; padding: 0.4rem 0.75rem; }
.btn-cta:hover { background: #004f99; text-decoration: none; }
.btn-large { font-size: 1.05rem; padding: 0.85rem 1.5rem; }

/* ─── FAQ ─── */
.faq-section { margin: 2rem 0; }
.faq-item {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}
.faq-item h3 {
  margin: 0 0 0.4rem;
  font-size: 1.02rem;
  color: #1a1a1a;
}
.faq-item p { margin: 0; color: #444; }

/* ─── Pagination ─── */
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 2rem 0 0.5rem;
}
.pagination__num,
.pagination__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.7rem;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--color-card);
  transition: var(--transition);
  font-family: 'Sarabun', system-ui, sans-serif;
}
.pagination__num:hover,
.pagination__nav:not(.is-disabled):hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
  background: var(--color-primary-light);
}
.pagination__num.is-current {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 2px 6px rgba(216, 35, 42, 0.25);
  cursor: default;
}
.pagination__num.is-current:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.pagination__nav { font-size: 1.1rem; font-weight: 700; }
.pagination__nav.is-disabled {
  color: var(--color-subtle);
  cursor: not-allowed;
  background: var(--color-bg);
  border-color: var(--color-border);
}
.pagination__gap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 40px;
  color: var(--color-subtle);
  font-weight: 600;
  user-select: none;
}
.pagination-summary {
  text-align: center;
  margin: 0.5rem 0 1.5rem;
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ─── Shared review summary widget (used in hotel-detail info card) ─── */
.review-summary {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
}
.review-score-big { font-size: 2rem; font-weight: 700; color: #007a3d; line-height: 1; }
.review-label-big { font-weight: 600; color: #007a3d; font-size: 1.05rem; }
.review-summary .review-count { color: #666; }

/* Quick facts list — used inside .hotel-detail__facts */
.facts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
}
.facts-list li {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.88rem;
}
.facts-list li:last-child { border-bottom: none; }
.facts-list strong { color: #555; margin-right: 0.4rem; }

/* ─── Static page ─── */
.static-page { max-width: 800px; margin: 0 auto; }
.static-page__body h2 { font-size: 1.25rem; margin: 1.5rem 0 0.75rem; }
.static-page__body ul { padding-left: 1.5rem; }
.last-updated { font-size: 0.85rem; color: #999; }

/* ─── Footer ─── */
.site-footer {
  background: #1f1f1f;
  color: #ccc;
  padding: 2rem 0 1rem;
  margin-top: 3rem;
  font-size: 0.9rem;
  line-height: 1.7;
}
.site-footer a { color: #8ab4f8; }
.site-footer h2 {
  color: #fff;
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
}
.footer-links {
  margin-bottom: 1.5rem;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
}
.disclaimer, .disclosure {
  background: #2a2a2a;
  border-left: 3px solid #ffd84d;
  padding: 0.75rem 1rem;
  margin: 1rem 0;
  font-size: 0.85rem;
  color: #aaa;
}
.disclaimer strong, .disclosure strong { color: #ffd84d; }
.footer-nav {
  display: flex;
  gap: 1.25rem;
  margin: 1.25rem 0;
  flex-wrap: wrap;
}
.company {
  font-size: 0.82rem;
  color: #888;
  margin-top: 1rem;
}

.muted { color: #999; }

/* ─── Hotel detail page ─── */
.hotel-detail { max-width: 1100px; margin: 0 auto; }

.hotel-detail__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 1rem 0 2.5rem;
}
@media (min-width: 880px) {
  .hotel-detail__layout {
    grid-template-columns: minmax(0, 1fr) 360px;
  }
}

/* Gallery — refined with subtle shadow + nicer nav arrows */
.hotel-detail__gallery .gallery-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f0f0f0;
  box-shadow: var(--shadow-md);
}
.gallery-main {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  max-width: 100%;
}
.gallery-main::-webkit-scrollbar { display: none; }
.gallery-slide {
  flex: 0 0 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0;
  scroll-snap-align: start;
}
.gallery-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .gallery-slide img {
    aspect-ratio: 4 / 3;
    max-height: 60vh;
  }
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow-md);
  color: var(--color-text);
  transition: var(--transition);
}
.gallery-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
  box-shadow: var(--shadow-lg);
}
.gallery-nav--prev { left: 0.75rem; }
.gallery-nav--next { right: 0.75rem; }
.gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  margin-top: 0.6rem;
  padding-bottom: 0.4rem;
}
.gallery-thumbs .thumb {
  flex: 0 0 80px;
  height: 56px;
  padding: 0;
  border: 2px solid transparent;
  background: transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-thumbs .thumb.is-active { border-color: #0066cc; }
.gallery-thumbs .thumb img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Info column — premium clean card */
.hotel-detail__info {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  align-self: start;
  position: sticky;
  top: 84px;
  box-shadow: var(--shadow-md);
}
@media (max-width: 880px) {
  .hotel-detail__info { position: static; padding: 1.5rem 1.25rem; }
}
.hotel-detail__title {
  font-family: 'Prompt', 'Sarabun', system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.6vw, 1.55rem);
  margin: 0 0 0.65rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--color-text);
}
.hotel-detail__badges {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: #f0f4f8;
  color: #4a5568;
  letter-spacing: 0.01em;
  font-family: 'Sarabun', system-ui, sans-serif;
}
.badge-star  {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
  box-shadow: 0 1px 2px rgba(234, 179, 8, 0.15);
  font-weight: 700;
}
.badge-type  { background: #e0f2fe; color: #0369a1; }
.badge-chain { background: #f3e8ff; color: #6b21a8; }

.hotel-detail__location {
  font-size: 0.87rem;
  color: var(--color-muted);
  margin: 0 0 1.1rem;
  line-height: 1.55;
}
/* Booking.com-style filled review pill — score on the left in a coloured pill,
 * label + count to the right. White text on solid coloured pill = always visible. */
.hotel-detail__review {
  display: flex !important;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.25rem;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}
.review-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #007a3d 0%, #00a651 100%);
  color: #fff;
  padding: 0.6rem 0.95rem;
  border-radius: 10px 10px 10px 2px;
  min-width: 64px;
  height: 56px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 122, 61, 0.25);
  flex-shrink: 0;
}
.review-pill__score {
  font-family: 'Prompt', 'Sarabun', system-ui, sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.review-pill__meta { flex: 1; min-width: 0; }
.review-pill__meta p { margin: 0; line-height: 1.35; }
.review-pill__label {
  font-family: 'Prompt', 'Sarabun', system-ui, sans-serif;
  font-weight: 700;
  color: var(--color-text);
  font-size: 1.02rem;
  letter-spacing: -0.005em;
}
.review-pill__count {
  font-size: 0.82rem;
  color: var(--color-muted);
  margin-top: 0.1rem !important;
}

.hotel-detail__price {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, #fff8eb, #fff2d9);
  border: 1px solid #ffe4b5;
  border-radius: var(--radius);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.hotel-detail__price .price-label {
  flex: 1 0 100%;
  font-size: 0.72rem;
  color: #8b6914;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.hotel-detail__price .price-now {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}
.hotel-detail__price .price-unit {
  font-size: 0.85rem;
  color: #6b5b00;
}

.hotel-detail__cta { margin: 1.1rem 0 0.75rem; }
.hotel-detail__cta .btn {
  width: 100%;
  padding: 1rem 1.2rem;
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  background: linear-gradient(135deg, #e53e3e 0%, #d8232a 100%);
  box-shadow: 0 4px 14px rgba(216, 35, 42, 0.28);
  transition: var(--transition);
  border-radius: var(--radius);
  font-family: 'Prompt', 'Sarabun', system-ui, sans-serif;
}
.hotel-detail__cta .btn:hover {
  background: linear-gradient(135deg, #d8232a 0%, #b41b22 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(216, 35, 42, 0.38);
  text-decoration: none;
}
.hotel-detail__cta .cta-note {
  font-size: 0.78rem;
  color: var(--color-muted);
  text-align: center;
  margin: 0.7rem 0 0;
  line-height: 1.5;
}

.hotel-detail__facts {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
}
.hotel-detail__facts summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.5rem 0;
  color: var(--color-link);
  font-size: 0.92rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}
.hotel-detail__facts summary::-webkit-details-marker { display: none; }
.hotel-detail__facts summary::before {
  content: '▸';
  font-size: 0.8rem;
  transition: transform 0.15s ease;
  display: inline-block;
}
.hotel-detail__facts[open] summary::before { transform: rotate(90deg); }
.hotel-detail__facts summary:hover { color: var(--color-primary); }
.hotel-detail__facts .facts-list {
  margin-top: 0.65rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
}
.hotel-detail__facts .facts-list li {
  padding: 0.6rem 0.95rem;
  font-size: 0.87rem;
  border-bottom-color: #eef1f5;
}

/* Body sections — consistent white cards with subtle shadow */
.hotel-detail__intro,
.hotel-detail__body,
.hotel-detail__pros-cons,
.hotel-detail__faq,
.hotel-detail__amenities,
.hotel-detail__nearby,
.hotel-detail__highlights {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 1.25rem 0;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) {
  .hotel-detail__intro,
  .hotel-detail__body,
  .hotel-detail__pros-cons,
  .hotel-detail__faq,
  .hotel-detail__amenities,
  .hotel-detail__nearby,
  .hotel-detail__highlights {
    padding: 1.35rem 1.15rem;
  }
}
.hotel-detail__intro h2,
.hotel-detail__body h2,
.hotel-detail__pros-cons h2,
.hotel-detail__amenities h2,
.hotel-detail__nearby h2,
.hotel-detail__highlights h2,
.hotel-detail__faq h2 {
  font-family: 'Prompt', 'Sarabun', system-ui, sans-serif;
  font-size: 1.3rem;
  margin: 1.5rem 0 0.85rem;
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hotel-detail__intro h2:first-child,
.hotel-detail__body h2:first-child,
.hotel-detail__pros-cons h2:first-child,
.hotel-detail__amenities h2:first-child,
.hotel-detail__nearby h2:first-child,
.hotel-detail__highlights h2:first-child,
.hotel-detail__faq h2:first-child { margin-top: 0; }
.hotel-detail__body p,
.hotel-detail__intro p {
  margin: 0 0 0.95rem;
  line-height: 1.75;
  color: #2a2f3d;
  font-size: 0.98rem;
}
.hotel-detail__body ul,
.hotel-detail__body ol { margin: 0 0 1.1rem; padding-left: 1.4rem; }
.hotel-detail__body li { margin: 0.35rem 0; line-height: 1.7; color: #2a2f3d; }
.hotel-detail__summary {
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  border-left: 4px solid var(--color-primary);
  padding: 1.1rem 1.35rem;
  margin: 1.75rem 0 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.hotel-detail__summary h2 { margin-top: 0; }
.hotel-detail__summary p:last-child { margin-bottom: 0; }

.cta-inline {
  display: inline-flex;
  align-items: center;
  margin: 1.25rem 0 0;
  padding: 0.7rem 1.15rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: 'Prompt', 'Sarabun', system-ui, sans-serif;
  box-shadow: 0 3px 10px rgba(216, 35, 42, 0.22);
  transition: var(--transition);
}
.cta-inline:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(216, 35, 42, 0.32);
  text-decoration: none;
  color: #fff;
}

/* Pros / Cons */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .pros-cons-grid { grid-template-columns: 1fr 1fr; }
}
.pros-block, .cons-block {
  background: #fafafa;
  border-radius: 8px;
  padding: 1rem;
}
.pros-block { border-left: 4px solid #28a745; }
.cons-block { border-left: 4px solid #dc3545; }
.pros-block h3, .cons-block h3 { margin: 0 0 0.5rem; font-size: 1.02rem; }
.pros-block ul, .cons-block ul { margin: 0; padding-left: 1.25rem; }
.good-for { margin-bottom: 1rem; }
.good-for h2 { margin: 0 0 0.4rem; }
.good-for ul { padding-left: 1.25rem; margin: 0; }

/* TOC */
.hotel-detail__toc {
  background: #f7f9fc;
  border: 1px solid #d6e1f2;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}
.hotel-detail__toc .toc-title {
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: #1a4480;
}
.hotel-detail__toc ol { margin: 0; padding-left: 1.4rem; }
.hotel-detail__toc li { margin: 0.2rem 0; }
.hotel-detail__toc a { color: #0066cc; text-decoration: none; }
.hotel-detail__toc a:hover { text-decoration: underline; }

/* FAQ (details/summary accordion) */
.hotel-detail__faq .faq-item {
  background: #fafafa;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  padding: 0;
}
.hotel-detail__faq .faq-item summary {
  cursor: pointer;
  padding: 0.85rem 1rem;
  font-weight: 600;
  color: #1a1a1a;
}
.hotel-detail__faq .faq-item[open] summary { border-bottom: 1px solid #ececec; }
.hotel-detail__faq .faq-item p { padding: 0 1rem 0.85rem; margin: 0; }

/* Tab/anchor nav — sticky chips */
.hotel-detail__tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.85rem 0;
  margin: 0 0 1.25rem;
  position: sticky;
  top: 76px;
  background: rgba(250, 251, 252, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 20;
  scrollbar-width: none;
  border-bottom: 1px solid var(--color-border);
}
.hotel-detail__tabs::-webkit-scrollbar { display: none; }
.hotel-detail__tabs a {
  flex: 0 0 auto;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--color-border-strong);
  background: var(--color-card);
  color: var(--color-text);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
  font-family: 'Sarabun', system-ui, sans-serif;
}
.hotel-detail__tabs a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* Highlights bar — uses shared card styling above */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
@media (min-width: 700px) {
  .highlights-grid { grid-template-columns: 1fr 1fr; }
}
.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.highlight-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.highlight-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.highlight-body { flex: 1; min-width: 0; }
.highlight-body h3 {
  font-size: 1rem;
  margin: 0 0 0.25rem;
  color: var(--color-text);
  font-weight: 700;
}
.highlight-body p {
  font-size: 0.88rem;
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
}

/* Amenities grid — uses shared card styling above */
.amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .amenities-grid { grid-template-columns: 1fr 1fr; } }
.amenity-block {
  background: #fafafa;
  border-radius: 8px;
  padding: 1rem;
}
.amenity-block h3 {
  font-size: 0.98rem;
  margin: 0 0 0.5rem;
  color: #1a4480;
}
.amenity-block ul {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.92rem;
}
.amenity-block li { margin: 0.2rem 0; }

/* Nearby list — uses shared card styling above */
.nearby-block { margin-bottom: 1.25rem; }
.nearby-block:last-child { margin-bottom: 0; }
.nearby-block h3 {
  font-size: 1.02rem;
  margin: 0 0 0.6rem;
  color: #1a4480;
}
.nearby-map-link {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}
.nearby-map-link a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  background: #f0f4ff;
  border-radius: 6px;
  text-decoration: none;
  color: #0066cc;
  font-weight: 600;
}
.nearby-map-link a:hover { background: #e1ebff; text-decoration: none; }
.nearby-list {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fafafa;
  border-radius: 8px;
  overflow: hidden;
}
.nearby-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid #f0f0f0;
}
.nearby-list li:last-child { border-bottom: none; }
.nearby-type { font-size: 1.1rem; flex-shrink: 0; }
.nearby-name {
  flex: 1;
  color: #1a1a1a;
  text-decoration: none;
}
a.nearby-name { color: #0066cc; }
a.nearby-name:hover { text-decoration: underline; }
.nearby-distance {
  font-size: 0.85rem;
  color: #666;
  font-weight: 600;
  flex-shrink: 0;
}
.muted { font-weight: normal; color: #999; font-size: 0.82rem; }

.hotel-detail__disclaimer {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-left: 4px solid var(--color-accent);
  padding: 0.9rem 1.15rem;
  margin: 1.5rem 0;
  font-size: 0.85rem;
  color: #78350f;
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.65;
}

/* Sticky buy bar */
.sticky-buy {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  padding: 0.6rem 1rem;
  z-index: 50;
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
.sticky-buy.is-visible { transform: translateY(0); }
.sticky-buy__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sticky-buy__img {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.sticky-buy__meta { flex: 1; min-width: 0; }
.sticky-buy__title {
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-buy__price { font-size: 0.85rem; margin: 0.1rem 0 0; }
.sticky-buy__btn { flex-shrink: 0; padding: 0.55rem 1rem; }

/* Add bottom padding when sticky buy is visible */
@media (max-width: 879px) {
  body.has-sticky-buy { padding-bottom: 80px; }
}

/* ─── Responsive ─── */
@media (max-width: 600px) {
  .main-nav { font-size: 0.85rem; gap: 0.85rem; }
  .brand-name-th { display: none; }
  .hotel-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 0.75rem; }
  .province-grid, .intent-grid, .place-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}
