/* ═══════════════════════════════════════════════════════════════
   PC Shop — refurb listings styles
   Uses the site's existing CSS variables from style.css:
     --primary, --primary-dark, --primary-light, --primary-rgb
     --accent, --accent-dark
     --bg-body, --bg-surface, --bg-subtle, --bg-elevated
     --text-heading, --text-body, --text-on-primary, --text-on-accent
     --border, --header-bg, --footer-bg
     --radius, --radius-lg, --radius-xl
     --shadow, --shadow-md, --shadow-lg
     --max-width, --transition
   Reuses existing classes wherever possible: .page-hero, .container,
   .btn, .btn-primary, .section, .breadcrumbs (built ad-hoc here).
   ═══════════════════════════════════════════════════════════════ */

/* ─── Breadcrumbs (light, brand-style) ───────────────────────── */
.shop-breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-body);
  margin-bottom: 1rem;
}
.shop-breadcrumbs a { color: inherit; text-decoration: none; }
.shop-breadcrumbs a:hover { color: var(--primary); text-decoration: underline; }
.shop-breadcrumbs span.sep { margin: 0 .35rem; opacity: .5; }

/* ─── Hero meta chip row (under .page-hero h1/p) ────────────── */
.shop-hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-body);
  position: relative;
  z-index: 1;
}
.shop-hero-meta span { display: inline-flex; align-items: center; gap: .4rem; }
.shop-hero-meta i { color: var(--primary); }

/* ─── Listing layout ────────────────────────────────────────── */
.shop-listing {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  padding: 3rem 0 5rem;
}
@media (max-width: 768px) {
  .shop-listing { grid-template-columns: 1fr; gap: 1.5rem; }
  .shop-filters { order: 2; }
}

.shop-filters { position: sticky; top: 100px; align-self: start; }
.shop-filter-group { margin-bottom: 1.75rem; }
.shop-filter-group h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-body);
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.shop-filter-group ul { list-style: none; padding: 0; margin: 0; }
.shop-filter-group li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text-heading);
  font-size: 0.95rem;
  transition: background var(--transition-fast, 0.15s ease), color var(--transition-fast, 0.15s ease);
}
.shop-filter-group li a span { color: var(--text-body); font-size: 0.85rem; }
.shop-filter-group li a:hover { background: var(--bg-subtle); }
.shop-filter-group li a.active {
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
}
[data-theme="dark"] .shop-filter-group li a.active { color: var(--text-on-primary); }

.shop-filter-info {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  font-size: 0.85rem;
  color: var(--text-body);
}
.shop-filter-info h3 {
  margin-top: 0;
  font-size: 0.9rem;
  color: var(--text-heading);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}
.shop-filter-info p { margin: 0.25rem 0 0.75rem; }
.shop-filter-info ul { list-style: none; padding: 0; }
.shop-filter-info li { margin: 0.3rem 0; }
.shop-filter-info li a { color: var(--primary); text-decoration: none; font-weight: 500; }
.shop-filter-info li a:hover { text-decoration: underline; }

/* ─── Card grid ─────────────────────────────────────────────── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.shop-card {
  display: block;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition, 0.3s ease), box-shadow var(--transition, 0.3s ease), border-color var(--transition, 0.3s ease);
  box-shadow: var(--shadow);
}
.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.shop-card.is-reserved { opacity: 0.7; }
.shop-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-subtle);
}
.shop-card-image img { width: 100%; height: 100%; object-fit: cover; }
.shop-card-overlay {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(220, 38, 38, 0.92);
  color: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.shop-card-body { padding: 1.1rem 1.1rem 1.25rem; }
.shop-card-cat {
  font-size: 0.7rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.shop-card-title {
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--text-heading);
  margin: 0 0 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 600;
}
.shop-card-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.shop-card-specs li {
  background: var(--bg-subtle);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  color: var(--text-body);
}
.shop-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.5rem 0 0.25rem;
}
.shop-card-price .price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.shop-card-price .price-vat {
  font-size: 0.75rem;
  color: var(--text-body);
}
.shop-card-warranty {
  font-size: 0.8rem;
  color: var(--text-body);
}
.shop-card-warranty i { color: var(--primary); margin-right: 0.25rem; }

.shop-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-body);
  background: var(--bg-subtle);
  border-radius: var(--radius-xl);
}
.shop-empty i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
  opacity: 0.5;
}
.shop-empty h2 { color: var(--text-heading); margin: 0 0 0.5rem; }
.shop-empty p { max-width: 50ch; margin: 0 auto; }
.shop-empty a { color: var(--primary); }

.shop-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
.shop-pagination a {
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text-heading);
  font-weight: 500;
}
.shop-pagination a:hover { border-color: var(--primary); color: var(--primary); }
.shop-pagination a.active {
  background: var(--primary);
  color: var(--text-on-primary);
  border-color: var(--primary);
}

/* ─── Detail page ───────────────────────────────────────────── */
.shop-detail {
  padding: 7rem 0 5rem;  /* top accounts for fixed header */
}
.shop-detail .shop-breadcrumbs { margin-top: 0; }
.shop-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  margin-top: 1.5rem;
}
@media (max-width: 900px) { .shop-detail-grid { grid-template-columns: 1fr; gap: 2rem; } }

.shop-gallery-main {
  background: var(--bg-subtle);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.shop-gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.shop-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.shop-thumb {
  background: var(--bg-subtle);
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  aspect-ratio: 1;
  transition: border-color var(--transition-fast, 0.15s ease);
}
.shop-thumb img { width: 100%; height: 100%; object-fit: cover; }
.shop-thumb.active, .shop-thumb:hover { border-color: var(--primary); }

.shop-detail-info h1 {
  margin: 0.4rem 0 0.4rem;
  font-size: 1.85rem;
  line-height: 1.2;
  color: var(--text-heading);
}
.shop-detail-cat {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
}
.shop-detail-sub {
  color: var(--text-body);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.shop-detail-price {
  margin: 1.25rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.shop-detail-price .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.shop-detail-price .price-vat {
  color: var(--text-body);
  font-size: 0.95rem;
}

.shop-detail-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.shop-badge {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.badge-available { background: #d1fae5; color: #065f46; }
.badge-reserved  { background: #fef3c7; color: #92400e; }
.badge-sold      { background: #fee2e2; color: #991b1b; }
[data-theme="dark"] .badge-available { background: #064e3b; color: #a7f3d0; }
[data-theme="dark"] .badge-reserved  { background: #78350f; color: #fde68a; }
[data-theme="dark"] .badge-sold      { background: #7f1d1d; color: #fecaca; }
.shop-chip {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-body);
}
.shop-chip i { margin-right: 0.35rem; color: var(--primary); }

.shop-cta {
  width: 100%;
  margin: 0.75rem 0 0.5rem;
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
}
.shop-cta-fineprint {
  font-size: 0.85rem;
  color: var(--text-body);
  margin: 0 0 1rem;
}

.shop-trust {
  list-style: none;
  padding: 1.25rem 0 0;
  margin: 1.5rem 0 0;
  border-top: 1px solid var(--border);
}
.shop-trust li {
  padding: 0.4rem 0;
  color: var(--text-body);
  font-size: 0.95rem;
}
.shop-trust i { color: #10b981; margin-right: 0.5rem; }

.shop-specs, .shop-condition, .shop-trust-bar { margin-top: 3rem; }
.shop-specs h2, .shop-condition h2, .shop-trust-bar h2 {
  margin: 0 0 1rem;
  color: var(--text-heading);
}
.shop-specs dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
@media (max-width: 600px) { .shop-specs dl { grid-template-columns: 1fr; } }
.shop-specs dl > div { display: contents; }
.shop-specs dt, .shop-specs dd {
  padding: 0.7rem 0.25rem;
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.shop-specs dt { font-weight: 600; color: var(--text-body); }
.shop-specs dd { color: var(--text-heading); }

.shop-trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  background: var(--bg-subtle);
  border-radius: var(--radius-xl);
}
.shop-trust-bar > div { text-align: center; }
.shop-trust-bar i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}
.shop-trust-bar h4 { margin: 0 0 0.35rem; color: var(--text-heading); }
.shop-trust-bar p { margin: 0; font-size: 0.9rem; color: var(--text-body); }
.shop-trust-bar a { color: var(--primary); }

/* ─── Reserve modal ─────────────────────────────────────────── */
.shop-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.shop-modal.open { display: flex; }
.shop-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
.shop-modal-card {
  position: relative;
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.shop-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: 0;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-body);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  line-height: 1;
}
.shop-modal-close:hover { background: var(--bg-subtle); color: var(--text-heading); }
.shop-modal h2 { margin: 0 0 0.5rem; color: var(--text-heading); }
.shop-modal-sub {
  color: var(--text-body);
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
}
.shop-modal label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-heading);
}
.shop-modal label > span { color: #ef4444; }
.shop-modal input[type=text],
.shop-modal input[type=email],
.shop-modal input[type=tel],
.shop-modal textarea {
  display: block;
  width: 100%;
  padding: 0.65rem 0.75rem;
  margin-top: 0.35rem;
  border: 1px solid var(--input-border, var(--border));
  border-radius: var(--radius);
  font: inherit;
  background: var(--input-bg, var(--bg-surface));
  color: var(--text-heading);
  transition: border-color var(--transition-fast, 0.15s ease), box-shadow var(--transition-fast, 0.15s ease);
}
.shop-modal input:focus, .shop-modal textarea:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--input-focus-ring, rgba(26, 86, 219, 0.15));
}
.shop-modal textarea { resize: vertical; min-height: 60px; }
.shop-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 480px) { .shop-form-row { grid-template-columns: 1fr; } }

.shop-form-fulfilment { border: 0; padding: 0; margin: 0 0 1rem; }
.shop-form-fulfilment legend {
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0;
  margin-bottom: 0.4rem;
  color: var(--text-heading);
}
.shop-radio {
  display: flex !important;
  gap: 0.55rem;
  align-items: flex-start;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
  cursor: pointer;
  font-weight: 500 !important;
}
.shop-radio input { margin-top: 0.2rem; accent-color: var(--primary); }
.shop-radio:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-light);
}
[data-theme="dark"] .shop-radio:has(input:checked) {
  background: rgba(var(--primary-rgb), 0.15);
}

.shop-modal-summary {
  margin: 1rem 0;
  padding: 1rem 1.1rem;
  background: var(--bg-subtle);
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  color: var(--text-body);
}
.shop-modal-summary > div { margin: 0.25rem 0; }
.shop-modal-summary strong { color: var(--text-heading); }
.shop-summary-total {
  padding-top: 0.6rem !important;
  border-top: 1px solid var(--border);
  margin-top: 0.6rem !important;
  font-size: 1.05rem;
}
.shop-summary-total strong { color: var(--primary); font-weight: 700; }
.shop-form-error {
  background: rgba(220, 38, 38, 0.1);
  color: #b91c1c;
  border: 1px solid rgba(220, 38, 38, 0.25);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin: 0.75rem 0;
  font-size: 0.9rem;
}
[data-theme="dark"] .shop-form-error { background: rgba(220, 38, 38, 0.15); color: #fca5a5; }

/* ─── Order confirmation page ───────────────────────────────── */
.shop-order { padding: 7rem 0 5rem; }
.shop-order-banner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  margin: 1rem 0 2rem;
  border: 1px solid transparent;
}
.shop-order-banner i { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.25rem; }
.shop-order-banner h2 { margin: 0 0 0.25rem; font-size: 1.15rem; }
.shop-order-banner p { margin: 0; }
.banner-pending   { background: #fef3c7; color: #78350f; border-color: #fcd34d; }
.banner-paid      { background: #d1fae5; color: #064e3b; border-color: #6ee7b7; }
.banner-cancelled { background: #fee2e2; color: #7f1d1d; border-color: #fca5a5; }
[data-theme="dark"] .banner-pending   { background: rgba(245, 158, 11, 0.15); color: #fde68a; border-color: rgba(245, 158, 11, 0.3); }
[data-theme="dark"] .banner-paid      { background: rgba(16, 185, 129, 0.15); color: #a7f3d0; border-color: rgba(16, 185, 129, 0.3); }
[data-theme="dark"] .banner-cancelled { background: rgba(220, 38, 38, 0.15); color: #fecaca; border-color: rgba(220, 38, 38, 0.3); }

.shop-order-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 900px) { .shop-order-grid { grid-template-columns: 1fr; gap: 2rem; } }

.shop-order-bacs h2, .shop-order-bacs h3 { color: var(--text-heading); }
.shop-order-intro { color: var(--text-body); margin: 0 0 1rem; }

.shop-bacs-block {
  margin: 1rem 0;
  padding: 1.5rem;
  background: var(--bg-subtle);
  border: 2px dashed var(--primary);
  border-radius: var(--radius-xl);
}
.shop-bacs-block > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 540px) {
  .shop-bacs-block > div { grid-template-columns: 1fr; gap: 0.15rem; }
}
.shop-bacs-block > div:last-child { border: 0; }
.shop-bacs-block dt {
  font-weight: 600;
  color: var(--text-body);
  margin: 0;
}
.shop-bacs-block dd {
  margin: 0;
  color: var(--text-heading);
  font-family: ui-monospace, SFMono-Regular, "Courier New", monospace;
}
.shop-bacs-amount dd {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  font-family: inherit;
}
.shop-bacs-ref dd code {
  background: var(--primary);
  color: var(--text-on-primary);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.shop-order-next ol { padding-left: 1.25rem; margin: 1rem 0; color: var(--text-body); }
.shop-order-next li { padding: 0.35rem 0; }
.shop-order-help {
  background: var(--bg-subtle);
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  font-size: 0.9rem;
  margin-top: 1rem;
  color: var(--text-body);
}
.shop-order-help a, .shop-order-help code {
  color: var(--primary);
  font-weight: 600;
}
.shop-vat-breakdown { font-size: 0.9rem; color: var(--text-body); }
.shop-margin-note {
  font-size: 0.85rem;
  color: var(--text-body);
  font-style: italic;
}

.shop-order-summary { align-self: start; position: sticky; top: 100px; }
.shop-order-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}
.shop-order-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
  background: var(--bg-subtle);
}
.shop-order-cat {
  font-size: 0.7rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.shop-order-title { font-weight: 600; margin: 0.25rem 0; color: var(--text-heading); }
.shop-order-link { font-size: 0.85rem; color: var(--primary); }

.shop-order-totals,
.shop-order-meta {
  margin: 0;
  padding: 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-surface);
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}
.shop-order-totals > div,
.shop-order-meta > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.4rem 0;
}
.shop-order-totals > div { border-bottom: 1px solid var(--border); }
.shop-order-totals > div:last-child { border: 0; padding-top: 0.6rem; }
.shop-order-totals dt,
.shop-order-meta dt {
  color: var(--text-body);
  margin: 0;
  font-weight: 500;
}
.shop-order-totals dd,
.shop-order-meta dd {
  margin: 0;
  font-weight: 500;
  text-align: right;
  color: var(--text-heading);
}
.shop-order-total dt,
.shop-order-total dd { font-size: 1.1rem; font-weight: 700; }
.shop-order-total dd { color: var(--primary); }

.shop-status {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.shop-status-awaiting_payment { background: #fef3c7; color: #92400e; }
.shop-status-paid      { background: #d1fae5; color: #065f46; }
.shop-status-completed { background: #dbeafe; color: #1e40af; }
.shop-status-cancelled,
.shop-status-expired   { background: #fee2e2; color: #991b1b; }
[data-theme="dark"] .shop-status-awaiting_payment { background: #78350f; color: #fde68a; }
[data-theme="dark"] .shop-status-paid      { background: #064e3b; color: #a7f3d0; }
[data-theme="dark"] .shop-status-completed { background: #1e3a8a; color: #bfdbfe; }
[data-theme="dark"] .shop-status-cancelled,
[data-theme="dark"] .shop-status-expired   { background: #7f1d1d; color: #fecaca; }

/* ─── Info pages (how-it-works / warranty / returns) ────────── */
.shop-info { padding: 7rem 0 5rem; }
.shop-info-content {
  max-width: 760px;
  margin: 0 auto;
}
.shop-info h1 {
  margin: 1rem 0 1.5rem;
  color: var(--text-heading);
  font-size: 2rem;
}
.shop-info h3 {
  margin: 1.75rem 0 0.6rem;
  color: var(--text-heading);
  font-size: 1.15rem;
}
.shop-info p, .shop-info li {
  color: var(--text-body);
  line-height: 1.7;
}
.shop-info-lead {
  font-size: 1.1rem;
  color: var(--text-heading) !important;
  border-left: 4px solid var(--primary);
  padding: 0.5rem 0 0.5rem 1.25rem;
  margin: 1rem 0 2rem;
}
.shop-info code {
  background: var(--bg-subtle);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.92em;
  color: var(--primary);
  font-family: ui-monospace, SFMono-Regular, "Courier New", monospace;
}
.shop-info ol.shop-info-steps {
  counter-reset: none;
  padding-left: 0;
}
.shop-info ol.shop-info-steps ol,
.shop-info ol.shop-info-steps ul {
  margin-top: 0.5rem;
  padding-left: 1.25rem;
}
.shop-info ol.shop-info-steps li ul li,
.shop-info ol.shop-info-steps li ol li {
  padding: 0.15rem 0;
}
/* Don't override anchor color — style.css already sets a { color: var(--primary) }.
   A blanket .shop-info a rule overrides .btn-primary's white text and made the
   "Browse available units" CTA invisible (blue text on blue button). */
.shop-info p a, .shop-info li a, .shop-info dt a, .shop-info dd a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.shop-info ul { padding-left: 1.25rem; }
.shop-info-steps {
  list-style: none;
  padding: 0;
}
/* Direct-child selector so nested <ul>/<ol> inside a step DON'T inherit
   the boxed card styling — they should render as plain sub-bullets. */
.shop-info-steps > li {
  margin: 1.25rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--bg-subtle);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  list-style: none;
}
.shop-info-steps > li > h3 {
  margin-top: 0;
  color: var(--text-heading);
}
.shop-info-steps > li > p:last-child { margin-bottom: 0; }
/* Nested lists inside a step card: plain bullets, tighter spacing */
.shop-info-steps > li ul,
.shop-info-steps > li ol {
  margin: 0.5rem 0 0.25rem;
  padding-left: 1.25rem;
}
.shop-info-steps > li ul li,
.shop-info-steps > li ol li {
  padding: 0.2rem 0;
  background: transparent;
  border: 0;
  margin: 0;
  list-style: disc;
}
.shop-info-steps > li ol li { list-style: decimal; }
.shop-info-cta {
  margin-top: 2.5rem;
  text-align: center;
}
