/* ============================================================
   public/css/style.css — Hotel Guest App
   Mobile-first, светлая тема в духе wireframe-макета
   ============================================================ */

/* ── Переменные ── */
:root {
  --bg:          #fafafa;
  --bg-card:     #ffffff;
  --bg-card2:    #f3f4f6;
  --border:      #e5e7eb;
  --accent:      #111827;
  --accent-dark: #000000;
  --accent2:     #374151;
  --text:        #111827;
  --text-muted:  #6b7280;
  --text-dim:    #9ca3af;
  --success:     #15803d;
  --error:       #dc2626;
  --warning:     #ca8a04;
  --radius:      14px;
  --radius-sm:   8px;
  --shadow:      0 1px 3px rgba(17, 24, 39, 0.06);
  --nav-h:       60px;
  --header-h:    54px;
  --font:        'Inter', system-ui, sans-serif;
}

/* ── SVG-иконки (линейные) ── */
.icon {
  display: block;
  flex-shrink: 0;
  color: var(--text-muted);
}
.icon--nav { width: 22px; height: 22px; }
.bnav-item.active .icon { color: var(--accent); }
.icon--header { width: 22px; height: 22px; color: var(--text); }
.cart-btn.has-items .icon--header { color: var(--accent); }
.icon--card { width: 26px; height: 26px; color: var(--text-dim); }
.home-card--accent .icon--card { color: var(--accent); }
.icon--reception { width: 22px; height: 22px; color: var(--text-dim); }
.icon--placeholder { width: 32px; height: 32px; color: var(--text-dim); margin: auto; }
.icon--empty { width: 56px; height: 56px; color: var(--text-dim); margin: 0 auto; }
.icon--meta { width: 16px; height: 16px; flex-shrink: 0; color: var(--text-dim); }
.icon--activity { width: 28px; height: 28px; color: var(--text-dim); }
.icon--success { width: 56px; height: 56px; color: var(--success); stroke-width: 1.5; }
.icon--copy { width: 18px; height: 18px; display: block; margin: 0 auto; }
.copy-done { font-size: 0.72rem; font-weight: 600; color: inherit; }

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
  padding-top: var(--header-h);
  padding-bottom: calc(var(--nav-h) + env(safe-area-inset-bottom, 0px));
  line-height: 1.6;
}

a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ── Splash loader (главная) ── */
.app-loader {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.app-loader--hidden { display: none; }
.app-loader--hide { opacity: 0; visibility: hidden; pointer-events: none; }
.app-loader-inner { text-align: center; padding: 2rem; max-width: 320px; }
.app-loader-mark { margin-bottom: 1.25rem; }
.app-loader-logo {
  width: 88px; height: auto; max-height: 100px; margin: 0 auto 0.75rem;
  object-fit: contain; display: block;
}
.app-loader-brand {
  font-size: 1.05rem; font-weight: 700; color: var(--text);
}
.app-loader-tag {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-muted); margin-top: 0.25rem;
}
.app-loader-welcome {
  font-size: 1.05rem; font-weight: 600; color: var(--text-muted);
  margin-bottom: 1rem;
}
.app-loader-bar {
  height: 4px; background: var(--border); border-radius: 4px; overflow: hidden;
}
.app-loader-progress {
  display: block; height: 100%; width: 0;
  background: var(--accent);
  border-radius: 4px;
  animation: loader-progress 1.1s ease forwards;
}
@keyframes loader-progress {
  from { width: 0; }
  to { width: 100%; }
}

/* ── Header ── */
.app-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; gap: .75rem;
  height: 100%; padding: 0 1rem;
}
.header-brand {
  display: flex; align-items: center; gap: .65rem;
  font-weight: 600; font-size: 0.92rem; color: var(--text);
  text-decoration: none; flex: 1; min-width: 0;
}
.brand-logo {
  height: 34px; width: auto; max-width: 100px; object-fit: contain;
  flex-shrink: 0; border-radius: 6px;
}
.brand-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; letter-spacing: -0.02em; }
.header-room { flex-shrink: 0; }
.room-badge {
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: 20px; padding: .25rem .75rem;
  font-size: .75rem; color: var(--text-muted); white-space: nowrap;
}
.cart-btn {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border);
  text-decoration: none; transition: background .2s, border-color .2s;
  box-shadow: none;
}
.cart-btn.has-items { border-color: var(--accent); }
.cart-btn:hover { background: var(--bg-card2); text-decoration: none; }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--accent); color: #fff;
  border-radius: 50%; width: 18px; height: 18px;
  font-size: .65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ── Flash messages ── */
.flash {
  padding: .75rem 1rem; font-size: .9rem; font-weight: 500;
  text-align: center; animation: slideDown .3s ease;
}
.flash--success { background: #dcfce7; color: #166534; border-bottom: 1px solid #bbf7d0; }
.flash--error   { background: #fee2e2; color: #991b1b; border-bottom: 1px solid #fecaca; }
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

/* ── Main content ── */
.main-content { max-width: 480px; margin: 0 auto; padding: 1rem 1rem 2rem; }

/* ── Bottom Nav ── */
.bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  height: calc(var(--nav-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  display: flex;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: none;
}
.bnav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 4px; position: relative;
  color: var(--text-muted); text-decoration: none; font-size: .62rem;
  font-weight: 500;
  padding: .45rem 0; transition: color .2s;
}
.bnav-item.active, .bnav-item:hover { color: var(--accent); text-decoration: none; }
.bnav-badge {
  position: absolute; top: 4px; right: calc(50% - 18px);
  background: var(--accent); color: #fff;
  border-radius: 50%; width: 16px; height: 16px;
  font-size: .6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ── Page header ── */
.page-header { margin-bottom: 1.25rem; }
.page-title  { font-size: 1.5rem; font-weight: 700; }
.page-subtitle { color: var(--text-muted); font-size: .9rem; margin-top: .25rem; }

/* ─────────────── HOME ─────────────── */
.home-hero {
  background: var(--bg-card);
  border-radius: var(--radius); padding: 1.75rem 1.25rem;
  margin-bottom: 1.25rem; text-align: center;
  border: 1px solid var(--border);
  box-shadow: none;
}
.hero-logo {
  width: 64px; height: auto; max-height: 72px; margin: 0 auto 1rem;
  object-fit: contain; display: block;
}
.hero-title    { font-size: 1.35rem; font-weight: 700; color: var(--text); letter-spacing: -0.03em; }
.hero-room     { color: var(--text-muted); margin-top: .5rem; }
.hero-subtitle { color: var(--text-muted); margin-top: .5rem; }
.hero-address  { color: var(--text-dim); font-size: .8rem; margin-top: .25rem; }

.home-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
  margin-bottom: 1.25rem;
}
.home-card {
  display: flex; align-items: center; gap: .85rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 0.95rem 1rem;
  text-decoration: none; transition: border-color .15s, background .15s;
  position: relative; overflow: hidden;
  box-shadow: none;
}
.home-card:hover {
  border-color: #d1d5db;
  background: #fafafa;
  text-decoration: none;
}
.home-card--accent {
  grid-column: 1/-1;
  border-color: var(--accent);
  background: var(--bg-card);
}
.home-card--accent:hover { background: #fafafa; }
.card-body { flex: 1; min-width: 0; }
.card-title { font-size: .95rem; font-weight: 600; color: var(--text); }
.card-desc  { font-size: .75rem; color: var(--text-muted); margin-top: 2px; }
.card-arrow { color: var(--text-dim); font-size: 1.4rem; flex-shrink: 0; }

.reception-bar {
  display: flex; align-items: center; gap: .75rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem;
  font-size: .9rem;
  box-shadow: none;
}
.reception-bar a { color: var(--accent); font-weight: 600; text-decoration: none; }
.reception-bar a:hover { text-decoration: underline; }
.reception-bar strong { display: block; color: var(--text-muted); font-size: .75rem; margin-bottom: 2px; }

/* ─────────────── BUFFET ─────────────── */
.buffet-schedule {
  display: flex; flex-direction: column; gap: .65rem;
  margin-bottom: 1rem;
}
.buffet-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: none;
}
.buffet-meal { display: flex; align-items: center; }
.buffet-meal-name { font-weight: 600; font-size: 1rem; }
.buffet-time {
  font-size: .9rem; font-weight: 600; color: var(--text-muted);
  white-space: nowrap;
}

/* ─────────────── MENU ─────────────── */
.cat-tabs {
  display: flex; gap: .5rem; overflow-x: auto; margin-bottom: 1rem;
  padding-bottom: .5rem; scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  flex-shrink: 0; padding: .45rem .9rem; border-radius: 20px;
  border: 1px solid var(--border); background: var(--bg-card);
  color: var(--text-muted); font-size: .82rem; text-decoration: none;
  white-space: nowrap; transition: all .2s;
  box-shadow: none;
}
.cat-tab.active, .cat-tab:hover {
  background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 600;
  text-decoration: none;
}

.dishes-list { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 5rem; }
.dish-card {
  display: flex; align-items: center; gap: .9rem;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: border-color .2s;
  box-shadow: none;
}
.dish-card:hover { border-color: var(--text-dim); }
.dish-img {
  width: 90px; height: 90px; object-fit: cover; flex-shrink: 0;
}
.dish-img--placeholder {
  width: 90px; height: 90px; background: var(--bg-card2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dish-info { flex: 1; min-width: 0; padding: .75rem .5rem .75rem 0; }
.dish-name  { font-size: .95rem; font-weight: 600; }
.dish-desc  { font-size: .78rem; color: var(--text-muted); margin-top: 3px; line-clamp: 2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dish-meta  { display: flex; align-items: center; gap: .5rem; margin-top: .4rem; flex-wrap: wrap; }
.dish-weight { font-size: .72rem; color: var(--text-dim); }
.dish-price  { font-size: .95rem; font-weight: 700; color: var(--text); }

.dish-add-form { padding: .75rem; flex-shrink: 0; }
.btn-add {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .15s, background .2s;
}
.btn-add:hover { background: var(--accent-dark); transform: scale(1.08); }
.btn-add-icon { font-size: 1.4rem; font-weight: 700; color: #fff; line-height: 1; }

/* Sticky cart bar */
.cart-sticky-bar {
  position: fixed; bottom: calc(var(--nav-h) + env(safe-area-inset-bottom,0px));
  left: 0; right: 0; padding: .75rem 1rem; z-index: 99;
  background: linear-gradient(to top, rgba(244,245,247,1) 55%, transparent);
}

/* ─────────────── CART ─────────────── */
.cart-list { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.25rem; }
.cart-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .9rem;
  box-shadow: none;
}
.cart-item-info   { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .6rem; }
.cart-item-name   { font-size: .95rem; font-weight: 600; flex: 1; margin-right: .5rem; }
.cart-item-price  { color: var(--text-muted); font-size: .85rem; flex-shrink: 0; }
.cart-item-controls { display: flex; align-items: center; justify-content: space-between; }
.qty-form   { display: flex; align-items: center; gap: .5rem; }
.qty-btn    { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg-card2); color: var(--text); font-size: 1.1rem; cursor: pointer; transition: background .2s; }
.qty-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.qty-value  { font-size: 1rem; font-weight: 600; min-width: 24px; text-align: center; }
.cart-item-subtotal { font-weight: 700; color: var(--text); font-size: 1rem; }

.cart-summary { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; box-shadow: none; }
.cart-total { display: flex; justify-content: space-between; align-items: center; font-size: 1.1rem; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.cart-total strong { font-size: 1.35rem; color: var(--text); }

/* ─────────────── SUCCESS / ERROR PAGES ─────────────── */
.success-page {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 2rem 1rem; gap: 1rem;
}
.success-icon  { margin-bottom: 0.25rem; }
.success-title { font-size: 1.65rem; font-weight: 700; color: var(--text); letter-spacing: -0.03em; }
.success-order { font-size: 1.1rem; color: var(--text-muted); }
.success-text  { color: var(--text-muted); }
.success-room  { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .5rem 1rem; font-size: .9rem; }
.success-actions { display: flex; flex-direction: column; gap: .6rem; width: 100%; }
.success-contact { margin-top: .5rem; font-size: .85rem; color: var(--text-muted); }
.phone-link { color: var(--accent); font-weight: 600; font-size: 1rem; }

.error-page { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 3rem 1rem; text-align: center; }
.error-page h1 { font-size: 4rem; color: var(--text-dim); }

/* ─────────────── RESTAURANTS ─────────────── */
.restaurants-list { display: flex; flex-direction: column; gap: .9rem; }
.restaurant-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: none; }
.restaurant-img { width: 100%; height: 160px; object-fit: cover; }
.restaurant-img--placeholder { height: 80px; background: var(--bg-card2); display: flex; align-items: center; justify-content: center; }
.restaurant-body { padding: 1rem; }
.restaurant-name { font-size: 1.1rem; font-weight: 700; margin-bottom: .4rem; }
.restaurant-badges { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .6rem; }
.badge { background: var(--bg-card2); border: 1px solid var(--border); border-radius: 20px; padding: .2rem .6rem; font-size: .75rem; color: var(--text-muted); }
.restaurant-desc { font-size: .88rem; color: var(--text-muted); margin-bottom: .75rem; }
.restaurant-meta { display: flex; flex-direction: column; gap: .35rem; }
.meta-row { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--text-muted); }

/* ─────────────── WIFI ─────────────── */
.wifi-list { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 1rem; }
.wifi-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem; box-shadow: none; }
.wifi-zone { font-size: 1rem; font-weight: 700; margin-bottom: .9rem; color: var(--text); }
.wifi-field { margin-bottom: .65rem; }
.wifi-label { font-size: .72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .05em; display: block; margin-bottom: .25rem; }
.wifi-value-row { display: flex; align-items: center; gap: .5rem; }
.wifi-value { font-size: 1rem; font-weight: 600; flex: 1; }
.mono { font-family: 'Courier New', monospace; }
.wifi-free { color: var(--success); }
.wifi-note { font-size: .8rem; color: var(--text-muted); margin-top: .5rem; }
.copy-btn {
  background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: .35rem .5rem; cursor: pointer; transition: all .2s;
  display: inline-flex; align-items: center; justify-content: center; min-width: 2.25rem; min-height: 2rem;
}
.copy-btn:hover, .copy-btn.copied { background: var(--bg-card); border-color: var(--text-dim); }

/* ─────────────── ACTIVITIES ─────────────── */
.activities-list { display: flex; flex-direction: column; gap: .75rem; }
.activity-card { display: flex; gap: .9rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; box-shadow: none; }
.activity-icon { flex-shrink: 0; display: flex; align-items: flex-start; padding-top: 2px; }
.activity-body { flex: 1; min-width: 0; }
.activity-title { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.activity-desc  { font-size: .82rem; color: var(--text-muted); margin-bottom: .5rem; }
.activity-meta  { display: flex; flex-direction: column; gap: .2rem; font-size: .8rem; color: var(--text-muted); }
.activity-price { flex-shrink: 0; display: flex; align-items: flex-start; }
.price-tag  { background: var(--accent); color: #fff; border-radius: var(--radius-sm); padding: .2rem .5rem; font-size: .8rem; font-weight: 700; white-space: nowrap; }
.price-free { background: var(--success); color: #fff; border-radius: var(--radius-sm); padding: .2rem .5rem; font-size: .8rem; font-weight: 700; }

/* ─────────────── TRANSFER ─────────────── */
.transfer-form-wrap { max-width: 100%; }
.form-section { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem; margin-bottom: 1rem; box-shadow: none; }
.form-section-title { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; color: var(--text); }
.form-group { margin-bottom: .9rem; }
.form-group:last-child { margin-bottom: 0; }
.form-label { display: block; font-size: .82rem; color: var(--text-muted); margin-bottom: .35rem; }
.form-input {
  width: 100%; padding: .7rem .9rem; border-radius: var(--radius-sm);
  background: var(--bg-card2); border: 1px solid var(--border);
  color: var(--text); font-family: var(--font); font-size: .95rem;
  transition: border-color .2s; outline: none;
}
.form-input:focus { border-color: var(--accent); }
.form-input::placeholder { color: var(--text-dim); }
.form-textarea { resize: vertical; min-height: 80px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .75rem center; padding-right: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.form-note { font-size: .78rem; color: var(--text-muted); text-align: center; margin-top: .75rem; }

.radio-group { display: flex; gap: .5rem; flex-wrap: wrap; }
.radio-option { cursor: pointer; }
.radio-option input { display: none; }
.radio-box { display: block; padding: .5rem .85rem; border-radius: 20px; border: 1px solid var(--border); background: var(--bg-card2); font-size: .85rem; color: var(--text-muted); transition: all .2s; }
.radio-option input:checked + .radio-box { background: var(--accent); color: #fff; border-color: var(--accent); font-weight: 600; }

.checkbox-option { display: flex; align-items: center; gap: .5rem; cursor: pointer; font-size: .9rem; padding: .6rem 0; }
.checkbox-option input { width: 18px; height: 18px; accent-color: var(--accent); }
.room-display { background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .7rem .9rem; font-size: .9rem; color: var(--text-muted); }

/* ─────────────── STATIC PAGES ─────────────── */
.static-content { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1rem; box-shadow: none; }
.static-content h2 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 1rem 0 .5rem; }
.static-content h2:first-child { margin-top: 0; }
.static-content h3 { font-size: 1rem; font-weight: 600; margin: 1rem 0 .35rem; }
.static-content h3:first-child { margin-top: 0; }
.static-content p  { color: var(--text-muted); font-size: .9rem; margin-bottom: .75rem; }
.static-content ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .4rem; margin-bottom: .75rem; }
.static-content li { padding: .4rem .6rem; background: var(--bg-card2); border-radius: var(--radius-sm); font-size: .88rem; color: var(--text-muted); border: 1px solid var(--border); }
.static-content article { border-bottom: 1px solid var(--border); padding-bottom: 1rem; margin-bottom: 1rem; }
.static-content article:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.page-footer-nav { margin-top: 1rem; }

/* ─────────────── SHARED COMPONENTS ─────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .4rem; padding: .75rem 1.25rem; border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .95rem; font-weight: 600;
  border: none; cursor: pointer; text-decoration: none; transition: all .2s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); text-decoration: none; color: #fff; }
.btn-ghost { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.btn-danger { background: var(--error); color: #fff; }
.btn-full { width: 100%; }
.btn-large { padding: 1rem; font-size: 1.05rem; }
.btn-sm { padding: .4rem .75rem; font-size: .82rem; }

.empty-state { text-align: center; padding: 2.5rem 1rem; color: var(--text-muted); }
.empty-state--large { padding: 4rem 1rem; }
.empty-icon { margin-bottom: 1rem; display: flex; justify-content: center; }
.empty-state h2 { font-size: 1.2rem; margin-bottom: .5rem; color: var(--text); }
.empty-state a { margin-top: 1rem; }

.info-block { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; margin-top: 1rem; font-size: .85rem; color: var(--text-muted); display: flex; flex-direction: column; gap: .4rem; box-shadow: none; }
.info-block a { color: var(--accent); }
