/* ── coffee.wine — Design System ─────────────────────────────────────────── */

:root {
  --c-bg: #faf8f5;
  --c-surface: #ffffff;
  --c-text: #2d2926;
  --c-muted: #8a8380;
  --c-accent: #6b3a2a;
  --c-accent-light: #f5ede8;
  --c-border: #e8e4e0;
  --c-red: #b91c1c;
  --c-green: #15803d;
  --c-orange: #c2410c;
  --c-blue: #4285F4;
  --c-heart: #e11d48;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --font-serif: Georgia, 'Times New Roman', 'Iowan Old Style', 'Palatino Linotype', ui-serif, serif;
  --font-sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', 'Noto Sans', 'Liberation Sans', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
  --max-w: 1280px;

  /* Source colors */
  --c-gold: #b8860b;
  --c-gold-light: #fef9ee;
  --c-desc-text: #57534e;
  --c-active-filter-bg: #f5f5f4;
  --c-active-filter-hover: #e7e5e4;
  --c-ws-bg: #f0f7f0;
  --c-ws-border: #b7d4b7;
  --c-ws-text: #4a7c59;
  --c-lekker: #8b6914;
  --c-lekker-bg: #fef9ee;
  --c-lekker-border: #e8d5a0;
  --c-lekker-text: #8b6914;
  --c-google: #4285F4;
  --c-google-bg: #f0f4ff;
  --c-google-border: #b3d1f2;
  --c-google-text: #3367d6;
  --c-badge-star-bg: #fef2f2;
  --c-badge-bib-bg: #fff7ed;
  --c-badge-green-bg: #f0fdf4;
  --c-badge-michelin-bg: #f5f5f4;
  --c-badge-radish-bg: #f0f7f0;
  --c-gm-badge-border: #e8d5a0;
  --c-mi-badge-border: #fecaca;
}

[data-theme="dark"] {
  --c-bg: #1a1816;
  --c-surface: #252220;
  --c-text: #e8e4e0;
  --c-muted: #a09890;
  --c-accent: #c4856e;
  --c-accent-light: #2e2420;
  --c-border: #3a3530;
  --shadow: 0 1px 3px rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.15);
  --shadow-lg: 0 4px 12px rgba(0,0,0,0.3), 0 2px 4px rgba(0,0,0,0.2);

  --c-gold: #d4a017;
  --c-gold-light: #3d2e0a;
  --c-desc-text: #a8a29e;
  --c-active-filter-bg: #333;
  --c-active-filter-hover: #444;
  --c-ws-bg: #0f2e17;
  --c-ws-border: #2d5a3a;
  --c-ws-text: #5dbb78;
  --c-lekker: #d4a017;
  --c-lekker-bg: #3d2e0a;
  --c-lekker-border: #6b5a1e;
  --c-lekker-text: #d4a017;
  --c-google: #6ea8fe;
  --c-google-bg: #1a2744;
  --c-google-border: #2c4a7c;
  --c-google-text: #6ea8fe;
  --c-badge-star-bg: #3b1515;
  --c-badge-bib-bg: #3b2008;
  --c-badge-green-bg: #0a2e14;
  --c-badge-michelin-bg: #2e2e2e;
  --c-badge-radish-bg: #0f2e17;
  --c-gm-badge-border: #6b5a1e;
  --c-mi-badge-border: #7f1d1d;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --c-bg: #1a1816;
    --c-surface: #252220;
    --c-text: #e8e4e0;
    --c-muted: #a09890;
    --c-accent: #c4856e;
    --c-accent-light: #2e2420;
    --c-border: #3a3530;
    --shadow: 0 1px 3px rgba(0,0,0,0.2), 0 1px 2px rgba(0,0,0,0.15);
    --shadow-lg: 0 4px 12px rgba(0,0,0,0.3), 0 2px 4px rgba(0,0,0,0.2);

    --c-gold: #d4a017;
    --c-gold-light: #3d2e0a;
    --c-desc-text: #a8a29e;
    --c-active-filter-bg: #333;
    --c-active-filter-hover: #444;
    --c-ws-bg: #0f2e17;
    --c-ws-border: #2d5a3a;
    --c-ws-text: #5dbb78;
    --c-lekker: #d4a017;
    --c-lekker-bg: #3d2e0a;
    --c-lekker-border: #6b5a1e;
    --c-lekker-text: #d4a017;
    --c-google: #6ea8fe;
    --c-google-bg: #1a2744;
    --c-google-border: #2c4a7c;
    --c-google-text: #6ea8fe;
    --c-badge-star-bg: #3b1515;
    --c-badge-bib-bg: #3b2008;
    --c-badge-green-bg: #0a2e14;
    --c-badge-michelin-bg: #2e2e2e;
    --c-badge-radish-bg: #0f2e17;
    --c-gm-badge-border: #6b5a1e;
    --c-mi-badge-border: #7f1d1d;
  }
}

/* ── Reset & Base ──────────────────────────────────────────────────────── */

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

body {
  font-family: var(--font-sans);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.5;
  font-size: 0.9rem;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--c-accent); }

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

/* ── Skip link ─────────────────────────────────────────────────────────── */

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-accent); color: #fff;
  padding: 0.5rem 1rem; z-index: 999;
  font-size: 0.85rem;
}
.skip-link:focus { left: 0; }

/* ── Navigation ────────────────────────────────────────────────────────── */

.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: 0 1.5rem;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav-brand {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--c-text);
}
.nav-brand:hover { color: var(--c-accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-muted);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--c-text); }

.nav-links .active { color: var(--c-text); }

.theme-toggle {
  background: none; border: none; cursor: pointer;
  color: var(--c-muted); padding: 0.25rem;
  display: flex; align-items: center;
}
.theme-toggle:hover { color: var(--c-text); }
.theme-toggle svg { width: 20px; height: 20px; }

.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--c-muted); padding: 0.25rem;
}
.hamburger svg { width: 24px; height: 24px; }

.mobile-menu {
  display: none;
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: 1rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--c-muted);
}
.mobile-menu a:hover { color: var(--c-text); }

@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ── Hero ──────────────────────────────────────────────────────────────── */

.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  color: var(--c-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-search {
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.hero-search input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: var(--c-surface);
  color: var(--c-text);
  font-size: 0.9rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.15s;
}
.hero-search input:focus {
  border-color: var(--c-accent);
}
.hero-search input::placeholder {
  color: var(--c-muted);
}

.hero-sources {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--c-muted);
}
.hero-sources a {
  color: var(--c-muted);
  transition: color 0.15s;
}
.hero-sources a:hover { color: var(--c-accent); }

/* ── Toolbar / Filters ─────────────────────────────────────────────────── */

.toolbar {
  position: sticky; top: 56px; z-index: 50;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  padding: 0.75rem 1.5rem;
}

.toolbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.toolbar select {
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: var(--c-surface);
  color: var(--c-text);
  font-size: 0.8rem;
  font-family: var(--font-sans);
  cursor: pointer;
  white-space: nowrap;
}
.toolbar select:focus { border-color: var(--c-accent); outline: none; }

.active-filters {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.5rem 1.5rem 0;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.5rem;
  background: var(--c-accent-light);
  color: var(--c-accent);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
}
.filter-pill button {
  background: none; border: none; cursor: pointer;
  color: var(--c-accent); font-size: 0.85rem;
  padding: 0; line-height: 1;
}

/* ── Card Grid ─────────────────────────────────────────────────────────── */

.card-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .card-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
  cursor: pointer;
}
.card:hover {
  border-color: var(--c-accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card-image {
  aspect-ratio: 3 / 2;
  background: var(--c-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Hide broken images gracefully — show placeholder background */
.card-image img[src=""],
.card-image img:not([src]) { display: none; }
.card-image img { min-height: 0; }
.card-image .placeholder {
  font-size: 2rem;
  color: var(--c-muted);
}
.card-fav {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(0,0,0,0.4);
  border: none;
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: transform 0.2s, color 0.2s;
  z-index: 2;
}
.card-fav svg { width: 1rem; height: 1rem; }
.card-fav:hover { transform: scale(1.15); }
.card-fav.is-fav { color: #e74c3c; }
.card-fav.is-fav svg { fill: #e74c3c; }

@keyframes fav-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}
.card-fav.pulse { animation: fav-pulse 0.3s ease; }

.card-body {
  padding: 0.75rem 1rem;
}

.card-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  line-height: 1.3;
}

.mini-dna {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.25rem;
  opacity: 0.6;
}

.card-location {
  font-size: 0.8rem;
  color: var(--c-muted);
  margin-bottom: 0.5rem;
}

.card-badges {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

.badge-michelin { background: #fef2f2; color: var(--c-red); }
.badge-bib { background: #fff7ed; color: var(--c-orange); }
.badge-green { background: #f0fdf4; color: var(--c-green); }
.badge-weresmart { background: #f0f7f0; color: var(--c-green); }
.badge-google { background: #f0f4ff; color: var(--c-blue); }
.badge-lekker { background: var(--c-accent-light); color: var(--c-accent); }
.badge-gm { background: var(--c-accent-light); color: var(--c-accent); }

[data-theme="dark"] .badge-michelin { background: #3b1515; }
[data-theme="dark"] .badge-bib { background: #3b2010; }
[data-theme="dark"] .badge-green { background: #0a2e15; }
[data-theme="dark"] .badge-weresmart { background: #0a2e15; }
[data-theme="dark"] .badge-google { background: #152040; }

.card-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-score-value {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-accent);
}

.card-score-label {
  font-size: 0.65rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Pagination ────────────────────────────────────────────────────────── */

.pagination {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.pagination a, .pagination span {
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--c-muted);
}
.pagination a:hover { border-color: var(--c-accent); color: var(--c-accent); }
.pagination .current {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
}

/* ── Place Detail ──────────────────────────────────────────────────────── */

.detail {
  max-width: 960px;
  margin: 0 auto;
  padding: 1.5rem;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-bottom: 1rem;
}
.detail-back:hover { color: var(--c-accent); }

.detail-gallery {
  display: grid;
  grid-template-columns: 1fr 100px;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.detail-main-image {
  aspect-ratio: 16 / 10;
  background: var(--c-accent-light);
  overflow: hidden;
}
.detail-main-image img {
  width: 100%; height: 100%; object-fit: cover;
}

.detail-thumbs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
}
.detail-thumbs img {
  width: 100px; height: 65px; object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.detail-thumbs img:hover,
.detail-thumbs img.active { opacity: 1; }

@media (max-width: 700px) {
  .detail-gallery { grid-template-columns: 1fr; }
  .detail-thumbs { flex-direction: row; overflow-x: auto; }
  .detail-thumbs img { width: 80px; height: 55px; }
}

.detail h1 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.detail-meta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--c-muted);
}
.detail-meta .sep { color: var(--c-border); }

.detail-section {
  padding: 1.25rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.detail-section h2 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.score-item {
  text-align: center;
  padding: 0.75rem;
  background: var(--c-bg);
  border-radius: var(--radius);
}
.score-item-value {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-accent);
}
.score-item-label {
  font-size: 0.7rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.info-label {
  font-size: 0.7rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.info-value { font-size: 0.85rem; }
.info-value a { color: var(--c-accent); }
.info-value a:hover { text-decoration: underline; }

/* ── Breadcrumbs ───────────────────────────────────────────────────────── */

.breadcrumbs {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  gap: 0.35rem;
  list-style: none;
  font-size: 0.8rem;
  color: var(--c-muted);
}
.breadcrumbs li + li::before {
  content: '\203A';
  margin-right: 0.35rem;
  color: var(--c-border);
}
.breadcrumbs a:hover { color: var(--c-accent); }

/* ── Nearby / Related ──────────────────────────────────────────────────── */

.nearby-section {
  max-width: 960px;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
}

.nearby-section h2 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.nearby-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 700px) {
  .nearby-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .nearby-grid { grid-template-columns: 1fr; }
}

/* ── Footer ────────────────────────────────────────────────────────────── */

.footer {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--c-muted);
  border-top: 1px solid var(--c-border);
  margin-top: 3rem;
}

/* ── Loading state ─────────────────────────────────────────────────────── */

.loading {
  display: flex;
  justify-content: center;
  padding: 3rem;
}

.spinner {
  width: 24px; height: 24px;
  border: 2px solid var(--c-border);
  border-top-color: var(--c-accent);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

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

/* ── Empty state ───────────────────────────────────────────────────────── */

.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--c-muted);
}
.empty-state h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--c-text);
}

/* ── Favorites button ──────────────────────────────────────────────────── */

.fav-btn {
  background: none; border: none; cursor: pointer;
  color: var(--c-muted); font-size: 1.25rem;
  padding: 0.25rem;
  transition: color 0.15s, transform 0.15s;
}
.fav-btn:hover { color: var(--c-heart); transform: scale(1.1); }
.fav-btn.active { color: var(--c-heart); }

/* ── Share button ──────────────────────────────────────────────────────── */

.share-btn {
  background: none; border: none; cursor: pointer;
  color: var(--c-muted); font-size: 0.85rem;
  display: inline-flex; align-items: center; gap: 0.3rem;
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
.share-btn:hover { background: var(--c-accent-light); color: var(--c-accent); }

/* ── Utility ───────────────────────────────────────────────────────────── */

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Favorites Hub ──────────────────────────────────────────────────────── */

.page-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

/* Collection DNA */
.collection-dna {
  padding: 1.5rem 0;
}

.collection-dna-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.collection-dna-chart {
  flex-shrink: 0;
}

.collection-dna-radar {
  display: block;
}

.collection-dna-insight {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.5;
  max-width: 320px;
  font-style: italic;
}

/* Action buttons */
.fav-actions {
  display: flex;
  gap: 0.75rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--c-surface);
  color: var(--c-text);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.action-btn:hover:not([disabled]) {
  border-color: var(--c-accent);
  background: var(--c-accent-light);
}

.action-btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Favorites toolbar */
.fav-toolbar {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0;
}

.fav-toolbar select {
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: var(--c-surface);
  color: var(--c-text);
  font-size: 0.8125rem;
}

/* Compare selection mode */
.compare-selecting .card {
  cursor: pointer;
  transition: outline 0.15s;
}

.compare-selecting .card.compare-selected {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

/* Recommendations section */
.recommendations {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-border);
}

.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
