@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

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

:root {
  --bg: #f5f1ea;
  --surface: #fffcf8;
  --surface-2: #faf7f2;
  --text: #2c2a26;
  --text-muted: #7a746c;
  --border: #e8e2d8;
  --accent: #3d4a5c;
  --accent-soft: #5c6b7a;
  --shadow: 0 2px 16px rgba(44, 42, 38, 0.06);
  --radius: 16px;
  --radius-sm: 12px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --max-w: 440px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern' 1, 'liga' 1;
  min-height: 100vh;
}

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

a { color: inherit; text-decoration: none; }

/* ── App shell (phone-width column) ── */
.app {
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg);
  padding-bottom: calc(24px + var(--safe-bottom));
}

/* ── Home header ── */
.home-top {
  padding: 28px 24px 0;
  text-align: center;
}

.home-logo img {
  height: 42px;
  width: auto;
  margin: 0 auto 28px;
  object-fit: contain;
}

.welcome-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 10vw, 3.25rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 10px;
}

.welcome-sub {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 300px;
  margin: 0 auto;
}

.hero-image {
  margin: 28px 24px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

/* ── Menu list (reference style) ── */
.menu-list {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: border-color 0.2s, transform 0.15s;
}

.menu-row:hover {
  border-color: #d4cdc2;
  transform: translateY(-1px);
}

.menu-row__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.menu-row__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}

.menu-row__icon--spa {
  font-size: 20px;
  color: var(--text);
}

.menu-row__text {
  flex: 1;
  min-width: 0;
}

.menu-row__text strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 3px;
}

.menu-row__text span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  line-height: 1.45;
}

.menu-row__chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  opacity: 0.5;
}

.menu-row__chevron svg {
  width: 18px;
  height: 18px;
}

/* ── Subpage header ── */
.page-header {
  padding: 16px 20px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-back {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  flex-shrink: 0;
  transition: background 0.2s;
}

.page-back:hover { background: var(--surface-2); }

.page-back svg { width: 20px; height: 20px; }

.page-intro {
  padding: 20px 24px 8px;
}

.page-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 7vw, 2.35rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.15;
}

.page-intro p {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  line-height: 1.55;
}

.page-body {
  padding: 12px 20px 32px;
}

/* ── Info rows (Things to Know style) ── */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.info-item {
  display: flex;
  gap: 14px;
  padding: 18px 18px;
  border-bottom: 1px solid var(--border);
}

.info-item:last-child { border-bottom: none; }

.info-item__icon {
  flex-shrink: 0;
  width: 24px;
  padding-top: 2px;
  color: var(--text);
}

.info-item__icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.75;
}

.info-item__content strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.info-item__content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.info-item__content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Place / activity rows (thumbnail list) ── */
.place-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.place-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: border-color 0.2s;
  width: 100%;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

a.place-row:active {
  transform: scale(0.99);
}

.place-row:hover { border-color: #d4cdc2; }

.place-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #e8e2d8 0%, #d9d2c6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-soft);
  font-size: 20px;
}

.place-thumb svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.75;
}

.place-info {
  flex: 1;
  min-width: 0;
}

.place-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.place-info span {
  font-size: 12px;
  color: var(--text-muted);
}

.place-chevron {
  color: var(--accent-soft);
  opacity: 0.85;
}

.place-chevron svg { width: 18px; height: 18px; }

/* Delivery services note (restaurants page) */
.delivery-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  margin-bottom: 18px;
  box-shadow: var(--shadow);
  text-align: center;
}

.delivery-note__lead {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.delivery-note__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px 26px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.delivery-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}

.delivery-logo img {
  display: block;
  width: auto;
  object-fit: contain;
}

.delivery-logo--asap img { height: 30px; }
.delivery-logo--sixty60 img { height: 26px; }
.delivery-logo--mrd img { height: 40px; }

.delivery-note__braai {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.55;
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  text-align: left;
}

.delivery-note__braai-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--accent-soft);
}

.delivery-note__braai-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.75;
}

/* Expanded detail panel */
.place-detail {
  display: none;
  padding: 12px 16px 16px;
  margin-top: -10px;
  margin-bottom: 4px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.place-detail.open { display: block; }

.place-detail p { margin-bottom: 8px; }

.place-detail a {
  color: var(--accent);
  font-weight: 500;
}

/* ── Forms ── */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow);
}

.form-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-soft);
}

.form-group textarea { resize: vertical; min-height: 96px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 14px 22px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--text);
  color: var(--surface);
  width: 100%;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  width: 100%;
}

.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.form-msg {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  display: none;
}

.form-msg.success {
  display: block;
  background: #eef5ee;
  color: #3d5c3d;
}

.form-msg.error {
  display: block;
  background: #faf0ee;
  color: #8b4540;
}

.menu-section {
  margin-bottom: 24px;
}

.menu-section h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.menu-section p,
.menu-section ol {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.menu-section ol {
  padding-left: 1.2rem;
  margin-top: 10px;
}

.menu-section li { margin-bottom: 8px; }

.menu-section li strong { color: var(--text); }

/* ── Bar menu ── */
.bar-menu__tagline {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-soft);
  text-align: center;
  margin-bottom: 4px;
}

.bar-menu__section {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.bar-menu__section:first-of-type {
  margin-top: 14px;
  padding-top: 0;
  border-top: none;
}

.bar-menu__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.bar-menu__heading svg {
  width: 16px;
  height: 16px;
  color: var(--accent-soft);
  stroke-width: 1.75;
}

.bar-menu__subnote {
  font-size: 12px;
  color: var(--text-muted);
  margin: -4px 0 8px;
  font-style: italic;
}

.bar-price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bar-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.bar-price-row:last-child {
  border-bottom: none;
}

.bar-price-row__name {
  flex: 1;
  min-width: 0;
  color: var(--text);
  line-height: 1.45;
}

.bar-price-row__name em {
  font-style: normal;
  color: var(--text-muted);
  font-size: 12px;
}

.bar-price-row__price {
  flex-shrink: 0;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.bar-menu__note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-top: 16px;
  padding: 12px 10px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  text-align: center;
}

.bar-menu__footnote {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

/* ── Spa price list ── */
.spa-menu {
  margin-top: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px 20px;
  box-shadow: var(--shadow);
}

.spa-menu__tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  text-align: center;
  margin-bottom: 6px;
}

.spa-menu__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.spa-menu__section {
  margin-bottom: 20px;
}

.spa-menu__section:last-child {
  margin-bottom: 0;
}

.spa-menu__heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.spa-menu__heading svg {
  width: 16px;
  height: 16px;
  color: var(--accent-soft);
  stroke-width: 1.75;
}

.spa-price-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.spa-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.spa-price-row:last-child {
  border-bottom: none;
}

.spa-price-row__name {
  flex: 1;
  min-width: 0;
  color: var(--text);
  line-height: 1.45;
}

.spa-price-row__name em {
  display: inline;
  font-style: normal;
  color: var(--text-muted);
  font-size: 12px;
}

.spa-price-row__price {
  flex-shrink: 0;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.spa-menu__note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.55;
  padding: 12px 10px;
  margin-bottom: 20px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.spa-package {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.spa-package:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spa-package__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.spa-package__header strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.spa-package__price {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.spa-package p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 4px;
}

.spa-package__duration {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.spa-day-package {
  padding-top: 4px;
  border-top: 1px solid var(--border);
}

.spa-day-package__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  text-align: center;
  margin-bottom: 8px;
}

.spa-day-package__intro {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.55;
  margin-bottom: 14px;
}

.spa-session {
  margin-bottom: 16px;
}

.spa-session:last-child {
  margin-bottom: 0;
}

.spa-session__title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 10px;
}

.spa-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid var(--border);
  margin-left: 6px;
}

.spa-timeline__item {
  display: flex;
  gap: 10px;
  padding: 0 0 12px 14px;
  position: relative;
}

.spa-timeline__item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 2px solid var(--surface);
}

.spa-timeline__item:last-child {
  padding-bottom: 0;
}

.spa-timeline__time {
  flex-shrink: 0;
  width: 38px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-soft);
  line-height: 1.4;
  padding-top: 1px;
}

.spa-timeline__content {
  flex: 1;
  min-width: 0;
}

.spa-timeline__content strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 2px;
}

.spa-timeline__content p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* ── Footer ── */
.site-footer {
  padding: 28px 24px 20px;
  text-align: center;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.site-footer p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

.site-footer strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 6px;
}

.site-footer a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text);
  font-size: 17px;
  transition: background 0.2s;
}

.footer-social a:hover { background: var(--surface-2); }

.footer-note {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 20px;
  line-height: 1.5;
}

/* ── FAB WhatsApp ── */
.fab-whatsapp {
  position: fixed;
  bottom: calc(20px + var(--safe-bottom));
  right: max(20px, calc(50% - var(--max-w) / 2 + 20px));
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 50;
  transition: transform 0.2s;
}

.fab-whatsapp:hover {
  transform: scale(1.06);
  color: white;
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 500px) {
  .app {
    box-shadow: 0 0 60px rgba(44, 42, 38, 0.08);
    margin-top: 24px;
    margin-bottom: 24px;
    border-radius: 24px;
    overflow: hidden;
  }

  body { background: #ebe6de; }
}

/* ── Weather ── */
.weather-loading,
.weather-error {
  text-align: center;
  padding: 20px 0;
  color: var(--text-muted);
  font-size: 14px;
}

.weather-error .btn { margin-top: 14px; max-width: 200px; margin-left: auto; margin-right: auto; }

.weather-skeleton {
  background: linear-gradient(90deg, var(--surface-2) 25%, var(--border) 50%, var(--surface-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
}

.weather-skeleton--hero { height: 180px; }
.weather-skeleton--row { height: 48px; }

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.weather-now {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}

.weather-now__icon {
  color: var(--accent);
  margin-bottom: 8px;
}

.weather-now__icon svg {
  width: 56px;
  height: 56px;
  stroke-width: 1.5;
}

.weather-now__temp {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  color: var(--text);
  margin-bottom: 6px;
}

.weather-now__label {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.weather-now__updated {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.weather-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.weather-stat__label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.weather-stat__value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.weather-section {
  margin-bottom: 16px;
}

.weather-heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  padding-left: 4px;
}

.hourly-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hourly-strip::-webkit-scrollbar { display: none; }

.hourly-item {
  flex: 0 0 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}

.hourly-time {
  font-size: 11px;
  color: var(--text-muted);
}

.hourly-icon {
  color: var(--accent);
}

.hourly-icon svg {
  width: 22px;
  height: 22px;
}

.hourly-temp {
  font-size: 14px;
  font-weight: 600;
}

.forecast-list {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.forecast-row {
  display: grid;
  grid-template-columns: 72px 36px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.forecast-row:last-child { border-bottom: none; }

.forecast-day {
  font-size: 14px;
  font-weight: 600;
}

.forecast-icon {
  color: var(--accent);
  display: flex;
  justify-content: center;
}

.forecast-icon svg {
  width: 22px;
  height: 22px;
}

.forecast-rain {
  font-size: 12px;
  color: var(--accent-soft);
  text-align: right;
}

.forecast-temps {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  min-width: 72px;
}

.forecast-high {
  font-size: 14px;
  font-weight: 600;
}

.forecast-low {
  font-size: 14px;
  color: var(--text-muted);
}
