:root {
  --bg: #0d0d0f;
  --surface: #16161a;
  --surface2: #1e1e24;
  --border: rgba(255,255,255,0.08);
  --accent: #e63030;
  --accent-hot: #ff5a3c;
  --accent-dim: rgba(230,48,48,0.15);
  --text: #f0f0f0;
  --text-muted: #888;
  --text-dim: #555;
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Chakra Petch', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

#bg-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}

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

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(13,13,15,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-logo span {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.btn:hover { background: var(--surface2); border-color: rgba(255,255,255,0.15); }

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: #c92828; border-color: #c92828; }

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--text-muted);
}
.btn-ghost:hover { background: var(--surface); color: var(--text); border-color: var(--border); }

.btn-danger {
  background: rgba(230,48,48,0.1);
  border-color: rgba(230,48,48,0.3);
  color: #e63030;
}
.btn-danger:hover { background: rgba(230,48,48,0.2); }

/* MAIN CONTENT */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* HERO BIO */
.hero-bio {
  padding: 3.5rem 0 2.5rem;
}

.hero-bio-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-bio-text {
  max-width: 580px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(230,48,48,0.25);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 1.1rem;
}

.hero-bio-text h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.08;
  margin-bottom: 1rem;
}

.hero-bio-text h1 span {
  background: linear-gradient(105deg,
    var(--accent) 30%, #ff8d6b 46%, #ffc4ae 50%, #ff8d6b 54%, var(--accent-hot) 70%);
  background-size: 300% 100%;
  background-position: 0% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);
  animation: glint 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

@keyframes glint {
  from { background-position: 100% 0; }
  to   { background-position: 0% 0; }
}

.hero-bio-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.6rem;
  max-width: 520px;
}

.hero-sub {
  color: var(--text-dim) !important;
  font-size: 0.85rem !important;
  margin-bottom: 1.5rem !important;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-bio-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.stat-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: rgba(22,22,26,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  min-width: 160px;
}

.stat-pill span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.stat-pill label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
}

@media (max-width: 700px) {
  .hero-bio-text h1 { font-size: 1.9rem; }
  .hero-bio-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-pill { min-width: 120px; flex: 1; }
}

/* GARAGE TOOLBAR */
.garage-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 200px;
  background: rgba(22,22,26,0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  padding: 0 0.75rem;
  color: var(--text-muted);
}
.search-wrap input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 0.875rem;
  padding: 0.55rem 0;
}
.search-wrap input::placeholder { color: var(--text-dim); }

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.toolbar-right select {
  background: rgba(22,22,26,0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.8rem;
  padding: 0.5rem 0.75rem;
  outline: none;
  cursor: pointer;
}
.toolbar-right select:focus { border-color: var(--accent); }
.toolbar-right select option { background: var(--surface2); }

/* GARAGE GRID */
.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

/* CAR CARD */
.car-card {
  background: rgba(22,22,26,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
}
.car-card:hover {
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -12px rgba(0,0,0,0.6);
}

.car-card-media {
  position: relative;
  overflow: hidden;
}
.car-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,15,0) 55%, rgba(13,13,15,0.55) 100%);
  pointer-events: none;
}
.car-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: var(--surface2);
  transition: transform 0.35s ease;
}
.car-card:hover .car-card-img { transform: scale(1.045); }

.car-chip {
  position: absolute;
  top: 10px; left: 10px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 9px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.car-card-arrow {
  position: absolute;
  bottom: 10px; right: 10px;
  z-index: 2;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(13,13,15,0.65);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s, transform 0.2s;
}
.car-card:hover .car-card-arrow { opacity: 1; transform: translateX(0); }

.car-card-img-placeholder {
  width: 100%;
  height: 180px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  font-size: 2.5rem;
}

.car-card-body {
  padding: 0.85rem 1.1rem;
}

.car-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 0.6rem;
}

.car-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.car-card-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.car-card-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.badge-red {
  background: var(--accent-dim);
  border-color: rgba(230,48,48,0.25);
  color: #e67070;
}

/* EMPTY STATE */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
  grid-column: 1 / -1;
}
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 1rem; color: var(--text-dim); }
.empty-state h3 { font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--text); }
.empty-state p { font-size: 0.9rem; }

/* FORM PAGE */
.form-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.form-page h1 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 0.25rem;
}

.form-page .subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.form-section {
  background: rgba(22,22,26,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.form-section h3 {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.field {
  margin-bottom: 1rem;
}
.field:last-child { margin-bottom: 0; }

.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.field input, .field textarea, .field select {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.9rem;
  padding: 0.55rem 0.75rem;
  outline: none;
  transition: border-color 0.15s;
  font-family: inherit;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 80px; }
.field select option { background: var(--surface2); }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* Photo upload */
.photo-upload {
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  position: relative;
}
.photo-upload:hover { border-color: var(--accent); background: var(--accent-dim); }
.photo-upload input[type="file"] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%;
}
.photo-upload-icon { font-size: 1.8rem; color: var(--text-dim); margin-bottom: 0.5rem; }
.photo-upload p { font-size: 0.8rem; color: var(--text-muted); }
.photo-upload .hint { font-size: 0.75rem; color: var(--text-dim); margin-top: 4px; }

.photo-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 8px;
  margin-top: 12px;
}
.photo-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-thumb .remove-photo {
  position: absolute;
  top: 4px; right: 4px;
  background: rgba(0,0,0,0.7);
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 20px; height: 20px;
  font-size: 12px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.photo-thumb .remove-photo:hover { background: var(--accent); }

/* Mods — form */
.mod-add-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.mod-add-row select { width: 140px; flex-shrink: 0; }
.mod-add-row input { flex: 1; }

.mods-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.mod-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.75rem;
  font-size: 0.875rem;
  transition: border-color 0.15s;
}
.mod-item:hover { border-color: rgba(255,255,255,0.12); }

.mod-cat-badge {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
  white-space: nowrap;
}

.mod-item-name { flex: 1; color: var(--text); }

.mod-item-remove {
  background: none; border: none; color: var(--text-dim);
  cursor: pointer; font-size: 18px; line-height: 1;
  padding: 0 2px; flex-shrink: 0;
  transition: color 0.15s;
}
.mod-item-remove:hover { color: var(--accent); }

/* Mods — detail page */
.mods-group { margin-bottom: 1rem; }
.mods-group:last-child { margin-bottom: 0; }

.mods-group-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-dim);
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
}

.mods-group-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mod-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mod-detail-item:last-child { border-bottom: none; }

.mod-detail-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: 2px;
}

/* FORM ACTIONS */
.form-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

/* CAR DETAIL PAGE */
.car-detail {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.car-detail-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.car-detail-title h1 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}
.car-detail-title .year-make {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 3px;
}

.car-detail-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* Photo gallery */
.photo-gallery {
  margin-bottom: 1.5rem;
}
.gallery-main {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface2);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-main img {
  max-width: 100%;
  max-height: 70vh;
  width: auto; height: auto;
  display: block;
  object-fit: contain;
}
.gallery-main .no-photo {
  width: 100%; min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.5rem;
  color: var(--text-dim);
}
.gallery-main .no-photo span { font-size: 3rem; }
.gallery-main .no-photo p { font-size: 0.85rem; }

.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.gallery-thumbs::-webkit-scrollbar { height: 4px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--surface2); border-radius: 2px; }

.gallery-thumb {
  flex-shrink: 0;
  width: 70px; height: 50px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.15s;
}
.gallery-thumb.active { border-color: var(--accent); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Specs & Mods */
.detail-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 560px) { .detail-sections { grid-template-columns: 1fr; } }

.detail-card {
  background: rgba(22,22,26,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}
.detail-card h3 {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-row .spec-label { color: var(--text-muted); }
.spec-row .spec-value { font-weight: 500; text-align: right; max-width: 60%; }


/* LIKE BUTTON */
.like-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  color: var(--text-dim);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.like-btn:hover { color: var(--accent); border-color: rgba(230,48,48,0.3); }
.like-btn.liked { color: var(--accent); border-color: rgba(230,48,48,0.35); background: rgba(230,48,48,0.08); }

.like-btn-lg {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

/* STATUS BADGE */
.status-badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
}

/* INSTAGRAM LINK */
.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 6px;
  transition: color 0.15s;
}
.ig-link:hover { color: #e1306c; }

/* TOAST */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  z-index: 100;
  animation: slide-in 0.2s ease;
  color: var(--text);
}
.toast.success { border-color: rgba(40,200,100,0.4); }
.toast.error { border-color: rgba(230,48,48,0.4); }

@keyframes slide-in {
  from { transform: translateY(8px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* CALLOUT POPUP NOTIFICATION */
.callout-popup {
  position: fixed;
  top: 1rem; right: 1rem;
  z-index: 300;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid rgba(230,48,48,0.35);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem 0.85rem 0.9rem;
  box-shadow: 0 14px 36px -12px rgba(0,0,0,0.7);
  cursor: pointer;
  max-width: 320px;
  opacity: 0;
  transform: translateX(120%);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.2,0.8,0.2,1);
}
.callout-popup.show { opacity: 1; transform: translateX(0); }
.callout-popup:hover { border-color: var(--accent); }
.callout-popup-icon {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.callout-popup-title { font-size: 0.9rem; font-weight: 600; }
.callout-popup-sub { font-size: 0.78rem; color: var(--text-muted); margin-top: 1px; }

@media (max-width: 600px) {
  .callout-popup { left: 1rem; right: 1rem; max-width: none; }
}

/* AUTH MODAL */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.15s ease;
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.auth-modal {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  width: 100%;
  max-width: 380px;
  margin: 1rem;
  animation: slide-up 0.2s ease;
}

@keyframes slide-up {
  from { transform: translateY(12px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.auth-close {
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}
.auth-close:hover { color: var(--text); background: var(--surface2); }

.auth-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}
.auth-logo svg { color: var(--accent); }

.auth-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.auth-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.auth-form .field { margin-bottom: 1rem; }
.auth-form .field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.auth-error {
  font-size: 0.8rem;
  color: #e65050;
  min-height: 1.2em;
  margin: 0.25rem 0 0.5rem;
}

.auth-toggle {
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}
.auth-toggle button {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  font-size: inherit;
  padding: 0;
  text-decoration: underline;
}
.auth-toggle button:hover { opacity: 0.8; }

/* RESPONSIVE */
@media (max-width: 600px) {
  .field-row { grid-template-columns: 1fr; }
  nav { padding: 0.75rem 1rem; }
  main, .form-page, .car-detail { padding: 1.25rem 1rem; }
  .car-detail-header { flex-direction: column; }
  .car-detail-actions { width: 100%; }
}

/* ─── POLISH ───────────────────────────────────────────────────── */

html { scroll-behavior: smooth; }

/* Sticky-nav offset so #garage isn't hidden under the bar */
#garage { scroll-margin-top: 80px; }

/* Text selection + accent caret */
::selection { background: rgba(230,48,48,0.3); color: #fff; }
input, textarea { caret-color: var(--accent); }

/* Refined global scrollbar */
* { scrollbar-width: thin; scrollbar-color: var(--surface2) transparent; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--surface2);
  border-radius: 100px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: #2c2c34; }

/* Keyboard-accessible focus rings (mouse clicks stay clean) */
.btn:focus-visible,
.car-card:focus-visible,
.like-btn:focus-visible,
.gallery-thumb:focus-visible,
.nav-logo a:focus-visible,
.auth-toggle button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Tactile button press */
.btn:active { transform: translateY(1px); }

/* Logo hover */
.nav-logo a { transition: opacity 0.15s; }
.nav-logo a:hover { opacity: 0.85; }

/* Stat pills lift slightly */
.stat-pill { transition: border-color 0.15s, transform 0.15s; }
.stat-pill:hover { border-color: rgba(255,255,255,0.14); transform: translateY(-2px); }

/* Like-button heartbeat when newly liked */
.like-btn.liked svg { animation: like-pop 0.3s ease; }
@keyframes like-pop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* Gentle entrance for the car grid */
.car-grid { animation: fade-rise 0.35s ease both; }
@keyframes fade-rise {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* User avatar menu */
.user-menu { position: relative; }
.user-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: var(--accent-dim);
  color: #f1a0a0;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.15s, background 0.15s;
}
.user-avatar:hover { border-color: rgba(230,48,48,0.4); background: rgba(230,48,48,0.2); }
.user-avatar { position: relative; }
.avatar-dot {
  display: none;
  position: absolute;
  top: -2px; right: -2px;
  width: 10px; height: 10px;
  background: var(--accent);
  border: 2px solid var(--bg);
  border-radius: 50%;
}
.user-menu-item { display: flex; align-items: center; justify-content: space-between; }
.menu-count:not(:empty) {
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px; height: 18px;
  padding: 0 5px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}

.user-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 190px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 32px -12px rgba(0,0,0,0.7);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  z-index: 20;
}
.user-menu-panel.open { opacity: 1; visibility: visible; transform: translateY(0); }

.user-menu-email {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 6px 10px 8px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
  word-break: break-all;
}
.user-menu-item {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  font-size: 0.85rem;
  font-family: inherit;
  padding: 0.5rem 0.65rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.12s;
}
.user-menu-item:hover { background: var(--surface2); }
.user-menu-item.danger { color: #e67070; }

/* Loading skeletons */
.skeleton-card {
  background: rgba(22,22,26,0.5);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
}
.skeleton-img { height: 180px; }
.skeleton-body { padding: 0.85rem 1.1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.skeleton-line { height: 12px; border-radius: 6px; }
.skeleton-line.sm { width: 55%; height: 10px; }
.skeleton-line.badges { width: 70%; height: 18px; margin-top: 4px; }
.skeleton {
  background: linear-gradient(100deg, var(--surface2) 30%, #2a2a32 50%, var(--surface2) 70%);
  background-size: 200% 100%;
  animation: shimmer 1.3s ease-in-out infinite;
}
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* Photo lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.18s ease;
}
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.8);
  animation: slide-up 0.2s ease;
}
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1.25rem;
  background: none; border: none;
  color: rgba(255,255,255,0.8);
  font-size: 2rem; line-height: 1;
  cursor: pointer;
  width: 44px; height: 44px;
  border-radius: 50%;
  transition: background 0.15s, color 0.15s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.12); color: #fff; }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  width: 46px; height: 46px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav.prev { left: 1.25rem; }
.lightbox-nav.next { right: 1.25rem; }
.lightbox-count {
  position: absolute;
  bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.gallery-main img { cursor: zoom-in; }

/* Remove blue tap-highlight flash on touch devices */
* { -webkit-tap-highlight-color: transparent; }

/* ── Large desktops: roomier canvas, more columns ── */
@media (min-width: 1400px) {
  main { max-width: 1320px; }
  .car-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
}

/* ── Tablet ── */
@media (max-width: 900px) {
  .hero-bio { padding: 2.5rem 0 2rem; }
  .hero-bio-inner { align-items: stretch; }
  .hero-bio-stats { flex-direction: row; width: 100%; }
  .hero-bio-stats .stat-pill { flex: 1; min-width: 0; }
}

/* ── Phones ── */
@media (max-width: 600px) {
  /* Navbar: shrink controls so the Add Car button always fits */
  nav { gap: 8px; }
  .nav-logo { font-size: 1rem; gap: 7px; min-width: 0; }
  .nav-logo svg { width: 18px; height: 18px; flex-shrink: 0; }
  .nav-actions { gap: 6px; }
  .nav-actions .btn { padding: 0.4rem 0.7rem; font-size: 0.8rem; }
  #nav-auth { gap: 6px; margin-left: 4px; }

  .car-grid { grid-template-columns: 1fr; gap: 0.85rem; }
  .car-card-img, .car-card-img-placeholder { height: 200px; }

  /* Toolbar: search full width, controls share a row */
  .garage-toolbar { gap: 8px; }
  .search-wrap { flex-basis: 100%; }
  .toolbar-right { width: 100%; }
  .toolbar-right select { flex: 1; }

  /* Full-width primary actions are easier to thumb */
  .form-actions { flex-direction: column-reverse; }
  .form-actions .btn { width: 100%; justify-content: center; }
  .car-detail-actions { flex-wrap: wrap; }
  .car-detail-actions .btn,
  .car-detail-actions .like-btn-lg { flex: 1; justify-content: center; }

  /* Toast spans the width so it never clips */
  .toast { left: 1rem; right: 1rem; bottom: 1rem; text-align: center; }

  /* Mod add-row: category on its own line, input + Add share the next */
  .mod-add-row { flex-wrap: wrap; }
  .mod-add-row select { width: 100%; flex-basis: 100%; }
  .mod-add-row input { flex: 1; min-width: 0; }
  .mod-add-row .btn { flex-shrink: 0; }

  /* Long mod names wrap instead of pushing the row wider */
  .mod-item-name { min-width: 0; word-break: break-word; }

  /* Lightbox controls sized for thumbs, clear of the image */
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.2rem; }
  .lightbox-nav.prev { left: 0.5rem; }
  .lightbox-nav.next { right: 0.5rem; }
  .lightbox-close { top: 0.5rem; right: 0.75rem; }
  .lightbox img { max-width: 96vw; }
}

/* ─── SECTION TITLE ────────────────────────────────────────────── */
.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text);
  margin: 2.25rem 0 1rem;
}
.section-title::before {
  content: '';
  width: 22px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
  border-radius: 2px;
}
.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ─── SPOTLIGHT (most repped build) ────────────────────────────── */
.spotlight {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  min-height: 300px;
  margin-bottom: 0.5rem;
  background: var(--surface2);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.spotlight:hover {
  border-color: rgba(230,48,48,0.45);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px -18px rgba(230,48,48,0.25), 0 16px 36px -16px rgba(0,0,0,0.7);
}
.spotlight-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.spotlight:hover .spotlight-img { transform: scale(1.03); }
.spotlight::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(75deg, rgba(13,13,15,0.92) 8%, rgba(13,13,15,0.55) 45%, rgba(13,13,15,0.1) 80%);
  pointer-events: none;
}
.spotlight-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 300px;
  padding: 1.75rem;
}
.spotlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 0.9rem;
  box-shadow: 0 4px 18px -4px rgba(230,48,48,0.6);
}
.spotlight-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0.35rem;
  text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}
.spotlight-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.spotlight-reps {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent-hot);
  font-weight: 600;
}

@media (max-width: 600px) {
  .spotlight, .spotlight-body { min-height: 240px; }
  .spotlight-body { padding: 1.25rem; }
  .spotlight-title { font-size: 1.4rem; }
}

/* ─── FOOTER ───────────────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 2;
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  padding: 2rem 1.5rem 2.5rem;
  text-align: center;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}
.footer-logo svg { color: var(--accent); }
.footer-logo span { color: var(--accent); }
footer p {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ─── SCROLL-REVEAL CARD ENTRANCE (wired in app.js) ────────────── */
.car-grid > .car-card { opacity: 0; }
.car-grid > .car-card.in { opacity: 1; animation: fade-rise 0.45s ease backwards; }
@media (prefers-reduced-motion: reduce) {
  .car-grid > .car-card { opacity: 1; }
}

/* Carousel dots on card photos */
.car-dots {
  position: absolute;
  bottom: 8px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 5px;
  z-index: 2;
  pointer-events: none;
}
.car-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.2s, transform 0.2s;
}
.car-dot.active { background: #fff; transform: scale(1.25); }

/* ─── CAR PAGE HERO ────────────────────────────────────────────── */
.car-hero {
  --tint: rgba(230,48,48,0.18);
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface2);
  margin-bottom: 10px;
  cursor: zoom-in;
  animation: fade-rise 0.4s ease both;
}
.car-hero img {
  width: 100%;
  height: clamp(300px, 48vh, 480px);
  object-fit: cover;
  display: block;
}
.car-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,13,15,0.15) 0%, rgba(13,13,15,0) 30%, rgba(13,13,15,0.88) 96%),
    linear-gradient(0deg, var(--tint), transparent 50%);
  pointer-events: none;
}
.car-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.4rem 1.5rem;
  pointer-events: none;
}
.car-hero-content a, .car-hero-content .hero-chip { pointer-events: auto; }
.car-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.08;
  margin: 0.45rem 0 0.65rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.7);
}
.hero-chips {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  background: rgba(13,13,15,0.55);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 4px 11px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-decoration: none;
}
.hero-chip svg { opacity: 0.75; flex-shrink: 0; }
a.hero-chip:hover { border-color: var(--page-accent, var(--accent)); color: #fff; }

/* Status-accented detail cards */
.car-detail .detail-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
}
.car-detail .detail-card h3::before {
  content: '';
  width: 14px; height: 3px;
  border-radius: 2px;
  background: var(--page-accent, var(--accent));
}
.mods-group-icon { display: inline-flex; }

@media (max-width: 600px) {
  .car-hero img { height: 260px; }
  .car-hero-content { padding: 1rem; }
}

/* ─── SHARED UTILITY CLASSES (replaces repeated inline styles) ─── */
.text-area {
  width: 100%;
  min-height: 80px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.6rem 0.75rem;
  resize: vertical;
  outline: none;
  transition: border-color 0.15s;
}
.text-area:focus { border-color: var(--accent); }

.muted-center {
  color: var(--text-muted);
  padding: 3rem 0;
  text-align: center;
}

.owner-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.owner-link:hover { color: var(--accent); }

.list-heading {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin: 0.5rem 0 0.75rem;
}
.list-heading + .list-heading, .list-heading.spaced { margin-top: 1.5rem; }

/* ─── PROFILE PAGE ─────────────────────────────────────────────── */
.profile-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2.5rem 0 2rem;
  flex-wrap: wrap;
}
.profile-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid rgba(230,48,48,0.3);
  color: #f1a0a0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.profile-info {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.profile-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}
.profile-you-badge {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(230,48,48,0.25);
  border-radius: 100px;
  padding: 3px 10px;
}
.profile-stats { display: flex; gap: 10px; flex-shrink: 0; }

@media (max-width: 600px) {
  .profile-header { padding: 1.5rem 0; }
  .profile-name { font-size: 1.3rem; }
  .profile-stats { width: 100%; }
  .profile-stats .stat-pill { flex: 1; }
}

/* ─── PIT-LANE TICKER ──────────────────────────────────────────── */
.ticker {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(22,22,26,0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin-top: 1.75rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  padding: 0.55rem 0;
  animation: ticker-scroll 36s linear infinite;
  will-change: transform;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 2.75rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.ticker-item:hover { color: var(--text); }
.tick-tag {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 2px 8px;
  border-radius: 100px;
}
.tick-tag.new { background: rgba(99,153,34,0.15); color: #8fbf4d; border: 1px solid rgba(99,153,34,0.35); }
.tick-tag.hot { background: var(--accent-dim); color: var(--accent-hot); border: 1px solid rgba(230,48,48,0.35); }
.ticker-item .reps { color: var(--accent-hot); font-weight: 600; }

/* ─── SCROLL PROGRESS LINE ─────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 60;
  pointer-events: none;
}

/* ─── PAGE TRANSITIONS (browsers with View Transitions API) ────── */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vt-out 0.16s ease both; }
::view-transition-new(root) { animation: vt-in 0.2s ease both; }
@keyframes vt-out { to { opacity: 0; transform: translateY(-6px); } }
@keyframes vt-in { from { opacity: 0; transform: translateY(6px); } }

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .car-card:hover { transform: none; }
  .car-card:hover .car-card-img { transform: none; }
  .ticker-track { animation: none; }
  .ticker { overflow-x: auto; }
}

/* Hide Dragy label on tight phone navs (icon stays) */
@media (max-width: 600px) {
  .dragy-txt { display: none; }
}
