:root {
  --bg: #0f0f10;
  --surface: #171719;
  --surface-strong: #241113;
  --ink: #f5f5f5;
  --muted: #a8a8ad;
  --line: #342326;
  --yellow: #ff1f2d;
  --yellow-dark: #d4001d;
  --teal: #ff1f2d;
  --danger: #b91c1c;
  --success: #15803d;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 223, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner,
.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 22px;
}

.site-logo {
  width: clamp(132px, 16vw, 210px);
  max-height: 58px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 1))
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.82))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.38));
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow);
  color: #17130a;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.14);
}

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

.desktop-nav a,
.chip,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  font-weight: 700;
}

.desktop-nav a {
  color: var(--muted);
}

.desktop-nav a.active,
.desktop-nav a:hover {
  background: var(--surface-strong);
  color: var(--ink);
}

.btn {
  border: 0;
  cursor: pointer;
  background: var(--yellow);
  color: #17130a;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.13);
}

.btn.secondary {
  background: #f4e9ba;
  color: var(--ink);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--line);
  box-shadow: none;
}

.btn.danger {
  background: #fee2e2;
  color: var(--danger);
}

.btn.teal {
  background: var(--teal);
  color: #fff;
}

.main {
  padding: 28px 0 96px;
}

.page-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 18px;
}

.page-title h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
}

.page-title p {
  margin: 8px 0 0;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 22px;
}

.hero-main {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffe66d, #fff9dc 62%, #dff8f4);
  box-shadow: var(--shadow);
}

.hero-main h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(34px, 6vw, 70px);
  line-height: 0.98;
}

.hero-main p {
  max-width: 600px;
  color: #4f4425;
  font-size: 17px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.stat {
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.stat strong {
  display: block;
  font-size: 24px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.search-panel,
.panel,
.auth-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.search-panel {
  padding: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.form-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stepped-form .form-grid {
  display: block;
}

.stepped-form [data-step-item][hidden] {
  display: none !important;
}

.stepped-form [data-step-item] {
  width: min(100%, 760px);
  margin: 0 auto;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: #4d4326;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fffdf4;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}

.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.listing-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(77, 58, 0, 0.1);
}

.listing-card.vip {
  border-color: #d19800;
  box-shadow: 0 18px 42px rgba(209, 152, 0, 0.2);
}

.listing-cover {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f3e6b6;
}

.listing-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-row {
  position: absolute;
  inset: 10px 10px auto;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.badge.vip {
  background: var(--yellow);
}

.listing-body {
  padding: 14px;
}

.listing-body h2 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.2;
}

.price {
  color: #111827;
  font-size: 22px;
  font-weight: 900;
}

.price-azn,
.azn-preview {
  display: block;
  margin-top: 4px;
  color: #8a8170;
  font-size: 13px;
  font-weight: 800;
}

.step-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}

.step-tabs button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf4;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.step-tabs button.active {
  border-color: #d19800;
  background: var(--yellow);
  color: var(--ink);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.meta span {
  padding: 6px 8px;
  border-radius: 8px;
  background: #fff6cc;
}

.panel {
  padding: 18px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff5c7;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery figcaption {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.warning {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid #f3c25b;
  border-radius: 8px;
  background: #fff3c4;
  color: #6b3d00;
  font-weight: 900;
}

.auth-panel {
  width: min(460px, 100%);
  margin: 0 auto;
  padding: 22px;
}

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

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: #e0f2fe;
  color: #075985;
  font-weight: 900;
  font-size: 12px;
}

.status.approved {
  background: #dcfce7;
  color: #166534;
}

.status.rejected {
  background: #fee2e2;
  color: #991b1b;
}

.upload-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.bulk-upload {
  display: grid;
  gap: 12px;
}

.bulk-drop {
  display: grid;
  min-height: 150px;
  place-items: center;
  gap: 10px;
  border: 1px dashed #d1a100;
  border-radius: 8px;
  background: #fff9db;
  color: #5b4700;
  cursor: pointer;
  font-weight: 900;
}

.bulk-drop input[type="file"] {
  width: min(100%, 360px);
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf4;
  padding: 8px;
  cursor: pointer;
}

.bulk-drop .btn {
  cursor: pointer;
}

.bulk-drop svg {
  width: 34px;
  height: 34px;
}

.upload-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.upload-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 38px;
  gap: 10px;
  align-items: center;
  min-height: 112px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf4;
}

.image-role {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.image-role span {
  color: var(--muted);
  font-weight: 900;
}

.image-role strong {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #241113;
  color: var(--ink);
}

.upload-thumb {
  overflow: hidden;
  width: 92px;
  height: 92px;
  border-radius: 8px;
  background: #f4e4a4;
}

.upload-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-info {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.upload-info strong,
.upload-info span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.icon-btn {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff7d4;
  color: var(--ink);
  cursor: pointer;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.choice-grid.compact {
  max-width: 640px;
}

.choice-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf4;
  cursor: pointer;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.choice-pill input[type="radio"],
.choice-pill input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--yellow-dark);
  cursor: pointer;
}

.choice-pill:has(input:checked) {
  border-color: #d19800;
  background: var(--yellow);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.12);
}

.color-dot {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 999px;
}

.equipment-grid {
  max-height: 280px;
  overflow-y: auto;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf4;
}

.equipment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 14px;
}

.equipment-list span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 6px 9px;
  border-radius: 8px;
  background: #fff6cc;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.equipment-list svg {
  width: 14px;
  height: 14px;
  color: var(--success);
}

.infinite-status {
  padding: 18px 0 0;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.infinite-sentinel {
  height: 1px;
}

.carousel {
  display: grid;
  gap: 10px;
}

.carousel-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4e4a4;
}

.carousel-slide {
  display: none;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #181818;
}

.carousel-slide span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-weight: 900;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-count {
  position: absolute;
  top: 12px;
  right: 12px;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  font-weight: 900;
}

.carousel-thumbs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 88px;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.carousel-thumbs button {
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  background: #fff;
  cursor: pointer;
}

.carousel-thumbs button.active {
  border-color: var(--yellow-dark);
}

.carousel-thumbs img {
  width: 88px;
  height: 66px;
  object-fit: cover;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.92);
  touch-action: none;
}

.lightbox img {
  max-width: 94vw;
  max-height: 86vh;
  object-fit: contain;
  transition: transform 0.16s ease;
  transform-origin: center;
  cursor: zoom-in;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  z-index: 101;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  cursor: pointer;
}

.lightbox-close {
  top: 18px;
  right: 18px;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  font-weight: 900;
  transform: translateX(-50%);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.admin-catalog {
  align-self: start;
}

.admin-catalog summary {
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

.catalog-form,
.catalog-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
}

.catalog-row {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

.catalog-form:has(select),
.catalog-row:has(select) {
  grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1fr) auto auto;
}

.catalog-form input[type="color"],
.catalog-row input[type="color"] {
  width: 52px;
  padding: 4px;
}

.inline-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 42px;
}

.inline-check input {
  width: auto;
  min-height: auto;
}

.muted {
  color: var(--muted);
  font-weight: 800;
}

.upload-slot {
  min-height: 260px;
  border: 1px dashed #d1a100;
  border-radius: 8px;
  background: #fff9db;
  padding: 12px;
}

.upload-slot strong {
  display: block;
  margin-bottom: 10px;
}

.upload-preview {
  display: grid;
  min-height: 130px;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #f4e4a4;
  color: var(--muted);
  font-weight: 800;
}

.upload-preview img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

progress {
  width: 100%;
  height: 10px;
  margin-top: 10px;
  accent-color: var(--yellow-dark);
}

.upload-status {
  min-height: 38px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.has-error {
  border-color: var(--danger);
}

.flash-stack {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.flash {
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
}

.flash.success {
  border-color: #86efac;
  background: #f0fdf4;
  color: #166534;
}

.flash.warning {
  border-color: #fde68a;
  background: #fffbeb;
  color: #92400e;
}

.flash.error {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
}

.empty {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.mobile-footer {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 244, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.mobile-footer a {
  display: grid;
  min-height: 62px;
  place-items: center;
  padding: 8px 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.mobile-footer a.active {
  color: #17130a;
  background: var(--yellow);
}

.mobile-footer a:first-child.active {
  border-radius: 8px 0 0 8px;
}

.mobile-footer a:last-child.active {
  border-radius: 0 8px 8px 0;
}

.mobile-footer svg,
.desktop-nav svg,
.btn svg,
.warning svg,
.brand-mark svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .mobile-footer {
    display: grid;
  }

  .hero,
  .detail-layout,
  .form-grid,
  .form-grid.two,
  .upload-grid,
  .upload-list,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .catalog-form,
  .catalog-row,
  .catalog-form:has(select),
  .catalog-row:has(select) {
    grid-template-columns: 1fr;
  }

  .upload-item {
    grid-template-columns: 78px minmax(0, 1fr) 36px;
  }

  .upload-thumb {
    width: 78px;
    height: 78px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .listings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .listing-body {
    padding: 10px;
  }

  .listing-body h2 {
    font-size: 14px;
    line-height: 1.25;
  }

  .price {
    font-size: 16px;
  }

  .step-tabs {
    grid-template-columns: 1fr;
  }

  .meta {
    gap: 5px;
    font-size: 11px;
  }

  .meta span {
    padding: 4px 6px;
  }

  .badge {
    min-height: 24px;
    padding: 0 7px;
    font-size: 10px;
  }

  .page-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .main {
    padding-top: 20px;
  }

  .header-inner,
  .container {
    width: min(100% - 22px, 1160px);
  }

  .hero-main {
    padding: 22px;
  }
}

@media (min-width: 901px) and (max-width: 1120px) {
  .listings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.site-header {
  background: rgba(12, 12, 13, 0.94);
}

.brand-mark,
.btn,
.mobile-footer a.active,
.badge.vip {
  color: #fff;
  background: var(--yellow);
}

.btn {
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.22), 0 10px 24px rgba(255, 31, 45, 0.18);
}

.btn.secondary,
.btn.ghost,
.desktop-nav a:hover,
.desktop-nav a.active {
  border: 1px solid #3a3a40;
  background: #252528;
  color: var(--ink);
  border-color: #3a3a40;
}

.btn.danger {
  background: #3b1114;
  color: #ff9ba3;
}

.search-only {
  margin-bottom: 22px;
}

.search-only .search-panel {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(150px, 1fr)) auto;
  gap: 12px;
  align-items: end;
}

.search-panel,
.panel,
.auth-panel,
.listing-card,
.gallery figure,
.carousel-stage,
.upload-slot,
.upload-preview,
.flash,
.empty {
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

label {
  color: #d7d7dc;
}

input,
select,
textarea,
.choice-pill,
.equipment-grid,
.upload-item,
.bulk-drop,
.bulk-drop input[type="file"],
.icon-btn,
.carousel-thumbs button {
  background: #1d1d20;
  color: var(--ink);
  border-color: var(--line);
}

input::placeholder,
textarea::placeholder {
  color: #74747a;
}

option {
  color: var(--ink);
  background: #1d1d20;
}

.listing-card.vip {
  border-color: var(--yellow);
  box-shadow: 0 18px 42px rgba(255, 31, 45, 0.18);
}

.listing-cover,
.upload-thumb,
.carousel-stage,
.gallery figure,
.gallery img {
  background: #0b0b0c;
}

.badge {
  background: rgba(15, 15, 16, 0.88);
  color: var(--ink);
}

.price {
  color: var(--ink);
}

.price-azn,
.azn-preview {
  color: #8f8f96;
}

.step-tabs {
  display: block;
  min-height: 42px;
  margin-bottom: 16px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #1d1d20;
  color: var(--yellow);
  font-weight: 900;
}

.meta span,
.equipment-list span {
  background: #241113;
  color: var(--ink);
}

.warning {
  border-color: #64151c;
  background: #241113;
  color: #ffb3b9;
}

.choice-pill input[type="radio"],
.choice-pill input[type="checkbox"],
progress {
  accent-color: var(--yellow);
}

.choice-pill:has(input:checked) {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #fff;
}

.step-skip.is-lit {
  border-color: var(--yellow);
  color: #fff;
  background: #3a1015;
  box-shadow: 0 0 0 3px rgba(255, 31, 45, 0.18);
}

.color-dot {
  border-color: rgba(255, 255, 255, 0.45);
}

.mobile-footer {
  background: rgba(17, 17, 19, 0.96);
}

.flash.success,
.flash.warning,
.flash.error {
  background: #1d1d20;
}

@media (max-width: 900px) {
  .search-only .search-panel {
    grid-template-columns: 1fr;
  }
}
