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

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #1a1a2e;
  color: #eee;
  overflow: hidden; /* prevent scroll behind the map */
}

/* ─── Layout ───────────────────────────────────────────────── */
.app-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(20, 20, 40, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 10px 16px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.app-header h1 {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  display: inline;
}

.app-header .subtitle {
  font-size: 0.78rem;
  color: #aaa;
  display: inline;
  margin-left: 8px;
}

#map {
  position: fixed;
  top: 48px;   /* below header */
  bottom: 56px; /* above search bar */
  left: 0;
  right: 0;
  z-index: 1;
}

/* ─── Legend Panel ─────────────────────────────────────────── */
#legend {
  position: fixed;
  bottom: 72px; /* 56px search bar + 16px gap */
  right: 12px;
  z-index: 1000;
  background: rgba(20, 20, 40, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  padding: 12px 14px;
  min-width: 195px;
  max-width: 240px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* ─── Legend Header (title + toggle button) ────────────────── */
.legend-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

#legend h2 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaa;
  margin-bottom: 0;
}

#legend-toggle {
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
  font-size: 1rem;
  padding: 2px 4px;
  line-height: 1;
}

#legend-toggle:hover {
  color: #fff;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 0.82rem;
  color: #ddd;
}

.legend-item em {
  color: #888;
  font-size: 0.75rem;
}

.swatch {
  display: inline-block;
  width: 22px;
  height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.swatch.blueridge        { background: rgba(74, 124, 89, 0.55); }
.swatch.valleyridge      { background: rgba(155, 122, 173, 0.55); }
.swatch.coastal          { background: rgba(70, 130, 220, 0.55); }
.swatch.piedmont         { background: rgba(200, 130, 50, 0.55); }
.swatch.neupland         { background: rgba(74, 154, 138, 0.55); }
.swatch.necoastal        { background: rgba(107, 174, 214, 0.55); }
.swatch.gulfcoastal      { background: rgba(70, 130, 220, 0.55); }
.swatch.greatlakes       { background: rgba(74, 122, 181, 0.55); }
.swatch.interiorlowlands { background: rgba(138, 125, 74, 0.55); }
.swatch.fallline {
  background: transparent;
  border: 3px solid #e84393;
  border-radius: 2px;
}

.swatch.citymarker {
  background: #fff;
  border: 2px solid #e84393;
  border-radius: 50%;
  width: 9px;
  height: 9px;
}

.swatch.gardens {
  background: #2d6a4f;
  border-color: rgba(183, 228, 199, 0.5);
}

#legend hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 10px 0;
}

/* ─── Layer Toggles ────────────────────────────────────────── */
.layer-toggles {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #ccc;
  cursor: pointer;
  /* min touch target 44px height for mobile accessibility */
  min-height: 28px;
  padding: 2px 0;
}

.toggle input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #4a9eff;
  flex-shrink: 0;
}

/* ─── Attribution ──────────────────────────────────────────── */
.attribution-note {
  font-size: 0.67rem;
  color: #666;
  line-height: 1.4;
  margin-top: 2px;
}

.attribution-note a {
  color: #778;
  text-decoration: none;
}

.attribution-note a:hover {
  text-decoration: underline;
}

/* ─── Popup styling ────────────────────────────────────────── */
.leaflet-popup-content-wrapper {
  background: rgba(20, 20, 40, 0.95);
  color: #eee;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  /* Prevent overflow on small screens */
  max-width: min(280px, calc(100vw - 24px)) !important;
}

.leaflet-popup-content {
  max-width: 100% !important;
  overflow-wrap: break-word;
}

.leaflet-popup-tip {
  background: rgba(20, 20, 40, 0.95);
}

.leaflet-popup-close-button {
  color: #aaa !important;
}

.popup-content h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.popup-content p {
  font-size: 0.8rem;
  color: #bbb;
  line-height: 1.5;
}

.popup-content .region-tag {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
}

.region-tag.coastal     { background: rgba(70, 130, 220, 0.3); color: #89b8f5; border: 1px solid rgba(70,130,220,0.4); }
.region-tag.piedmont    { background: rgba(200, 130, 50, 0.3); color: #f5c070; border: 1px solid rgba(200,130,50,0.4); }
.region-tag.blueRidge   { background: rgba(74, 124, 89, 0.3);  color: #6bc884; border: 1px solid rgba(74,124,89,0.5); }
.region-tag.valleyRidge { background: rgba(155,122,173, 0.3);  color: #c9b0e8; border: 1px solid rgba(155,122,173,0.5); }

/* ─── Native plant recommendations ────────────────────────── */

.plant-section {
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.plant-section-header {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #777;
  margin: 0 0 6px;
}

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

.plant-list li {
  padding: 3px 0;
  line-height: 1.35;
}

.plant-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #e0e0e0;
}

.plant-latin {
  font-size: 0.73rem;
  font-style: italic;
  color: #888;
  margin-left: 2px;
}

.plant-note {
  display: block;
  font-size: 0.72rem;
  color: #999;
  margin-top: 1px;
}

/* ─── Soil type profile ────────────────────────────────────── */

.soil-section {
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.soil-section-header {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #777;
  margin: 0 0 6px;
}

.soil-facts {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.soil-fact {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 6px;
  align-items: baseline;
}

.soil-label {
  font-size: 0.69rem;
  font-weight: 700;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.soil-value {
  font-size: 0.75rem;
  color: #ccc;
  line-height: 1.35;
}

/* ─── Invasive species warnings ───────────────────────────── */

.invasive-section {
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.invasive-section-header {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #c06060;
  margin: 0 0 6px;
}

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

.invasive-list li {
  padding: 3px 0;
  line-height: 1.35;
}

.invasive-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #e8c8b0;
}

.invasive-latin {
  font-size: 0.73rem;
  font-style: italic;
  color: #888;
  margin-left: 2px;
}

.invasive-note {
  display: block;
  font-size: 0.72rem;
  color: #999;
  margin-top: 1px;
}

/* ─── Planting calendar ────────────────────────────────────── */

.calendar-section {
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.calendar-section-header {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #777;
  margin: 0 0 8px;
}

.calendar-months {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cal-month {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 6px;
  align-items: start;
}

.cal-month-name {
  font-size: 0.68rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 2px;
}

.cal-month-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cal-row {
  font-size: 0.73rem;
  color: #ccc;
  line-height: 1.35;
}

.cal-row--idle {
  color: #555;
}

.cal-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 1px 4px;
  border-radius: 3px;
  margin-right: 3px;
}

.cal-label--indoor {
  background: rgba(74, 154, 255, 0.2);
  color: #7ab8f5;
  border: 1px solid rgba(74, 154, 255, 0.3);
}

.cal-label--sow {
  background: rgba(74, 180, 100, 0.2);
  color: #7ed99a;
  border: 1px solid rgba(74, 180, 100, 0.3);
}

.cal-label--transplant {
  background: rgba(220, 160, 50, 0.2);
  color: #e8c87a;
  border: 1px solid rgba(220, 160, 50, 0.3);
}

/* ─── Search Bar ───────────────────────────────────────────── */
#search-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(20, 20, 40, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#search-form {
  display: flex;
  gap: 6px;
  align-items: center;
}

#search-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #eee;
  font-size: 0.88rem;
  padding: 6px 10px;
  outline: none;
}

#search-input::placeholder { color: #666; }
#search-input:focus { border-color: rgba(74, 158, 255, 0.6); }

#locate-btn,
#search-form [type=submit] {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #ddd;
  cursor: pointer;
  font-size: 1rem;
  padding: 6px 10px;
  min-width: 36px;
}

#locate-btn:hover,
#search-form [type=submit]:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.search-status {
  font-size: 0.78rem;
  color: #aaa;
  padding: 0 2px;
  line-height: 1.3;
}

/* ─── Mobile adjustments ───────────────────────────────────── */
@media (max-width: 480px) {
  .app-header h1        { font-size: 1rem; }
  .app-header .subtitle { display: none; }

  /* Right-anchored compact panel — NOT full-width */
  #legend {
    bottom: 66px;       /* 56px search bar + 10px gap */
    right: 8px;
    left: auto;         /* removes the full-width stretch */
    max-width: 230px;
    padding: 8px 12px;
  }

  /* Body scrollable when expanded on a small screen */
  #legend-body {
    max-height: calc(100dvh - 200px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Zone-fact grid: stack vertically on narrow popup widths */
@media (max-width: 440px) {
  .zone-fact {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .zone-fact-label { font-size: 0.68rem; }
}

/* ─── Hardiness zone labels (permanent tooltips on map) ──────
   Hidden below zoom 9 via .hide-zone-labels class on map container.
   ────────────────────────────────────────────────────────────── */
.zone-label {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 4px rgba(0,0,0,1), 0 1px 3px rgba(0,0,0,0.9);
  pointer-events: none;
  white-space: nowrap;
}

/* Remove Leaflet's tooltip arrow */
.zone-label::before { display: none !important; }

/* Hide labels at low zoom */
.hide-zone-labels .zone-label { display: none !important; }

/* ─── Hardiness zone popup card ────────────────────────────── */
.zone-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 8px;
  margin-bottom: 6px;
}

.zone-popup-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
}

.zone-badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  line-height: 1.6;
}

.zone-desc {
  font-size: 0.78rem;
  color: #bbb;
  line-height: 1.45;
  margin-bottom: 8px;
}

.zone-facts {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 7px;
}

.zone-fact {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 6px;
  font-size: 0.77rem;
  line-height: 1.4;
}

.zone-fact-label {
  color: #888;
  font-size: 0.72rem;
}

.zone-fact-value {
  color: #ddd;
}

/* ─── Hardiness legend ─────────────────────────────────────── */
.hardiness-legend {
  margin-top: 6px;
}

.legend-section-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #888;
  margin-bottom: 4px;
}

.zone-swatches {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.zone-item {
  margin-bottom: 0;
}

/* ─── City marker popup ─────────────────────────────────────── */
.city-popup-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 5px;
}

.city-popup-header h3 {
  font-size: 0.95rem;
}

.city-region-badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.city-region-badge.piedmont    { background: rgba(200,130,50,0.3);  color: #f5c070; border: 1px solid rgba(200,130,50,0.4); }
.city-region-badge.coastal     { background: rgba(70,130,220,0.3);  color: #89b8f5; border: 1px solid rgba(70,130,220,0.4); }
.city-region-badge.blueRidge   { background: rgba(74,124,89,0.3);   color: #6bc884; border: 1px solid rgba(74,124,89,0.5); }
.city-region-badge.valleyRidge { background: rgba(155,122,173,0.3); color: #c9b0e8; border: 1px solid rgba(155,122,173,0.5); }

.city-river {
  font-size: 0.78rem;
  color: #89b8f5;
  font-weight: 600;
  margin-bottom: 5px;
}

.city-note {
  font-size: 0.78rem;
  color: #bbb;
  line-height: 1.45;
  margin-bottom: 8px;
}

.city-facts {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 7px;
}

.city-fact {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 6px;
  font-size: 0.77rem;
  line-height: 1.4;
}

.city-fact-label {
  color: #888;
  font-size: 0.72rem;
}

.city-fact-value {
  color: #ddd;
}

/* City hover tooltip — dark panel with pink accent border */
.city-tooltip.leaflet-tooltip {
  background: rgba(20, 20, 40, 0.92) !important;
  border: 1px solid rgba(232, 67, 147, 0.6) !important;
  border-radius: 5px !important;
  color: #fff !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  padding: 3px 8px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4) !important;
  white-space: nowrap;
}

.city-tooltip.leaflet-tooltip::before {
  border-top-color: rgba(232, 67, 147, 0.6) !important;
}

/* ─── Hardiness error notice ───────────────────────────────── */
.hardiness-error {
  font-size: 0.72rem;
  color: #f87171;   /* red-400 — visible on dark background */
  margin-top: 2px;
  line-height: 1.3;
}

/* ─── Layer interaction hints ───────────────────────────────── */
.layer-hint {
  font-size: 0.70rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 2px 0 4px;
  line-height: 1.3;
  font-style: italic;
}

/* ─── Loading spinner ──────────────────────────────────────── */
.loading-spinner {
  display: inline-block;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: #4a9eff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-left: 4px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─── Leaflet control override — dark theme ────────────────── */
.leaflet-control-zoom a {
  background: rgba(20, 20, 40, 0.92) !important;
  color: #ddd !important;
  border-color: rgba(255,255,255,0.15) !important;
}

.leaflet-control-zoom a:hover {
  background: rgba(50, 50, 80, 0.95) !important;
  color: #fff !important;
}

.leaflet-control-attribution {
  display: none; /* attribution shown in our custom panel */
}


/* ─── Detail page / hash routing ──────────────────────────────── */

/* Map view wrapper — transparent pass-through in normal layout */
#map-view {
  display: contents;
}

/* Detail view — full-screen scrollable overlay, hidden by default */
#detail-view {
  position: fixed;
  inset: 0;
  background: #1a1a2e;
  overflow-y: auto;
  z-index: 2000;
  padding: 0 0 2rem;
}

/* When detail-view is visible, body scroll is allowed */
#detail-view:not([hidden]) ~ * {
  /* nothing — detail-view is before map-view in DOM */
}

/* Header bar inside detail view */
.detail-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(20, 20, 40, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Back button */
.back-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  color: #ddd;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 6px 14px;
  transition: background 0.15s, color 0.15s;
}
.back-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Detail content container */
#detail-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 1.5rem 1rem 1rem;
}

/* Article wrapper */
article.detail-page {
  color: #ddd;
}

.detail-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.detail-zone-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 12px;
  margin-bottom: 0.75rem;
}
.detail-zone-header .detail-title {
  margin-bottom: 0;
}

.detail-zone-badge {
  font-size: 0.85rem;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 600;
  white-space: nowrap;
}

.detail-coords {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 0.5rem;
  font-family: monospace;
}

.detail-river {
  font-size: 0.95rem;
  color: #4a9eff;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.detail-region-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ccc;
  margin-bottom: 0.5rem;
}

.detail-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #bbb;
  margin-bottom: 1.25rem;
}

/* Key-value facts grid */
.detail-facts {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}

.detail-fact {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9rem;
  line-height: 1.4;
}
.detail-fact:last-child { border-bottom: none; }

.detail-fact-label {
  color: #888;
  font-weight: 500;
  flex-shrink: 0;
}
.detail-fact-value {
  color: #ddd;
}

.detail-note {
  font-size: 0.82rem;
  color: #777;
  border-left: 3px solid rgba(255, 255, 255, 0.15);
  padding-left: 10px;
  margin-top: 1.5rem;
}

/* Region tag used in detail facts */
.region-tag.blueRidge {
  background: rgba(74, 124, 89, 0.3);
  color: #6bc884;
  border: 1px solid rgba(74, 124, 89, 0.5);
}
.region-tag.valleyRidge {
  background: rgba(155, 122, 173, 0.3);
  color: #c9b0e8;
  border: 1px solid rgba(155, 122, 173, 0.5);
}

/* Override overflow for detail view — body needs to scroll */
body:has(#detail-view:not([hidden])) {
  overflow: auto;
}

/* ── Seasonal Intelligence Card ─────────────────────────── */
.seasonal-card {
  border-top: 3px solid #4a7c59;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.seasonal-title {
  font-size: 1rem;
  font-weight: 700;
  color: #b8d4c0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.75rem;
}

.seasonal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 480px) {
  .seasonal-grid {
    grid-template-columns: 1fr;
  }
}

.seasonal-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 0.6rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.seasonal-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #888;
  text-transform: uppercase;
}

.seasonal-value {
  font-size: 0.85rem;
  color: #ddd;
  line-height: 1.4;
}

.seasonal-loading {
  color: #555;
  font-style: italic;
}
