/* ==========================================================================
   RateMyCuckChair — Yelp Red/White Parody Theme
   ========================================================================== */

/* --- CSS Variables --- */
:root {
  --red: #d32323;
  --red-hover: #b71c1c;
  --red-dark: #a01515;
  --bg: #f5f5f5;
  --card: #ffffff;
  --text: #2d2d2d;
  --text-secondary: #666;
  --text-muted: #888;
  --green: #2e7d32;
  --green-bg: #e8f5e9;
  --red-accent: #c62828;
  --red-bg: #fce4ec;
  --border: #e0e0e0;
  --border-light: #eee;
  --shadow: 0 1px 4px rgba(0,0,0,0.08);
  --shadow-hover: 0 4px 16px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-sm: 4px;
  --transition: 0.2s ease;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max-width: 1024px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: 14px; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav {
  background: var(--red);
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 56px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.nav-logo {
  font-size: 20px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.nav-logo a { color: white; text-decoration: none; }
.nav-logo span { font-weight: 400; opacity: 0.75; font-size: 10px; vertical-align: super; }
.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-left: auto;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
  white-space: nowrap;
}
.nav-links a:hover { opacity: 1; text-decoration: none; }
.nav-links a.active-link { opacity: 1; font-weight: 700; border-bottom: 2px solid white; padding-bottom: 2px; }
.btn-submit {
  background: white;
  color: var(--red);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 14px;
  border: none;
  white-space: nowrap;
  transition: background var(--transition);
}
.btn-submit:hover { background: #f0f0f0; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 16px;
  flex: 1;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  text-align: center;
  padding: 48px 0 32px;
}
.hero h1 {
  font-size: 34px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.hero p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; min-width: 80px; }
.stat-num { font-size: 24px; font-weight: 800; color: var(--red); }
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   FILTERS
   ========================================================================== */
.filters {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.filter-chip {
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid #d0d0d0;
  background: white;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.filter-chip:hover { border-color: var(--red); color: var(--red); }
.filter-chip.active { background: var(--red); color: white; border-color: var(--red); }

/* ==========================================================================
   CHAIR CARDS (Gallery Grid)
   ========================================================================== */
.chair-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.chair-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.chair-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}
.chair-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #e8e8e8;
}
.chair-card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; }
.chair-card-hotel {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.chair-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.chair-card-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.stars { color: var(--red); font-size: 18px; letter-spacing: 1px; }
.stars-sm { color: var(--red); font-size: 15px; letter-spacing: 0.5px; }
.score { font-weight: 700; font-size: 14px; }
.reviews { font-size: 12px; color: var(--text-muted); }
.chair-card-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}

/* ==========================================================================
   BADGES
   ========================================================================== */
.badge {
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.badge-wouldsit { background: var(--green-bg); color: var(--green); }
.badge-wouldnot { background: var(--red-bg); color: var(--red-accent); }
.badge-tag { background: #f0f0f0; color: var(--text-secondary); }
.badge-reason { padding: 4px 12px; border-radius: var(--radius-sm); font-size: 12px; font-weight: 600; }
.badge-reason-nsfw { background: var(--red-bg); color: var(--red-accent); }
.badge-reason-spam { background: #fff3e0; color: #e65100; }
.badge-reason-other { background: #e3f2fd; color: #1565c0; }
.badge-reason-not-hotel-chair { background: #f3e5f5; color: #7b1fa2; }

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 16px 0;
}
.page-btn {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: white;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.page-btn:hover:not(:disabled) { border-color: var(--red); color: var(--red); }
.page-btn.active { background: var(--red); color: white; border-color: var(--red); }
.page-btn:disabled { opacity: 0.4; cursor: default; }
.page-info { font-size: 14px; color: var(--text-secondary); margin: 0 8px; }

/* ==========================================================================
   DETAIL PAGE
   ========================================================================== */
.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
.detail-back:hover { text-decoration: underline; }
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.detail-photo-wrap { position: relative; }
.detail-photo {
  width: 100%;
  border-radius: var(--radius);
  max-height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.detail-hotel {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.2;
}
.detail-location {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 8px;
}
.detail-meta {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.detail-review {
  background: #fafafa;
  border-left: 4px solid var(--red);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 24px;
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

/* Rating bars */
.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}
.rating-label {
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  width: 160px;
  flex-shrink: 0;
}
.rating-bar-bg {
  flex: 1;
  height: 8px;
  background: var(--border-light);
  border-radius: 4px;
  margin: 0 12px;
  overflow: hidden;
}
.rating-bar-fill {
  height: 8px;
  background: var(--red);
  border-radius: 4px;
  transition: width 0.5s ease;
}
.rating-score {
  font-weight: 700;
  font-size: 14px;
  width: 36px;
  text-align: right;
}
.rating-overall {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 0;
  font-weight: 700;
  font-size: 16px;
  gap: 8px;
}
.detail-badges {
  display: flex;
  gap: 8px;
  margin: 16px 0;
  flex-wrap: wrap;
}

/* Would Sit progress bar */
.wouldsit-bar-wrap { margin: 12px 0; }
.wouldsit-bar-bg {
  width: 100%;
  height: 14px;
  background: var(--border-light);
  border-radius: 7px;
  overflow: hidden;
  position: relative;
}
.wouldsit-bar-fill {
  height: 14px;
  background: var(--green);
  border-radius: 7px;
  transition: width 0.5s ease;
}
.wouldsit-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ==========================================================================
   VOTE SECTION
   ========================================================================== */
.vote-section {
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 24px;
}
.vote-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.vote-section .vote-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.vote-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.vote-row label {
  width: 160px;
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
  color: var(--text);
}
.vote-row input[type="range"] {
  flex: 1;
  accent-color: var(--red);
  height: 6px;
}
.vote-row .val {
  width: 28px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--red);
}
.wouldsit-toggle {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
}
.wouldsit-toggle > span:first-child {
  font-weight: 600;
  font-size: 13px;
  margin-right: 4px;
}
.wouldsit-toggle button {
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  border: 2px solid #ddd;
  background: white;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: all var(--transition);
}
.wouldsit-toggle button:hover { border-color: var(--red); }
.wouldsit-toggle button.active-yes {
  background: var(--green-bg);
  border-color: var(--green);
  color: var(--green);
}
.wouldsit-toggle button.active-no {
  background: var(--red-bg);
  border-color: var(--red-accent);
  color: var(--red-accent);
}
.btn-vote {
  background: var(--red);
  color: white;
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  border: none;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  margin-top: 20px;
  width: 100%;
  transition: background var(--transition);
}
.btn-vote:hover { background: var(--red-hover); }
.btn-vote:disabled { opacity: 0.6; cursor: not-allowed; }
.vote-confirmation {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  display: none;
}
.vote-error {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--red-accent);
  display: none;
}

/* --- Report link --- */
.report-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
.report-link:hover { color: var(--red-accent); text-decoration: underline; }
.report-dropdown {
  margin-top: 8px;
  padding: 12px;
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: none;
}
.report-dropdown.open { display: block; }
.report-dropdown select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  font-size: 14px;
}
.btn-report {
  background: var(--red);
  color: white;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  border: none;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}
.btn-report:hover { background: var(--red-hover); }
.btn-report:disabled { opacity: 0.6; cursor: not-allowed; }
.report-confirmation {
  font-size: 13px;
  color: var(--green);
  margin-top: 8px;
  display: none;
}

/* ==========================================================================
   SUBMIT PAGE
   ========================================================================== */
.submit-page { max-width: 640px; margin: 0 auto; }
.submit-page h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text);
}
.submit-page .subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.auth-gate {
  text-align: center;
  padding: 48px 24px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.auth-gate h2 { margin-bottom: 12px; font-size: 20px; }
.auth-gate p { color: var(--text-muted); margin-bottom: 24px; font-size: 14px; }
.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: white;
  border: 2px solid #ddd;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-google:hover { border-color: #aaa; background: #fafafa; }
.btn-google svg { width: 20px; height: 20px; }
.form-section {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group .form-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input[type="text"],
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  transition: border-color var(--transition);
}
.form-group input[type="text"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(211,35,35,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.char-counter {
  text-align: right;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.char-counter.over { color: var(--red-accent); }

/* Photo upload */
.photo-upload {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: #fafafa;
}
.photo-upload:hover { border-color: var(--red); background: #fef5f5; }
.photo-upload.has-photo { border-style: solid; border-color: var(--green); padding: 12px; }
.photo-upload-icon { font-size: 36px; margin-bottom: 8px; }
.photo-upload-text { font-size: 14px; color: var(--text-muted); }
.photo-upload-text strong { color: var(--red); }
.photo-preview {
  max-width: 200px;
  max-height: 150px;
  border-radius: var(--radius-sm);
  margin: 0 auto 8px;
  object-fit: cover;
}

/* Slider form rows */
.slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.slider-row label {
  width: 180px;
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
}
.slider-row input[type="range"] {
  flex: 1;
  accent-color: var(--red);
}
.slider-row .val {
  width: 28px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--red);
}

/* Checkboxes */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.checkbox-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition);
  background: white;
}
.checkbox-chip:hover { border-color: var(--red); }
.checkbox-chip.checked { background: var(--red); color: white; border-color: var(--red); }
.checkbox-chip input { display: none; }

/* Toggle */
.toggle-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
}
.toggle-row button {
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  border: 2px solid #ddd;
  background: white;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  transition: all var(--transition);
}
.toggle-row button.active-yes { background: var(--green-bg); border-color: var(--green); color: var(--green); }
.toggle-row button.active-no { background: var(--red-bg); border-color: var(--red-accent); color: var(--red-accent); }

/* Submit button */
.btn-submit-form {
  background: var(--red);
  color: white;
  padding: 12px 32px;
  border-radius: var(--radius-sm);
  border: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
  transition: background var(--transition);
  margin-top: 8px;
}
.btn-submit-form:hover { background: var(--red-hover); }
.btn-submit-form:disabled { opacity: 0.6; cursor: not-allowed; }

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}
.spinner-dark {
  border-color: rgba(0,0,0,0.15);
  border-top-color: var(--red);
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-error {
  color: var(--red-accent);
  font-size: 14px;
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--red-bg);
  border-radius: var(--radius-sm);
  display: none;
}
.form-error.visible { display: block; }

/* Success screen */
.submit-success {
  text-align: center;
  padding: 48px 24px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.submit-success-icon { font-size: 48px; margin-bottom: 16px; }
.submit-success h2 { color: var(--green); margin-bottom: 8px; }
.submit-success p { color: var(--text-muted); margin-bottom: 24px; }

/* ==========================================================================
   ADMIN PAGE
   ========================================================================== */
.admin-page { max-width: 800px; margin: 0 auto; }
.admin-page h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
}
.admin-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--border);
}
.admin-tab {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}
.admin-tab:hover { color: var(--text); }
.admin-tab.active {
  color: var(--red);
  border-bottom-color: var(--red);
}
.admin-queue, .admin-reports { display: none; }
.admin-queue.active, .admin-reports.active { display: block; }

/* Queue item */
.queue-item, .report-item {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: opacity 0.3s, transform 0.3s;
}
.queue-item.removing, .report-item.removing {
  opacity: 0;
  transform: translateX(40px);
}
.queue-thumb {
  width: 100px;
  height: 75px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: #e8e8e8;
}
.queue-info { flex: 1; min-width: 0; }
.queue-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.queue-info .queue-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 6px; }
.queue-info .queue-preview {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.queue-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}
.btn-approve, .btn-reject, .btn-resolve, .btn-remove {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-approve { background: var(--green); color: white; }
.btn-approve:hover { background: #1b5e20; }
.btn-reject { background: var(--red-accent); color: white; }
.btn-reject:hover { background: #b71c1c; }
.btn-resolve { background: #1565c0; color: white; }
.btn-resolve:hover { background: #0d47a1; }
.btn-remove { background: var(--red-accent); color: white; margin-top: 4px; }
.btn-remove:hover { background: #b71c1c; }

/* Confirm dialog */
.confirm-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
}
.confirm-dialog {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.confirm-dialog h3 { margin-bottom: 12px; }
.confirm-dialog p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.confirm-dialog .confirm-actions { display: flex; gap: 12px; justify-content: center; }
.confirm-dialog button {
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
}
.btn-cancel { background: #f0f0f0; color: var(--text); }
.btn-cancel:hover { background: #e0e0e0; }
.btn-confirm-danger { background: var(--red-accent); color: white; }
.btn-confirm-danger:hover { background: #b71c1c; }
.btn-confirm-safe { background: var(--green); color: white; }
.btn-confirm-safe:hover { background: #1b5e20; }

/* Denied */
.access-denied {
  text-align: center;
  padding: 64px 24px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.access-denied h2 { color: var(--red-accent); margin-bottom: 8px; }
.access-denied p { color: var(--text-muted); }

/* ==========================================================================
   SKELETON LOADING
   ========================================================================== */
.skeleton-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.skeleton-img {
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, #e8e8e8 25%, #f0f0f0 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-body { padding: 14px; }
.skeleton-line {
  height: 12px;
  background: linear-gradient(90deg, #e8e8e8 25%, #f0f0f0 50%, #e8e8e8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 8px;
}
.skeleton-line-sm { width: 50%; }
.skeleton-line-md { width: 80%; }
.skeleton-line-lg { width: 100%; }
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ==========================================================================
   EMPTY STATES
   ========================================================================== */
.empty-state {
  text-align: center;
  padding: 48px 24px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.empty-state-icon { font-size: 48px; margin-bottom: 12px; }
.empty-state h3 { font-size: 18px; margin-bottom: 8px; color: var(--text); }
.empty-state p { color: var(--text-muted); font-size: 14px; }
.empty-state a { font-weight: 600; }

/* ==========================================================================
   PRIVACY / TERMS PAGES
   ========================================================================== */
.legal-page { max-width: 700px; margin: 0 auto; }
.legal-page h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text);
}
.legal-page h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--text);
}
.legal-page p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 14px;
}
.legal-page ul {
  margin: 0 0 14px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.legal-page li { margin-bottom: 6px; }

/* ==========================================================================
   404 PAGE
   ========================================================================== */
.not-found-page {
  text-align: center;
  padding: 64px 24px;
  max-width: 560px;
  margin: 0 auto;
}
.not-found-page h1 {
  font-size: 72px;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 8px;
}
.not-found-page h2 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--text);
}
.not-found-page p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.not-found-page a {
  display: inline-block;
  padding: 12px 28px;
  background: var(--red);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}
.not-found-page a:hover { background: var(--red-hover); text-decoration: none; }
.not-found-icon { font-size: 64px; display: block; margin-bottom: 16px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  text-align: center;
  padding: 24px 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
  background: #fafafa;
}
.site-footer p { font-size: 12px; color: var(--text-muted); }
.site-footer a { color: var(--text-secondary); }

/* ==========================================================================
   TOASTS
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  z-index: 300;
  animation: toastIn 0.3s ease;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.toast-success { background: var(--green); color: white; }
.toast-error { background: var(--red-accent); color: white; }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
  .container { padding: 16px 12px; }
  .hero { padding: 32px 0 24px; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 14px; }
  .stats-bar { gap: 24px; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-hotel { font-size: 24px; }
  .detail-photo { max-height: 350px; }
  .nav-links { gap: 10px; }
  .queue-item, .report-item { flex-direction: column; }
  .queue-actions, .report-item .queue-actions { flex-direction: row; }
}

@media (max-width: 640px) {
  .nav { padding: 0 12px; gap: 12px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--red);
    padding: 16px;
    gap: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }
  .nav-links a { font-size: 15px; padding: 8px 0; }
  .hamburger { display: block; }
  .stats-bar { gap: 16px; }
  .stat-num { font-size: 20px; }
  .filters { gap: 6px; }
  .filter-chip { font-size: 12px; padding: 5px 12px; }
  .chair-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }
  .form-section { padding: 20px; }
  .slider-row { flex-direction: column; align-items: flex-start; }
  .slider-row label { width: 100%; }
  .checkbox-group { gap: 8px; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: 22px; }
  .detail-hotel { font-size: 20px; }
  .nav-logo { font-size: 17px; }
  .rating-label { width: 120px; font-size: 12px; }
  .vote-row label { width: 120px; font-size: 12px; }
}
