/* ============================================================
   HOTELSUNS — Main Stylesheet
   Mobile-first, Core Web Vitals optimised
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --hs-sun:        #F5A623;
  --hs-sun-dark:   #D4891A;
  --hs-blue:       #1A6FA8;
  --hs-blue-dark:  #155a8a;
  --hs-green:      #27AE60;
  --hs-text:       #1A1A2E;
  --hs-text-light: #555770;
  --hs-border:     #E2E8F0;
  --hs-bg:         #F8F9FC;
  --hs-white:      #FFFFFF;
  --hs-card-bg:    #FFFFFF;
  --hs-radius:     10px;
  --hs-shadow:     0 2px 16px rgba(0,0,0,.08);
  --hs-shadow-sm:  0 1px 4px rgba(0,0,0,.06);
  --hs-font:       'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --hs-max-w:      1200px;
  --hs-gap:        24px;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--hs-font);
  color: var(--hs-text);
  background: var(--hs-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--hs-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ───────────────────────────────────────────────── */
.hs-container {
  max-width: var(--hs-max-w);
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) { .hs-container { padding: 0 24px; } }

.hs-section { padding: 48px 0; }
.hs-section--sm { padding: 28px 0; }
.hs-section--lg { padding: 72px 0; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 16px; }
h2 { font-size: clamp(1.25rem, 3vw, 1.75rem); margin-bottom: 14px; margin-top: 40px; }
h3 { font-size: clamp(1rem, 2.5vw, 1.25rem); margin-bottom: 10px; }
p  { margin-bottom: 16px; color: var(--hs-text-light); }
p:last-child { margin-bottom: 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.hotelsuns-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background .18s, transform .12s, box-shadow .18s;
  white-space: nowrap;
}
.hotelsuns-btn:hover { text-decoration: none; transform: translateY(-1px); }
.hotelsuns-btn:active { transform: translateY(0); }

.hotelsuns-btn--primary {
  background: var(--hs-sun);
  color: var(--hs-white);
  box-shadow: 0 4px 14px rgba(245,166,35,.35);
}
.hotelsuns-btn--primary:hover { background: var(--hs-sun-dark); }

.hotelsuns-btn--secondary {
  background: var(--hs-blue);
  color: var(--hs-white);
}
.hotelsuns-btn--secondary:hover { background: var(--hs-blue-dark); }

.hotelsuns-btn--cta {
  background: var(--hs-green);
  color: var(--hs-white);
  box-shadow: 0 4px 14px rgba(39,174,96,.3);
  padding: 10px 20px;
  font-size: .88rem;
}
.hotelsuns-btn--cta:hover { background: #219150; }

.hotelsuns-btn--outline {
  background: transparent;
  color: var(--hs-blue);
  border: 2px solid var(--hs-blue);
}
.hotelsuns-btn--outline:hover { background: var(--hs-blue); color: #fff; }

/* ── Site Header ──────────────────────────────────────────── */
.hs-site-header {
  background: var(--hs-white);
  border-bottom: 1px solid var(--hs-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--hs-shadow-sm);
}
.hs-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.hs-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--hs-sun);
  letter-spacing: -.5px;
  text-decoration: none;
}
.hs-logo:hover { text-decoration: none; color: var(--hs-sun-dark); }
.hs-logo span { color: var(--hs-text); }

.hs-nav { display: none; gap: 4px; }
@media (min-width: 900px) { .hs-nav { display: flex; align-items: center; } }
.hs-nav a {
  padding: 8px 14px;
  border-radius: 6px;
  color: var(--hs-text);
  font-size: .9rem;
  font-weight: 500;
  transition: background .15s;
}
.hs-nav a:hover { background: var(--hs-bg); text-decoration: none; }

.hs-header-cta { display: none; }
@media (min-width: 700px) { .hs-header-cta { display: flex; } }

.hs-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
@media (min-width: 900px) { .hs-hamburger { display: none; } }
.hs-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--hs-text);
  border-radius: 2px;
  transition: .2s;
}

/* Mobile menu */
.hs-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--hs-white);
  border-top: 1px solid var(--hs-border);
  padding: 16px;
  gap: 4px;
}
.hs-mobile-menu.is-open { display: flex; }
.hs-mobile-menu a {
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--hs-text);
  font-weight: 500;
}
.hs-mobile-menu a:hover { background: var(--hs-bg); text-decoration: none; }

/* ── Site Footer ──────────────────────────────────────────── */
.hs-site-footer {
  background: var(--hs-text);
  color: #a0a8c0;
  padding: 48px 0 28px;
  margin-top: 80px;
}
.hs-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (min-width: 600px) { .hs-footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .hs-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.hs-footer-brand .hs-logo { color: var(--hs-sun); font-size: 1.4rem; }
.hs-footer-brand p { color: #a0a8c0; font-size: .88rem; margin-top: 10px; }

.hs-footer-col h4 { color: var(--hs-white); font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.hs-footer-col a  { display: block; color: #a0a8c0; font-size: .88rem; margin-bottom: 6px; }
.hs-footer-col a:hover { color: var(--hs-white); text-decoration: none; }

.hs-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: .8rem;
}

/* ── Language Switcher ────────────────────────────────────── */
.hs-lang-switcher { display: flex; gap: 6px; align-items: center; }
.hs-lang-switcher a {
  padding: 4px 10px;
  border-radius: 4px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--hs-text-light);
  border: 1px solid var(--hs-border);
  transition: .15s;
}
.hs-lang-switcher a.active,
.hs-lang-switcher a:hover {
  background: var(--hs-blue);
  color: #fff;
  border-color: var(--hs-blue);
  text-decoration: none;
}

/* ── Breadcrumbs ──────────────────────────────────────────── */
.hs-breadcrumb {
  font-size: .82rem;
  color: var(--hs-text-light);
  padding: 12px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.hs-breadcrumb a { color: var(--hs-blue); }
.hs-breadcrumb .sep { color: var(--hs-border); }

/* ── Page Hero ────────────────────────────────────────────── */
.hs-page-hero {
  background: linear-gradient(135deg, #1A6FA8 0%, #0e4a72 100%);
  color: var(--hs-white);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.hs-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hs-page-hero h1 { color: var(--hs-white); margin-bottom: 12px; }
.hs-page-hero .hero-subtitle { color: rgba(255,255,255,.8); font-size: 1.1rem; max-width: 640px; }
.hs-page-hero .hero-meta { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 16px; }

/* ── Search Module (plugin output) ───────────────────────── */
.hotelsuns-search-module {
  background: var(--hs-white);
  border-radius: var(--hs-radius);
  padding: 24px;
  box-shadow: var(--hs-shadow);
  margin: 28px 0;
}
.hotelsuns-search-form {}
.hotelsuns-search-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) {
  .hotelsuns-search-fields { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .hotelsuns-search-fields { grid-template-columns: 2fr 1fr 1fr 1fr 1fr auto; align-items: end; }
}

.hotelsuns-field label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--hs-text-light);
  margin-bottom: 5px;
}
.hotelsuns-field input,
.hotelsuns-field select {
  width: 100%;
  padding: 10px 13px;
  border: 2px solid var(--hs-border);
  border-radius: 7px;
  font-size: .9rem;
  color: var(--hs-text);
  background: var(--hs-white);
  transition: border-color .15s;
  outline: none;
}
.hotelsuns-field input:focus,
.hotelsuns-field select:focus {
  border-color: var(--hs-blue);
}
.hotelsuns-field--submit .hotelsuns-btn {
  width: 100%;
  padding: 12px 20px;
}

/* ── Hotel Cards ──────────────────────────────────────────── */
.hotelsuns-hotel-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 24px 0;
}
@media (min-width: 600px) { .hotelsuns-hotel-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .hotelsuns-hotel-list { grid-template-columns: repeat(3, 1fr); } }

.hotelsuns-hotel-card {
  background: var(--hs-card-bg);
  border-radius: var(--hs-radius);
  box-shadow: var(--hs-shadow-sm);
  overflow: hidden;
  border: 1px solid var(--hs-border);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.hotelsuns-hotel-card:hover {
  box-shadow: var(--hs-shadow);
  transform: translateY(-3px);
}

.hotelsuns-card-media { position: relative; overflow: hidden; aspect-ratio: 16/10; background: var(--hs-bg); }
.hotelsuns-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.hotelsuns-hotel-card:hover .hotelsuns-card-img { transform: scale(1.04); }
.hotelsuns-card-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #e2e8f0, #cbd5e0); }

.hotelsuns-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.hotelsuns-card-title { font-size: 1rem; font-weight: 700; color: var(--hs-text); line-height: 1.3; }
.hotelsuns-card-meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.hotelsuns-city { font-size: .82rem; color: var(--hs-text-light); }
.hotelsuns-city::before { content: '📍 '; font-size: .78rem; }

.hotelsuns-stars { color: var(--hs-sun); font-size: .88rem; letter-spacing: 1px; }
.hotelsuns-rating {
  background: var(--hs-green);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}

.hotelsuns-card-price { margin-top: auto; }
.hotelsuns-check-price { font-size: .82rem; color: var(--hs-text-light); font-style: italic; }
.hotelsuns-rate-from  { font-size: .85rem; color: var(--hs-text-light); }
.hotelsuns-rate-price { font-size: 1.1rem; font-weight: 700; color: var(--hs-green); }

.hotelsuns-card-cta { margin-top: 12px; }
.hotelsuns-card-cta .hotelsuns-btn { width: 100%; }

/* ── Quick Picks ──────────────────────────────────────────── */
.hotelsuns-quick-picks {
  background: #fff9ee;
  border: 1px solid #fde68a;
  border-radius: var(--hs-radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.hotelsuns-quick-picks ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.hotelsuns-quick-picks li { font-size: .95rem; }
.hotelsuns-pick-label { font-weight: 600; color: var(--hs-text-light); margin-right: 4px; }

/* ── Comparison Table ─────────────────────────────────────── */
.hotelsuns-comparison-wrapper { overflow-x: auto; margin: 28px 0; }
.hotelsuns-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--hs-white);
  border-radius: var(--hs-radius);
  overflow: hidden;
  box-shadow: var(--hs-shadow-sm);
  font-size: .9rem;
}
.hotelsuns-comparison-table thead tr {
  background: var(--hs-blue);
  color: var(--hs-white);
}
.hotelsuns-comparison-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}
.hotelsuns-comparison-table tbody tr {
  border-bottom: 1px solid var(--hs-border);
  transition: background .15s;
}
.hotelsuns-comparison-table tbody tr:last-child { border-bottom: none; }
.hotelsuns-comparison-table tbody tr:hover { background: #f8faff; }
.hotelsuns-td { padding: 14px 16px; vertical-align: middle; color: var(--hs-text); }
.hotelsuns-td img {
  width: 72px;
  height: 52px;
  object-fit: cover;
  border-radius: 5px;
  margin-top: 6px;
}
.hotelsuns-td--cta { white-space: nowrap; }

/* Mobile: stack table rows as cards */
@media (max-width: 700px) {
  .hotelsuns-comparison-table thead { display: none; }
  .hotelsuns-comparison-table tbody tr {
    display: block;
    background: var(--hs-white);
    border: 1px solid var(--hs-border);
    border-radius: var(--hs-radius);
    margin-bottom: 12px;
    padding: 12px;
  }
  .hotelsuns-td {
    display: flex;
    gap: 8px;
    padding: 6px 0;
    border: none;
    font-size: .88rem;
  }
  .hotelsuns-td::before {
    content: attr(data-label);
    font-weight: 600;
    min-width: 90px;
    color: var(--hs-text-light);
    font-size: .78rem;
    text-transform: uppercase;
  }
}

/* ── Destination Cards ────────────────────────────────────── */
.hotelsuns-destination-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
@media (min-width: 600px) { .hotelsuns-destination-cards { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .hotelsuns-destination-cards { grid-template-columns: repeat(4, 1fr); } }

.hotelsuns-destination-card {
  background: var(--hs-white);
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius);
  padding: 18px 16px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.hotelsuns-destination-card:hover { box-shadow: var(--hs-shadow); transform: translateY(-2px); }
.hotelsuns-dest-name { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.hotelsuns-destination-card .hotelsuns-btn { font-size: .82rem; padding: 8px 16px; }

/* ── Trust Block ──────────────────────────────────────────── */
.hs-trust-block {
  background: var(--hs-white);
  border-radius: var(--hs-radius);
  padding: 32px;
  border: 1px solid var(--hs-border);
  margin: 40px 0;
}
.hs-trust-block h2 { margin-top: 0; }
.hs-trust-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}
@media (min-width: 600px) { .hs-trust-items { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .hs-trust-items { grid-template-columns: repeat(3, 1fr); } }

.hs-trust-item { display: flex; gap: 12px; }
.hs-trust-icon { font-size: 1.5rem; flex-shrink: 0; }
.hs-trust-text h4 { font-size: .95rem; margin-bottom: 4px; }
.hs-trust-text p { font-size: .85rem; margin: 0; }

/* ── FAQ Accordion ────────────────────────────────────────── */
.hs-faq { margin: 40px 0; }
.hs-faq h2 { margin-bottom: 20px; }
.hs-faq-item {
  border: 1px solid var(--hs-border);
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  background: var(--hs-white);
}
.hs-faq-question {
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  color: var(--hs-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.hs-faq-question .hs-faq-icon {
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .2s;
  color: var(--hs-blue);
}
.hs-faq-item.is-open .hs-faq-icon { transform: rotate(45deg); }
.hs-faq-answer { display: none; padding: 0 20px 16px; color: var(--hs-text-light); font-size: .9rem; line-height: 1.7; }
.hs-faq-item.is-open .hs-faq-answer { display: block; }

/* ── Related Destinations ─────────────────────────────────── */
.hotelsuns-related-destinations {
  background: var(--hs-bg);
  border-radius: var(--hs-radius);
  padding: 24px;
  margin: 32px 0;
}
.hotelsuns-related-destinations h3 { margin-bottom: 14px; margin-top: 0; }
.hotelsuns-related-destinations ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hotelsuns-related-destinations a {
  display: inline-block;
  padding: 6px 14px;
  background: var(--hs-white);
  border: 1px solid var(--hs-border);
  border-radius: 20px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--hs-blue);
  transition: .15s;
}
.hotelsuns-related-destinations a:hover {
  background: var(--hs-blue);
  color: #fff;
  border-color: var(--hs-blue);
  text-decoration: none;
}

/* ── No results / unavailable ─────────────────────────────── */
.hotelsuns-no-results,
.hotelsuns-rates-unavailable,
.hotelsuns-cta-unavailable {
  background: #fff9ee;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 16px 20px;
  font-size: .9rem;
  color: var(--hs-text-light);
  margin: 16px 0;
}

/* ── Sticky Mobile CTA ────────────────────────────────────── */
.hs-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--hs-white);
  border-top: 2px solid var(--hs-green);
  padding: 12px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,.12);
}
@media (min-width: 900px) { .hs-sticky-cta { display: none; } }
.hs-sticky-cta .hotelsuns-btn { flex: 1; justify-content: center; }

/* ── Page Content ─────────────────────────────────────────── */
.hs-content-area { max-width: 800px; }
.hs-content-area h2 { border-bottom: 2px solid var(--hs-border); padding-bottom: 8px; }
.hs-content-area ul, .hs-content-area ol { padding-left: 20px; margin-bottom: 16px; color: var(--hs-text-light); }
.hs-content-area li { margin-bottom: 6px; }

.hs-last-updated { font-size: .8rem; color: var(--hs-text-light); margin-bottom: 20px; }

/* ── Rates ────────────────────────────────────────────────── */
.hotelsuns-rates {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 6px;
  padding: 6px 12px;
}

/* ── Admin dashboard card styles are in admin.css ─────────── */

/* ── Hotel card — clickable title & image links ──────────── */
.hotelsuns-card-title-link {
  color: inherit;
  text-decoration: none;
}
.hotelsuns-card-title-link:hover {
  color: var(--hs-blue);
  text-decoration: underline;
}
.hotelsuns-card-img-link { display: block; }

/* ── AJAX search results & loading ───────────────────────── */
.hotelsuns-search-results { margin-top: 28px; }
.hs-search-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px;
  color: var(--hs-text-light);
  font-size: .95rem;
}
@keyframes hs-spin { to { transform: rotate(360deg); } }
.hs-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid var(--hs-border);
  border-top-color: var(--hs-blue);
  border-radius: 50%;
  animation: hs-spin .7s linear infinite;
  flex-shrink: 0;
}

/* ── Hotel hero (single-hotel.php) ───────────────────────── */
.hotelsuns-hotel-hero {
  position: relative;
  overflow: hidden;
  max-height: 480px;
  background: var(--hs-text);
}
.hotelsuns-hotel-hero__img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}
.hotelsuns-hotel-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.1) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 32px;
}
.hotelsuns-hotel-hero__title {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 6px;
}
.hotelsuns-hotel-hero__location {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 0 6px;
}
.hotelsuns-hotel-hero__stars {
  color: var(--hs-sun);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* ── Hotel detail page layout ────────────────────────────── */
.hotelsuns-hotel-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-top: 32px;
  padding-bottom: 48px;
}
@media (min-width: 900px) {
  .hotelsuns-hotel-detail { grid-template-columns: 1fr 320px; }
}

.hotelsuns-hotel-detail__section {
  margin-bottom: 32px;
}
.hotelsuns-hotel-detail__section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--hs-text);
}
.hotelsuns-hotel-detail__desc {
  line-height: 1.7;
  color: var(--hs-text-light);
  font-size: .97rem;
}

/* ── Hotel gallery ───────────────────────────────────────── */
.hotelsuns-hotel-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 600px) { .hotelsuns-hotel-gallery { grid-template-columns: repeat(3, 1fr); } }
.hotelsuns-hotel-gallery__item { aspect-ratio: 4/3; overflow: hidden; border-radius: 6px; }
.hotelsuns-hotel-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.hotelsuns-hotel-gallery__item:hover img { transform: scale(1.05); }

/* ── Amenities list ──────────────────────────────────────── */
.hotelsuns-amenities-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
}
@media (min-width: 600px) { .hotelsuns-amenities-list { grid-template-columns: repeat(3, 1fr); } }
.hotelsuns-amenities-list li {
  font-size: .9rem;
  color: var(--hs-text-light);
  padding-left: 18px;
  position: relative;
}
.hotelsuns-amenities-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--hs-green);
  font-weight: 700;
}

/* ── Hotel sidebar CTA box ───────────────────────────────── */
.hotelsuns-hotel-detail__sidebar { align-self: start; }
.hotelsuns-hotel-detail__cta-box {
  background: var(--hs-white);
  border: 1px solid var(--hs-border);
  border-radius: var(--hs-radius);
  padding: 24px;
  box-shadow: var(--hs-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 80px;
}
.hotelsuns-hotel-detail__cta-box h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--hs-text);
  margin: 0;
}
.hotelsuns-btn--block { display: block; text-align: center; width: 100%; }

.hotelsuns-detail-score {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}
.hotelsuns-detail-score__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--hs-green);
  line-height: 1;
}
.hotelsuns-detail-score__label { font-size: 1rem; color: var(--hs-text-light); }
.hotelsuns-detail-score__text { font-size: .82rem; color: var(--hs-text-light); width: 100%; }

.hotelsuns-detail-times {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  font-size: .88rem;
}
.hotelsuns-detail-times dt { font-weight: 600; color: var(--hs-text-light); }
.hotelsuns-detail-times dd { color: var(--hs-text); }

.hotelsuns-detail-address {
  font-size: .85rem;
  color: var(--hs-text-light);
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.hotelsuns-detail-address svg { flex-shrink: 0; margin-top: 2px; }
