/* ============================================================
   item.css — Blue Dream Spa Listing Page
   Max container width: 1400px
   Breakpoints:
     xl   → ≤ 1400px  (wide constrained)
     lg   → ≤ 1200px  (laptop)
     md   → ≤ 1024px  (tablet landscape)
     sm   → ≤ 768px   (tablet portrait / stack)
     xs   → ≤ 480px   (mobile)
============================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

/* ── CSS VARIABLES ────────────────────────────────────────── */
:root {
  /* Layout */
  --max-width:           1400px;
  --gutter:              32px;       /* horizontal padding inside container */
  --card-gap:            24px;       /* gap between cards */
  --sidebar-width:       340px;      /* sidebar fixed width on desktop */
  --col-gap:             28px;       /* gap between main-content and sidebar */

  /* Colors */
  --bg-dark:             #1c1c1c;
  --bg-card:             #232323;
  --bg-card-hover:       #272727;
  --accent-green:        #4a7c3f;
  --accent-green-light:  #5a9e4a;
  --accent-green-bright: #6dbf5a;
  --text-primary:        #e8e8e8;
  --text-secondary:      #aaaaaa;
  --text-muted:          #666666;
  --border-color:        #363636;
  --star-color:          #7dc45a;

  /* Misc */
  --radius:              8px;
  --radius-sm:           5px;
  --shadow:              0 2px 16px rgba(0,0,0,0.45);
  --shadow-lg:           0 6px 32px rgba(0,0,0,0.6);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: var(--accent-green-light); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-green-bright); }

/* ── SHARED CONTAINER ─────────────────────────────────────── */
/* Used by hero-body, tab-nav-inner, main-container, reviews-cta, footer-inner */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}


/* ══════════════════════════════════════════════════════════
   SECTION 1 — HERO + BREADCRUMB  (hero.php)
══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Background image — full bleed */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1504701954957-2010ec3bcec1?w=1800&q=70")
    center / cover no-repeat;
  filter: brightness(0.25) saturate(0.45);
  z-index: 0;
}

/* Dark gradient left-to-right so text pops */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,8,8,0.92)  0%,
    rgba(8,8,8,0.65)  50%,
    rgba(8,8,8,0.20) 100%
  );
  z-index: 1;
}

/* ── Breadcrumb strip ── */
.hero-breadcrumb {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hero-breadcrumb .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.hero-breadcrumb .bc-icon { font-size: 13px; margin-right: 2px; }
.hero-breadcrumb a        { color: #3d6e3d; transition: color .2s; }
.hero-breadcrumb a:hover  { color: #fff; }
.hero-breadcrumb .bc-sep  { color: var(--text-muted); margin: 0 3px; }
.hero-breadcrumb .bc-current { color: #777; }

/* ── Hero body ── */
.hero-body {
  position: relative;
  z-index: 2;
}

.hero-body .container {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 28px;
  padding-bottom: 34px;
}

/* Spa photo */
.hero-img-wrap {
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.13);
  box-shadow: var(--shadow-lg);
}

.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* Info block */
.hero-info { flex: 1; min-width: 0; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
  text-shadow: 0 2px 18px rgba(0,0,0,0.95);
}

.hero-address {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #ccc;
  font-size: 14px;
  margin-bottom: 12px;
}

.hero-address .pin-icon { color: var(--accent-green-light); font-size: 15px; }

.badge-featured {
  display: inline-block;
  border: 1px solid #fff4e5;
  color: #aa6709;
  background: #fff4e5;
  font-size: 11px;
  padding: 2px 9px;
  border-radius: 3px;
  letter-spacing: 0.6px;
  vertical-align: middle;
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d8d8d8;
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.hero-phone .phone-icon { color: var(--accent-green-light); font-size: 16px; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent-green);
  color: #fff;
  border: none;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  letter-spacing: 0.2px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 3px 12px rgba(74,124,63,0.35);
}
.btn-call:hover {
  background: var(--accent-green-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(74,124,63,0.45);
}

.btn-reviews {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Lato', sans-serif;
  cursor: pointer;
  transition: all .2s;
  backdrop-filter: blur(4px);
}
.btn-reviews:hover {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: #fff;
}


/* ══════════════════════════════════════════════════════════
   SECTION 2 — TAB NAVIGATION  (tab-nav.php)
══════════════════════════════════════════════════════════ */
.tab-nav {
  background: #1a1a1a;
  border-bottom: 2px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.tab-nav .container {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.tab-nav .container::-webkit-scrollbar { display: none; }

.tab-nav a {
  display: block;
  padding: 10px 22px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  letter-spacing: 0.3px;
  transition: color .2s, border-color .2s, background .2s;
}

.tab-nav a:hover {
  color: var(--text-primary);
  border-bottom-color: rgba(90,158,74,0.45);
  background: rgba(255,255,255,0.025);
}

.tab-nav a.active {
  color: #fff;
  border-bottom: 3px solid var(--accent-green-light);
  background: rgba(74,124,63,0.10);
}


/* ══════════════════════════════════════════════════════════
   MAIN LAYOUT GRID  (index.php)
   Left: main-content   Right: sidebar (340px fixed)
══════════════════════════════════════════════════════════ */
.main-container {
  max-width: var(--max-width);
  margin: 30px auto;
  padding: 0 var(--gutter);
  display: flex;
  gap: var(--col-gap);
  align-items: flex-start;
  min-height: 50vh;
}

/* Left column — grows to fill available space */
.main-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: var(--card-gap);
}

/* Right column — fixed sidebar */
.sidebar {
  width: var(--sidebar-width);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 56px;           /* below sticky tab-nav */
  align-self: flex-start;
}

/* ── Shared card base ── */
.overview-card,
.info-card,
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow);
  transition: background .2s;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--border-color);
}


/* ══════════════════════════════════════════════════════════
   SECTION 3 — OVERVIEW CARD  (overview.php)
══════════════════════════════════════════════════════════ */
.overview-text {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.8;
}
.overview-text strong { color: var(--text-primary); font-weight: 700; }


/* ══════════════════════════════════════════════════════════
   SECTION 4 — CONTACT INFORMATION  (contact.php)
══════════════════════════════════════════════════════════ */
.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 14px;
}

.contact-list .c-label {
  color: var(--text-primary);
  font-weight: 700;
  min-width: 76px;
  flex-shrink: 0;
}

.contact-list .c-icon {
  color: var(--accent-green-light);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Map placeholder */
.map-wrap {
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
  height: 210px;
  position: relative;
  background: #0f1a0f;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,124,63,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,124,63,0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 0;
}

.map-road-h {
  position: absolute; left: 0; right: 0;
  height: 7px;
  background: rgba(70,70,50,0.55);
  z-index: 1;
}
.map-road-h.r1 { top: 42%; }
.map-road-h.r2 { top: 68%; }

.map-road-v {
  position: absolute; top: 0; bottom: 0;
  width: 7px;
  background: rgba(70,70,50,0.55);
  z-index: 1;
}
.map-road-v.v1 { left: 33%; }
.map-road-v.v2 { left: 62%; }

.map-pin-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -62%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-pin-dot {
  width: 16px; height: 16px;
  background: #c0392b;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 0 0 5px rgba(192,57,43,0.22);
}

.map-address-label {
  margin-top: 8px;
  background: rgba(0,0,0,0.82);
  color: #ddd;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}


/* ══════════════════════════════════════════════════════════
   SECTION 5 — BUSINESS HOURS  (hours.php)
══════════════════════════════════════════════════════════ */
.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 14px;
  color: var(--text-secondary);
}
.hours-list li:last-child { border-bottom: none; }

.hours-list .day  { color: var(--text-primary); font-weight: 600; }
.hours-list .time { color: var(--accent-green-light); font-weight: 700; font-size: 13.5px; }

.btn-more {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  background: var(--accent-green);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.3px;
  transition: background .2s, transform .15s;
}
.btn-more:hover {
  background: var(--accent-green-light);
  color: #fff;
  transform: translateY(-1px);
}


/* ══════════════════════════════════════════════════════════
   SECTION 6 — SIDEBAR  (sidebar.php)
   Cards: Spa Information → Ratings → Similar Spas
══════════════════════════════════════════════════════════ */

/* ── Shared sidebar card ── */
.sidebar-card { padding: 20px 22px; }

/* Shared sidebar card title */
.sidebar-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   CARD 1 · SPA INFORMATION  (inline 3-col row)
───────────────────────────────────────── */
.spa-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spa-info-row {
  display: grid;
  grid-template-columns: 22px 1fr 1fr;
  align-items: center;
  gap: 0 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.spa-info-row:last-child { border-bottom: none; }

/* col 1 — icon */
.spa-info-icon {
  font-size: 14px;
  opacity: 0.70;
  text-align: center;
  line-height: 1;
}

/* col 2 — label */
.spa-info-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
}

/* col 3 — value */
.spa-info-value {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.spa-info-link {
  color: var(--accent-green-light);
  font-weight: 700;
  font-size: 13px;
  transition: color .2s;
}
.spa-info-link:hover { color: var(--accent-green-bright); }

/* ─────────────────────────────────────────
   CARD 2 · RATINGS (single bar)
───────────────────────────────────────── */
.rating-highlight {
  color: var(--accent-green-bright);
  font-size: 0.95rem;
}

/* Score + stars centred block */
.rating-top {
  text-align: center;
  margin-bottom: 18px;
}

.rating-score-big {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.rating-score-big sup {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}

.rating-subtitle { font-size: 12px; color: var(--text-muted); margin-top: 5px; }

.stars-row { display: flex; justify-content: center; gap: 3px; margin: 7px 0; }

.star          { color: var(--star-color); font-size: 17px; line-height: 1; }
.star.empty    { color: #353535; }
.star.star-half{ color: var(--star-color); opacity: 0.55; }

/* Single overall rating bar */
.rating-single-bar { margin-bottom: 4px; }

.rating-bar-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 7px;
}

.rating-bar-text  { font-size: 12.5px; color: var(--text-secondary); font-weight: 600; }
.rating-bar-score { font-size: 13px; color: var(--accent-green-bright); font-weight: 700; }

/* Taller bar for single overall bar */
.bar-wrap--lg { height: 14px; border-radius: 7px; }

.bar-wrap {
  width: 100%;
  height: 10px;
  background: #2a2a2a;
  border-radius: 5px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-green) 0%, var(--accent-green-bright) 100%);
  border-radius: inherit;
  animation: growBar .8s ease both;
}

@keyframes growBar { from { width: 0 !important; } }

.rating-bar-counts {
  margin-top: 6px;
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: right;
}

.btn-all-reviews {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 10px;
  background: var(--accent-green);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  transition: background .2s;
}
.btn-all-reviews:hover { background: var(--accent-green-light); color: #fff; }

/* ─────────────────────────────────────────
   CARD 3 · SIMILAR SPAS (image + title only, fully clickable)
───────────────────────────────────────── */
.similar-spas-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Each spa = a full clickable anchor */
.similar-spa-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background .18s;
  border-radius: 4px;
  text-decoration: none;
  margin: 0 -4px;
  padding-left: 4px;
  padding-right: 4px;
}

.similar-spa-link:last-child { border-bottom: none; }

.similar-spa-link:hover { background: rgba(255,255,255,0.04); }

.similar-spa-img {
  width: 68px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
  transition: opacity .2s;
}

.similar-spa-link:hover .similar-spa-img { opacity: 0.85; }

.similar-spa-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.similar-spa-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .2s;
}

.similar-spa-link:hover .similar-spa-name { color: var(--accent-green-bright); }

.similar-spa-dist {
  font-size: 12px;
  color: var(--text-muted);
}


/* ══════════════════════════════════════════════════════════
   SECTION 7 — REVIEWS CTA  (reviews-cta.php)
══════════════════════════════════════════════════════════ */
.reviews-cta {
  max-width: var(--max-width);
  margin: 12px auto 40px;
  padding: 0 var(--gutter);
}

.reviews-cta-inner {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}

.reviews-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.reviews-cta-inner h2 strong { color: var(--accent-green-bright); }

.btn-visit-reviews {
  display: inline-block;
  background: var(--accent-green);
  color: #fff;
  padding: 13px 38px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.4px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 3px 14px rgba(74,124,63,0.3);
}
.btn-visit-reviews:hover {
  background: var(--accent-green-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74,124,63,0.4);
}


/* ══════════════════════════════════════════════════════════
   SECTION 8 — FOOTER  (footer.php)
══════════════════════════════════════════════════════════ */
footer {
  background: #111;
  border-top: 1px solid var(--border-color);
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: var(--text-primary); }


/* ══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════════════════ */

/* ── xl: ≤ 1400px — clamps to edge with gutter ── */
@media (max-width: 1400px) {
  :root { --gutter: 28px; }
}

/* ── lg: ≤ 1200px — shrink sidebar ── */
@media (max-width: 1200px) {
  :root {
    --sidebar-width: 300px;
    --gutter: 24px;
    --col-gap: 22px;
  }

  .hero-title { font-size: 2rem; }
  .hero-img-wrap { width: 260px; height: 180px; }
}

/* ── md: ≤ 1024px — tablet landscape ── */
@media (max-width: 1024px) {
  :root {
    --sidebar-width: 270px;
    --gutter: 20px;
    --col-gap: 18px;
    --card-gap: 18px;
  }

  .hero-title { font-size: 1.85rem; }
  .hero-img-wrap { width: 230px; height: 165px; }

  .tab-nav a { padding: 12px 18px; font-size: 13.5px; }

  .sidebar { top: 52px; }
}

/* ── sm: ≤ 768px — tablet portrait: stack layout ── */
@media (max-width: 768px) {
  :root {
    --gutter: 16px;
    --card-gap: 16px;
  }

  /* Stack main-content + sidebar vertically */
  .main-container {
    flex-direction: column;
    gap: 20px;
  }

  .sidebar {
    width: 100%;
    position: static;        /* un-sticky when stacked */
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  /* Each sidebar card takes half the width side by side */
  .sidebar-card { flex: 1; min-width: 260px; }

  /* Hero stacks vertically */
  .hero-body .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 24px;
  }

  .hero-img-wrap {
    width: 100%;
    max-width: 420px;
    height: 220px;
  }

  .hero-title  { font-size: 1.7rem; }

  .hero-actions { gap: 10px; }
  .btn-call,
  .btn-reviews { padding: 10px 18px; font-size: 13.5px; }

  .tab-nav a { padding: 12px 16px; font-size: 13px; }
}

/* ── xs: ≤ 480px — mobile ── */
@media (max-width: 480px) {
  :root { --gutter: 12px; }

  .hero-title  { font-size: 1.45rem; }
  .hero-phone  { font-size: 1rem; }

  .hero-img-wrap { max-width: 100%; height: 190px; }

  /* Buttons go full width on mobile */
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-call,
  .btn-reviews  { width: 100%; justify-content: center; }

  .sidebar { flex-direction: column; }
  .sidebar-card { min-width: unset; width: 100%; }

  .similar-spa-img { width: 58px; height: 46px; }
  .similar-spa-name { font-size: 13px; }

  .tab-nav a { padding: 11px 14px; font-size: 12.5px; }

  .section-title { font-size: 1.05rem; }

  .overview-card,
  .info-card { padding: 18px 16px; }

  .reviews-cta-inner { padding: 22px 16px; }
  .btn-visit-reviews { width: 100%; text-align: center; padding: 13px 20px; }

  footer .container { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-links { gap: 14px; }
}
