/* ─── ERROR PAGES (404 / 500) ────────────────────────────────────────────── */
.error-page { padding: 96px 0 120px; text-align: center; }
.error-container { max-width: 560px; }
.error-code { display: block; font-size: clamp(96px, 20vw, 160px); font-weight: 900; line-height: 1; color: var(--accent-dark, #c48a00); letter-spacing: -.02em; }
.error-page h1 { margin: 16px 0 10px; font-size: clamp(26px, 5vw, 36px); }
.error-page p { color: var(--muted, #6b6b6b); margin-bottom: 30px; font-size: 17px; }
.error-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── Katalog: qidiruv ───────────────────────────────────────────────────── */
.resto-search {
  display: flex;
  gap: 10px;
  flex: 1;
  max-width: 560px;
}
.resto-search-input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-size: 15px;
}
.resto-search-input:focus { outline: none; border-color: var(--accent); }
.resto-search-btn { white-space: nowrap; }

/* ─── RESTAURANT CARD ─────────────────────────────────────────────────────── */
.resto-card {
  display: block;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.resto-card:hover { transform: translateY(-3px); border-color: rgba(245,200,66,.3); }
.resto-card.is-coming-soon { cursor: default; }
.resto-card.is-coming-soon:hover { transform: none; border-color: var(--line); }

.resto-card-img-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--card2); }
.resto-card-img { width: 100%; height: 100%; object-fit: cover; }
.resto-card-img-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 48px; }

.resto-status {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}
.resto-status.open   { background: rgba(76,175,80,.2);  color: #81c784; }
.resto-status.closed { background: rgba(224,85,64,.2);  color: #e57373; }
.resto-status.soon   { background: rgba(245,200,66,.2); color: var(--accent); }

.resto-card-body { padding: 16px; }
.resto-card-name { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.resto-card-desc { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.resto-card-meta { display: flex; flex-wrap: wrap; gap: 6px; }

/* tags */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.tag-hot   { background: rgba(245,200,66,.12); color: var(--accent); }
.tag-promo { background: rgba(76,175,80,.12);  color: #81c784; }
.tag-soon  { background: rgba(245,200,66,.18); color: var(--accent); }
