/* ============================================
   DESIGN SYSTEM — Bento Catalog
   ============================================ */

/* ---- Design Tokens ---- */
:root {
  /* Colors - Light */
  --color-primary: #6366f1;
  --color-primary-hover: #4f46e5;
  --color-primary-soft: rgba(99, 102, 241, 0.12);
  --color-accent: #f59e0b;
  --color-accent-soft: rgba(245, 158, 11, 0.15);

  --color-bg: #f3f4f6;
  --color-surface: #ffffff;
  --color-surface-hover: #f9fafb;
  --color-surface-raised: #ffffff;

  --color-text: #111827;
  --color-text-secondary: #6b7280;
  --color-text-muted: #9ca3af;
  --color-text-inverse: #ffffff;

  --color-border: #e5e7eb;
  --color-border-hover: #d1d5db;
  --color-divider: rgba(0,0,0,0.06);

  --color-success: #10b981;
  --color-success-soft: rgba(16, 185, 129, 0.12);
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-error-soft: rgba(239, 68, 68, 0.12);

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.08), 0 4px 10px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.06);
  --shadow-glow: 0 0 0 3px var(--color-primary-soft);
  --shadow-glow-error: 0 0 0 3px var(--color-error-soft);

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-2xl: 28px;
  --radius-full: 9999px;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;

  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;

  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --duration-slow: 400ms;

  /* Layout */
  --header-height: 64px;
  --content-max: 1280px;
  --bento-gap: 16px;
}

/* ---- Dark Theme ---- */
[data-theme="dark"] {
  --color-bg: #0f1117;
  --color-surface: #1a1d27;
  --color-surface-hover: #22263a;
  --color-surface-raised: #242837;

  --color-text: #f3f4f6;
  --color-text-secondary: #9ca3af;
  --color-text-muted: #6b7280;
  --color-text-inverse: #111827;

  --color-border: #2d3148;
  --color-border-hover: #3d4260;
  --color-divider: rgba(255,255,255,0.06);

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.2);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.3), 0 2px 4px rgba(0,0,0,0.2);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.4), 0 4px 10px rgba(0,0,0,0.2);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.5), 0 8px 20px rgba(0,0,0,0.3);

  --color-primary-soft: rgba(99, 102, 241, 0.18);
  --color-accent-soft: rgba(245, 158, 11, 0.2);
  --color-success-soft: rgba(16, 185, 129, 0.18);
  --color-error-soft: rgba(239, 68, 68, 0.18);
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
  transition: background var(--duration-normal) var(--ease-out),
              color var(--duration-normal) var(--ease-out);
}

a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ---- Layout Shell ---- */
.app-shell {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  padding-top: calc(var(--header-height) + var(--space-lg));
  padding-bottom: var(--space-3xl);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--color-border-hover);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--color-text-muted); }

/* ---- Utility Classes ---- */
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

/* ============================================
   COMPONENTS
   ============================================ */

/* ---- Header ---- */
.app-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-height);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background var(--duration-normal) var(--ease-out),
              border-color var(--duration-normal) var(--ease-out);
}
.header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}
.header-logo {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-primary), #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header-nav { display: flex; gap: var(--space-xs); align-items: center; }
.header-nav a, .header-nav button {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-secondary);
  background: none;
  border: none;
  transition: all var(--duration-fast) var(--ease-out);
}
.header-nav a:hover, .header-nav button:hover,
.header-nav a.active, .header-nav button.active {
  color: var(--color-text);
  background: var(--color-bg);
}
.header-nav a.active, .header-nav button.active {
  background: var(--color-primary-soft);
  color: var(--color-primary);
}
.theme-toggle {
  width: 36px; height: 36px; padding: 0 !important;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem; border-radius: var(--radius-full) !important;
  margin-left: var(--space-sm);
}

/* ---- Bento Grid ---- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--bento-gap);
  padding: var(--space-lg) 0;
}
.bento-grid.cities { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.bento-grid.categories { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.bento-grid.establishments { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; }
}

/* ---- Card ---- */
.bento-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.bento-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-border-hover);
}
.bento-card:active { transform: translateY(0); }
.bento-card:focus-visible {
  outline: none;
  box-shadow: var(--shadow-glow);
}

/* Card variants */
.bento-card.city-card { padding: var(--space-md) var(--space-lg); }
.bento-card.city-card .card-city-name {
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: 2px;
}
.bento-card.city-card .card-city-count {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.bento-card.category-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: var(--space-sm); padding: var(--space-xl) var(--space-md);
}
.bento-card.category-card .card-cat-icon {
  font-size: 2rem; color: var(--color-primary);
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-primary-soft);
  border-radius: var(--radius-md);
}
.bento-card.category-card .card-cat-name {
  font-weight: var(--weight-semibold); font-size: var(--text-base);
}
.bento-card.category-card .card-cat-desc {
  font-size: var(--text-sm); color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.bento-card.est-card {
  display: flex; flex-direction: column; gap: var(--space-sm);
}
.est-card-header {
  display: flex; align-items: flex-start; gap: var(--space-md);
}
.est-card-image-wrap {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  background: var(--color-bg);
}
.est-card-image {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; top: 0; left: 0;
}
.est-card-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted);
  font-size: 1.5rem;
}
.est-card-info { flex: 1; min-width: 0; }
.est-card-name {
  font-weight: var(--weight-semibold); font-size: var(--text-base);
  line-height: var(--leading-tight);
}
.est-card-category {
  font-size: var(--text-xs); color: var(--color-primary);
  font-weight: var(--weight-medium); margin-top: 2px;
}
.est-card-address {
  font-size: var(--text-sm); color: var(--color-text-secondary);
}
.est-card-meta {
  display: flex; gap: var(--space-md); align-items: center;
  flex-wrap: wrap; font-size: var(--text-sm); color: var(--color-text-secondary);
}
.est-card-rating {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: var(--weight-semibold); color: var(--color-accent);
}

/* ---- Badge ---- */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs); font-weight: var(--weight-medium);
  white-space: nowrap;
}
.badge-primary { background: var(--color-primary-soft); color: var(--color-primary); }
.badge-success { background: var(--color-success-soft); color: var(--color-success); }
.badge-accent { background: var(--color-accent-soft); color: var(--color-accent); }
.badge-muted { background: var(--color-bg); color: var(--color-text-secondary); }
.badge-open {
  background: var(--color-success-soft); color: var(--color-success);
}
.badge-closed {
  background: var(--color-error-soft); color: var(--color-error);
}

/* ---- Button ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: var(--weight-medium);
  border: none;
  transition: all var(--duration-fast) var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary); color: var(--color-text-inverse);
}
.btn-primary:hover { background: var(--color-primary-hover); }
.btn-secondary {
  background: var(--color-bg); color: var(--color-text);
}
.btn-secondary:hover { background: var(--color-border); }
.btn-outline {
  background: transparent; color: var(--color-text);
  border: 1px solid var(--color-border);
}
.btn-outline:hover { border-color: var(--color-border-hover); background: var(--color-bg); }
.btn:disabled {
  opacity: 0.4; cursor: not-allowed; pointer-events: none;
}

/* ---- Inputs ---- */
.search-bar {
  position: relative; width: 100%; max-width: 480px;
}
.search-bar input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: var(--text-base);
  transition: all var(--duration-fast) var(--ease-out);
  outline: none;
}
.search-bar input::placeholder { color: var(--color-text-muted); }
.search-bar input:focus {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
}
.search-bar .search-icon {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--color-text-muted); font-size: 1.1rem;
  pointer-events: none;
}

.filter-select {
  padding: 10px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: var(--text-sm);
  outline: none; cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.filter-select:focus {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
}

/* ---- Filters Row ---- */
.filters-row {
  display: flex; gap: var(--space-sm); align-items: center;
  flex-wrap: wrap; margin-bottom: var(--space-lg);
}

/* ---- Chip ---- */
.chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  background: var(--color-bg);
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
}

/* ---- Section Header ---- */
.section-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--space-md);
  margin-bottom: var(--space-sm);
}
.section-title {
  font-size: var(--text-2xl); font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: var(--text-sm); color: var(--color-text-secondary);
  margin-top: 4px;
}

/* ---- Back Button ---- */
.back-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  color: var(--color-text-secondary);
  font-size: var(--text-sm); font-weight: var(--weight-medium);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  margin-bottom: var(--space-lg);
}
.back-btn:hover {
  color: var(--color-text);
  border-color: var(--color-border-hover);
  background: var(--color-surface-hover);
}

/* ---- Empty State ---- */
.empty-state {
  text-align: center; padding: var(--space-3xl) var(--space-lg);
}
.empty-state .empty-icon {
  font-size: 3rem; margin-bottom: var(--space-md);
  opacity: 0.3;
}
.empty-state .empty-title {
  font-size: var(--text-lg); font-weight: var(--weight-semibold);
  color: var(--color-text-secondary); margin-bottom: var(--space-xs);
}
.empty-state .empty-desc {
  font-size: var(--text-sm); color: var(--color-text-muted);
}

/* ---- Loading ---- */
.loading-spinner {
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-3xl);
  color: var(--color-text-muted);
}
.loading-spinner::after {
  content: '';
  width: 32px; height: 32px;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Section Transitions ---- */
.fade-enter-active, .fade-leave-active {
  transition: opacity var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
}
.fade-enter-from, .fade-leave-to {
  opacity: 0;
  transform: translateY(8px);
}

/* ============================================
   DETAIL PAGE
   ============================================ */

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-lg);
  align-items: start;
}
@media (max-width: 900px) {
  .detail-layout { grid-template-columns: 1fr; }
}

.detail-main-col { display: flex; flex-direction: column; gap: var(--space-lg); }
.detail-side-col { display: flex; flex-direction: column; gap: var(--space-lg); }

.detail-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.detail-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: var(--space-md); flex-wrap: wrap;
}
.detail-name {
  font-size: var(--text-2xl); font-weight: var(--weight-bold);
  letter-spacing: -0.02em; line-height: var(--leading-tight);
}
.detail-rating-row {
  display: flex; align-items: center; gap: var(--space-sm);
  margin-top: var(--space-xs);
}
.detail-rating-value {
  font-weight: var(--weight-bold); color: var(--color-accent);
  font-size: var(--text-lg);
}
.detail-rating-count {
  font-size: var(--text-sm); color: var(--color-text-muted);
}
.detail-section-title {
  font-size: var(--text-base); font-weight: var(--weight-semibold);
  margin-bottom: var(--space-sm);
  display: flex; align-items: center; gap: var(--space-sm);
}

/* ---- Gallery ---- */
.gallery-main-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/10;
  cursor: pointer;
}
.gallery-main-wrap img {
  width: 100%; height: 100%; object-fit: contain;
}
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,0.5); color: #fff; border: none;
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  z-index: 5; transition: background var(--duration-fast);
}
.gallery-nav:hover { background: rgba(0,0,0,0.75); }
.gallery-nav.prev { left: 12px; }
.gallery-nav.next { right: 12px; }
.gallery-counter {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.6); color: #fff; padding: 4px 12px;
  border-radius: var(--radius-full); font-size: var(--text-xs);
  z-index: 5;
}
.gallery-thumbs {
  display: flex; gap: 8px; overflow-x: auto;
  padding: var(--space-sm) 0; scroll-behavior: smooth;
}
.gallery-thumbs::-webkit-scrollbar { height: 4px; }
.gallery-thumb {
  width: 64px; height: 64px; border-radius: var(--radius-xs);
  overflow: hidden; flex-shrink: 0; cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--duration-fast);
  opacity: 0.6;
}
.gallery-thumb.active {
  border-color: var(--color-primary);
  opacity: 1;
}
.gallery-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ---- Lightbox ---- */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.lightbox-overlay img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; border-radius: var(--radius-sm);
}
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.15); color: #fff;
  border: none; font-size: 1.5rem; display: flex;
  align-items: center; justify-content: center;
  cursor: pointer; z-index: 10;
  transition: background var(--duration-fast);
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ---- Features ---- */
.features-wrap {
  display: flex; flex-wrap: wrap; gap: 6px;
}

/* ---- Hours ---- */
.hours-list {
  list-style: none; display: flex; flex-direction: column; gap: 4px;
}
.hours-item {
  display: flex; justify-content: space-between;
  padding: 6px 0; font-size: var(--text-sm);
  border-bottom: 1px solid var(--color-divider);
}
.hours-item:last-child { border-bottom: none; }
.hours-item.today {
  font-weight: var(--weight-semibold); color: var(--color-primary);
}
.hours-day { color: var(--color-text-secondary); }
.hours-time { font-variant-numeric: tabular-nums; }

/* ---- Menu ---- */
.menu-category { margin-bottom: var(--space-md); }
.menu-category > summary {
  font-weight: var(--weight-semibold); cursor: pointer;
  padding: var(--space-sm) 0; font-size: var(--text-base);
  display: flex; align-items: center; gap: var(--space-sm);
  list-style: none;
}
.menu-category > summary::-webkit-details-marker { display: none; }
.menu-category > summary::before {
  content: '▸'; font-size: 0.7rem; transition: transform var(--duration-fast);
}
.menu-category[open] > summary::before { transform: rotate(90deg); }
.menu-item-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 4px 0 4px var(--space-lg); font-size: var(--text-sm);
  border-bottom: 1px dotted var(--color-divider);
}
.menu-item-name { color: var(--color-text); }
.menu-item-price {
  color: var(--color-text-secondary); font-weight: var(--weight-medium);
  white-space: nowrap;
}

/* ---- Social Icons ---- */
.social-icons-row { display: flex; gap: var(--space-sm); flex-wrap: wrap; }
.social-icon-link {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-full);
  background: var(--color-bg); color: var(--color-text-secondary);
  transition: all var(--duration-fast) var(--ease-out);
}
.social-icon-link:hover {
  background: var(--color-primary-soft); color: var(--color-primary);
}
.social-icon-link svg { width: 20px; height: 20px; fill: currentColor; }

/* ---- Contact ---- */
.contact-row {
  display: flex; align-items: flex-start; gap: var(--space-sm);
  padding: var(--space-sm) 0; font-size: var(--text-sm);
}
.contact-row label {
  color: var(--color-text-muted); font-weight: var(--weight-medium);
  min-width: 60px; flex-shrink: 0;
}
.contact-row a { color: var(--color-primary); word-break: break-all; }

/* ---- Description ---- */
.detail-description-text {
  font-size: var(--text-sm); line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  white-space: pre-line;
}

/* ---- Toast / Notification ---- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--color-text); color: var(--color-text-inverse);
  padding: 12px 24px; border-radius: var(--radius-full);
  font-size: var(--text-sm); font-weight: var(--weight-medium);
  z-index: 200; box-shadow: var(--shadow-lg);
  transition: all var(--duration-normal) var(--ease-out);
}
.toast-enter-active { transition: all var(--duration-normal) var(--ease-out); }
.toast-leave-active { transition: all var(--duration-normal) var(--ease-in-out); }
.toast-enter-from, .toast-leave-to { opacity: 0; transform: translateX(-50%) translateY(16px); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .header-logo { font-size: var(--text-base); }
  .header-nav a span.nav-label { display: none; }
  .section-title { font-size: var(--text-xl); }
  .filters-row { flex-direction: column; align-items: stretch; }
  .search-bar { max-width: 100%; }
}
