/* [project]/src/app/globals.css [app-client] (css) */
*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --background: #0f0f0f;
  --surface: #1a1a1a;
  --surface-hover: #242424;
  --border: #2e2e2e;
  --text-primary: #f0f0f0;
  --text-secondary: #a0a0a0;
  --accent: #f59e0b;
  --accent-dim: #f59e0b26;
  --radius: 10px;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background-color: var(--background);
  color: var(--text-primary);
  font-family: var(--font-sans);
  min-height: 100vh;
  line-height: 1.6;
}

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

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-header {
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
  padding: 3rem 0 2rem;
}

.page-header h1 {
  letter-spacing: -.02em;
  font-size: 2rem;
  font-weight: 700;
}

.page-header p {
  color: var(--text-secondary);
  margin-top: .4rem;
  font-size: .95rem;
}

.map-container {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.map-container a {
  display: block;
  position: relative;
}

.map-image {
  object-fit: cover;
  width: 100%;
  height: auto;
  max-height: 420px;
  display: block;
}

.map-overlay {
  color: #fff;
  pointer-events: none;
  background: #000000b3;
  border-radius: 4px;
  padding: .3rem .7rem;
  font-size: .8rem;
  position: absolute;
  bottom: .75rem;
  right: .75rem;
}

.map-container a:hover .map-overlay {
  background: #000000e6;
}

.restaurant-list {
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 4rem;
  display: flex;
}

.restaurant-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  transition: background .15s, border-color .15s;
  display: flex;
}

.restaurant-card:hover {
  background: var(--surface-hover);
  border-color: #3e3e3e;
}

.restaurant-card-body {
  flex: 1;
  min-width: 0;
}

.restaurant-card-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: .2rem;
  font-size: 1.05rem;
  font-weight: 600;
  overflow: hidden;
}

.restaurant-card-address {
  color: var(--text-secondary);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: .875rem;
  overflow: hidden;
}

.restaurant-card-meta {
  flex-direction: column;
  flex-shrink: 0;
  align-items: flex-end;
  gap: .4rem;
  display: flex;
}

.rating-badge {
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 6px;
  align-items: center;
  gap: .3rem;
  padding: .2rem .6rem;
  font-size: .875rem;
  font-weight: 700;
  display: inline-flex;
}

.rating-count {
  color: var(--text-secondary);
  font-size: .78rem;
}

.price-level {
  color: var(--text-secondary);
  letter-spacing: .05em;
  font-size: .85rem;
}

.detail-header {
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
  padding: 2.5rem 0 1.5rem;
}

.back-link {
  color: var(--text-secondary);
  align-items: center;
  gap: .4rem;
  margin-bottom: 1.25rem;
  font-size: .875rem;
  transition: color .15s;
  display: inline-flex;
}

.back-link:hover {
  color: var(--text-primary);
}

.detail-header h1 {
  letter-spacing: -.02em;
  margin-bottom: .75rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.detail-meta {
  color: var(--text-secondary);
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  display: flex;
}

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

.detail-meta a:hover {
  opacity: .8;
}

.divider {
  color: var(--border);
}

.reviews-section h2 {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1.25rem;
  font-size: .8rem;
  font-weight: 600;
}

.reviews-list {
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 4rem;
  display: flex;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
}

.review-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: .6rem;
  display: flex;
}

.review-author {
  font-size: .9rem;
  font-weight: 600;
}

.review-date {
  color: var(--text-secondary);
  font-size: .8rem;
}

.review-text {
  color: var(--text-secondary);
  font-size: .9rem;
  line-height: 1.65;
}

.no-reviews {
  color: var(--text-secondary);
  padding: 1rem 0;
  font-style: italic;
}

.sync-section {
  margin: 1.5rem 0;
}

.sync-form button {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  border-radius: 6px;
  padding: .45rem 1rem;
  font-size: .85rem;
  transition: color .15s, border-color .15s;
}

.sync-form button:hover {
  color: var(--text-primary);
  border-color: #4e4e4e;
}

.error-box {
  border-radius: var(--radius);
  color: #fca5a5;
  background: #ef44441a;
  border: 1px solid #ef44444d;
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
}

/*# sourceMappingURL=src_app_globals_0p2ml0n.css.map*/