/* ── Idaho Krampus Con — Vendor Booking System ──────────────────────────────── */

@font-face {
  font-family: 'DirtyHeadline';
  src: url('assets/dirtyheadline.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'MrsMonster';
  src: url('assets/mrsmonster.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

:root {
  /* Brand palette — pulled from logo/background */
  --brand-red:      #c0281a;
  --brand-red-dark: #8c1c10;
  --brand-orange:   #e8650a;
  --brand-gold:     #f5a800;
  --brand-gold-lt:  #ffc93c;
  --brand-cream:    #fff3d4;

  /* UI surfaces */
  --bg-deep:    #0f0a06;
  --bg-card:    #1c1108;
  --bg-hover:   #261808;
  --border:     #3d2208;
  --border-lt:  #5c3510;

  /* Text */
  --text:       #f5ead8;
  --text-muted: #9e7a50;

  /* Spot status */
  --spot-open:    #4caf50;
  --spot-pending: #ff9800;
  --spot-booked:  #888888;
  --spot-locked:  #6b5c4a;
  --spot-selected:#e8650a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg-deep);
  color: var(--text);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
}

/* ── Header ────────────────────────────────────────────────────────────────── */
header {
  background: linear-gradient(135deg, #0f0a06 0%, #1c0a04 40%, #0f0a06 100%);
  border-bottom: 3px solid var(--brand-gold);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  box-shadow: 0 2px 20px rgba(232, 101, 10, 0.3);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-logo {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(245, 168, 0, 0.5));
}

.header-brand h1 {
  font-family: 'DirtyHeadline', 'Impact', sans-serif;
  font-size: 1.6rem;
  color: var(--brand-gold-lt);
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(245, 168, 0, 0.5), 2px 2px 0 rgba(192,40,26,0.8);
  line-height: 1.1;
}

.header-brand p {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
}

header nav a {
  color: var(--text-muted);
  text-decoration: none;
  margin-left: 20px;
  font-size: 0.88rem;
  transition: color 0.2s;
  letter-spacing: 0.5px;
}

header nav a:hover { color: var(--brand-gold); }

/* ── Stats Bar ─────────────────────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(180deg, #1a0d04 0%, #0f0a06 100%);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.stat-dot { width: 10px; height: 10px; border-radius: 50%; }
.stat-count { font-weight: 700; color: var(--text); }
.stat-label { color: var(--text-muted); }

/* ── Layout ────────────────────────────────────────────────────────────────── */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 0;
  min-height: calc(100vh - 72px - 41px);
}

/* ── Map Section ───────────────────────────────────────────────────────────── */
.map-section {
  padding: 24px;
  overflow-x: auto;
}

.map-section h2 {
  font-family: 'DirtyHeadline', sans-serif;
  font-size: 1.15rem;
  color: var(--brand-gold);
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-shadow: 1px 1px 0 rgba(192,40,26,0.6);
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 3px;
}

.map-container {
  background: #0a0603;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  overflow-x: auto;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.5);
}

#floor-map {
  display: block;
  min-width: 900px;
}

/* ── SVG Spot Elements ─────────────────────────────────────────────────────── */
.spot-rect {
  stroke-width: 2;
  transition: filter 0.15s;
  cursor: pointer;
}

.spot-rect:hover { filter: brightness(1.25); }

.spot-rect.open    { fill: var(--spot-open);    stroke: #388e3c; }
.spot-rect.pending { fill: var(--spot-pending);  stroke: #e65100; cursor: default; }
.spot-rect.booked  { fill: var(--spot-booked);   stroke: #555555; cursor: default; }
.spot-rect.locked  { fill: var(--spot-locked);   stroke: #4a3a2a; cursor: default; }
.spot-rect.selected{ fill: var(--spot-selected); stroke: #c0281a; cursor: pointer; }

.spot-label {
  font-size: 10px;
  font-weight: 700;
  fill: rgba(255,255,255,0.92);
  text-anchor: middle;
  dominant-baseline: central;
  pointer-events: none;
  user-select: none;
}

.section-label {
  font-family: 'DirtyHeadline', sans-serif;
  font-size: 13px;
  fill: var(--brand-gold);
  letter-spacing: 1px;
}

.section-bg {
  fill: rgba(255,255,255,0.02);
  stroke: rgba(245, 168, 0, 0.15);
  stroke-width: 1;
}

/* ── Sidebar ───────────────────────────────────────────────────────────────── */
.sidebar {
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.sidebar-header {
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(232,101,10,0.12) 0%, transparent 100%);
}

.sidebar-header h3 {
  font-family: 'DirtyHeadline', sans-serif;
  color: var(--brand-gold);
  font-size: 1.05rem;
  margin-bottom: 4px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 0 rgba(192,40,26,0.5);
}

.sidebar-header p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.spot-details {
  padding: 20px;
  flex: 1;
}

.spot-details.empty {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.spot-details.empty .empty-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 12px;
  opacity: 0.4;
}

.spot-info-card {
  background: var(--bg-hover);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.spot-info-card h4 {
  font-family: 'DirtyHeadline', sans-serif;
  font-size: 1.6rem;
  color: var(--brand-gold-lt);
  margin-bottom: 4px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 0 rgba(192,40,26,0.5);
}

.spot-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.badge-open    { background: rgba(76,175,80,0.2);  color: #81c784; border: 1px solid #4caf50; }
.badge-pending { background: rgba(255,152,0,0.2);  color: #ffb74d; border: 1px solid #ff9800; }
.badge-booked  { background: rgba(136,136,136,0.2); color: #bbbbbb; border: 1px solid #888888; }
.badge-locked  { background: rgba(107,92,74,0.2);  color: #a1887f; border: 1px solid #6b5c4a; }

.spot-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.85rem;
}

.spot-info-row:last-child { border-bottom: none; }
.spot-info-row .label { color: var(--text-muted); }
.spot-info-row .value { color: var(--text); font-weight: 500; }
.spot-info-row .price { color: var(--brand-gold-lt); font-weight: 700; font-size: 1.15rem; }

/* ── Booking Form ──────────────────────────────────────────────────────────── */
.booking-form {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 20px;
}

.booking-form h4 {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-hover);
  border: 1px solid var(--border-lt);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--text);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus { outline: none; border-color: var(--brand-orange); }
.form-group input::placeholder { color: var(--text-muted); }

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
  font-family: 'DirtyHeadline', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-red), var(--brand-orange));
  color: var(--brand-cream);
  box-shadow: 0 3px 12px rgba(232,101,10,0.3);
  font-size: 1rem;
  letter-spacing: 1px;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 18px rgba(232,101,10,0.45);
  filter: brightness(1.1);
}

.btn-primary:active  { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-secondary {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-lt);
  margin-top: 8px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
}

.btn-secondary:hover { border-color: var(--brand-orange); color: var(--text); }
.btn-danger { background: var(--brand-red); color: white; }

/* ── PayPal Container ──────────────────────────────────────────────────────── */
#paypal-button-container { margin-top: 12px; }

/* ── Messages ──────────────────────────────────────────────────────────────── */
.message {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  line-height: 1.5;
}

.message-success { background: rgba(76,175,80,0.12);  border: 1px solid #4caf50; color: #81c784; }
.message-error   { background: rgba(192,40,26,0.12);  border: 1px solid var(--brand-red); color: #ef9a9a; }
.message-info    { background: rgba(232,101,10,0.12); border: 1px solid var(--brand-orange); color: #ffcc80; }

/* ── Spinner ───────────────────────────────────────────────────────────────── */
.spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: var(--brand-gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Tooltip ───────────────────────────────────────────────────────────────── */
.map-tooltip {
  position: fixed;
  background: rgba(15,10,6,0.96);
  border: 1px solid var(--border-lt);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.8rem;
  color: var(--text);
  pointer-events: none;
  z-index: 300;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.6);
}

/* ── FAQ section ───────────────────────────────────────────────────────────── */
.faq-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}

.faq-card strong { color: var(--brand-gold); }
.faq-card p { color: var(--text-muted); margin-top: 6px; font-size: 0.88rem; line-height: 1.6; }

/* ── Footer ────────────────────────────────────────────────────────────────── */
footer {
  background: #0a0603;
  border-top: 2px solid var(--brand-red-dark);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

footer p { color: var(--text-muted); font-size: 0.8rem; }
footer a { color: var(--brand-orange); text-decoration: none; }
footer a:hover { color: var(--brand-gold); }

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.fb-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-orange) !important;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--border-lt);
  border-radius: 6px;
  transition: all 0.2s;
}

.fb-link:hover {
  border-color: var(--brand-orange);
  background: rgba(232,101,10,0.1);
}

/* ── Admin Panel ───────────────────────────────────────────────────────────── */
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 72px);
}

.admin-sidebar {
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  padding: 20px;
}

.admin-sidebar h3 {
  font-family: 'DirtyHeadline', sans-serif;
  color: var(--brand-gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.admin-sidebar nav a {
  display: block;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 4px;
  transition: all 0.2s;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.active {
  background: var(--bg-hover);
  color: var(--text);
  border-left: 3px solid var(--brand-orange);
  padding-left: 11px;
}

.admin-main { padding: 28px; overflow-y: auto; }

.admin-main h2 {
  font-family: 'DirtyHeadline', sans-serif;
  color: var(--brand-gold);
  font-size: 1.4rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* ── Admin Stats Cards ─────────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  border-top: 3px solid var(--brand-orange);
}

.stat-card .number { font-size: 2.2rem; font-weight: 700; color: var(--brand-gold-lt); }
.stat-card .stat-name { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ── Admin Table ───────────────────────────────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 8px;
  overflow: hidden;
}

.data-table th {
  background: var(--bg-hover);
  padding: 12px 14px;
  text-align: left;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 11px 14px;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.data-table tr:hover td { background: var(--bg-hover); }

.data-table .status-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.73rem;
  font-weight: 700;
}

/* ── Admin Login ───────────────────────────────────────────────────────────── */
.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 72px);
  background: radial-gradient(ellipse at center, #1c0a04 0%, #0f0a06 70%);
}

.login-card {
  background: var(--bg-card);
  border: 1px solid var(--border-lt);
  border-top: 3px solid var(--brand-gold);
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.login-card h2 {
  font-family: 'DirtyHeadline', sans-serif;
  color: var(--brand-gold);
  text-align: center;
  margin-bottom: 8px;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.login-card p { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 28px; }

/* ── Spot Editor Modal ─────────────────────────────────────────────────────── */
.spot-editor-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.spot-editor-card {
  background: var(--bg-card);
  border: 1px solid var(--border-lt);
  border-top: 3px solid var(--brand-orange);
  border-radius: 12px;
  padding: 28px;
  width: 500px;
  max-width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
}

.spot-editor-card h3 {
  font-family: 'DirtyHeadline', sans-serif;
  color: var(--brand-gold);
  margin-bottom: 20px;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.modal-actions { display: flex; gap: 10px; margin-top: 20px; }
.modal-actions .btn { flex: 1; width: auto; }

/* ── Filter Bar ────────────────────────────────────────────────────────────── */
.filter-bar { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }

.filter-bar input,
.filter-bar select {
  background: var(--bg-card);
  border: 1px solid var(--border-lt);
  border-radius: 6px;
  padding: 8px 12px;
  color: var(--text);
  font-size: 0.85rem;
}

.filter-bar input { flex: 1; min-width: 200px; }

/* ── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .page-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    border-left: none;
    border-top: 1px solid var(--border);
    max-height: none;
    overflow-y: visible;
  }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { border-right: none; border-bottom: 1px solid var(--border); }

  /* Header */
  header { padding: 0 16px; height: 60px; }
  .header-logo { height: 44px; }
  .header-brand h1 { font-size: 1.25rem; }
  .header-brand p { display: none; }
  header nav a { margin-left: 14px; font-size: 0.82rem; }

  /* Stats bar */
  .stats-bar { padding: 8px 16px; gap: 14px; }

  /* Map */
  .map-section { padding: 16px; }
  .map-container {
    padding: 10px;
    -webkit-overflow-scrolling: touch;
  }
}

/* ── Mobile (phones) ───────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  /* Header: compact for small screens */
  header { padding: 0 12px; height: 54px; }
  .header-logo { height: 36px; }
  .header-brand { gap: 10px; }
  .header-brand h1 { font-size: 1rem; letter-spacing: 1px; }
  header nav a { margin-left: 10px; font-size: 0.75rem; }

  /* Hide the "Floor Map" scroll link on mobile — map is right there */
  header nav a[href="#map"] { display: none; }

  /* Stats bar: hide the date/location on small screens to avoid crowding */
  .stats-bar { gap: 10px; padding: 7px 12px; flex-wrap: nowrap; overflow-x: auto; }
  .stat-item { font-size: 0.78rem; gap: 5px; white-space: nowrap; }
  .stat-item:last-child { display: none; }

  /* Map section */
  .map-section { padding: 12px; }
  .map-section h2 { font-size: 1rem; margin-bottom: 8px; }
  .map-container { padding: 8px; }
  .map-legend { gap: 8px; margin-bottom: 14px; }
  .legend-item { font-size: 0.72rem; }

  /* Sidebar booking panel */
  .sidebar-header { padding: 14px 16px 12px; }
  .sidebar-header h3 { font-size: 0.95rem; }
  .spot-details { padding: 14px 16px; }
  .booking-form { padding: 14px 16px; }

  /* FAQ */
  .map-section #faq { margin-top: 24px; }
  .faq-card { padding: 12px; }
  .faq-card p { font-size: 0.83rem; }

  /* Footer */
  footer { padding: 16px 12px; flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Page layout height adjustment */
  .page-layout { min-height: auto; }
}

/* ── Venue Map Lightbox ────────────────────────────────────────────────────── */
.venue-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-lt);
  color: var(--brand-gold);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  margin-bottom: 16px;
  transition: background 0.15s, border-color 0.15s;
}
.venue-map-btn:hover { background: var(--bg-hover); border-color: var(--brand-gold); }

#venue-map-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#venue-map-lightbox.open { display: flex; }

#venue-map-lightbox .lightbox-inner {
  position: relative;
  max-width: 100%;
  max-height: 100%;
}
#venue-map-lightbox img {
  max-width: min(1400px, 95vw);
  max-height: 90vh;
  border-radius: 8px;
  border: 2px solid var(--border-lt);
  display: block;
}
#venue-map-lightbox .lightbox-close {
  position: absolute;
  top: -14px;
  right: -14px;
  background: var(--brand-red);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
}
#venue-map-lightbox .lightbox-caption {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 10px;
}

/* ── Scrollbar ─────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--border-lt); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ── Cart (multi-spot selection) ─────────────────────────────────────────────── */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.cart-count {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.btn-clear-all {
  background: transparent;
  border: 1px solid #5a3020;
  color: #c0503a;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  font-family: inherit;
}
.btn-clear-all:hover {
  background: #c0281a22;
  color: #e05040;
  border-color: #c0281a;
}
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 2px;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0d0806;
  border: 1px solid #2e1a0c;
  border-radius: 6px;
  padding: 8px 10px;
  transition: border-color 0.15s;
}
.cart-item:hover {
  border-color: #5a3020;
}
.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.cart-spot-id {
  font-family: 'DirtyHeadline', sans-serif;
  font-size: 1rem;
  color: var(--brand-gold);
  letter-spacing: 1px;
  line-height: 1;
}
.cart-spot-detail {
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowra