/* ============================================================
   Riddell SpeedFlex Helmets — Reusable Components
   ============================================================ */

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all var(--transition-base);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.btn--primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  border-color: var(--clr-accent);
}

.btn--primary:hover {
  background: var(--clr-accent-hover);
  border-color: var(--clr-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
  color: var(--clr-white);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn--dark {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
}

.btn--dark:hover {
  background: var(--clr-primary-light);
  border-color: var(--clr-primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
  color: var(--clr-white);
}

.btn--outline {
  background: transparent;
  color: var(--clr-text);
  border-color: var(--clr-border-dark);
}

.btn--outline:hover {
  background: var(--clr-surface);
  border-color: var(--clr-text);
  color: var(--clr-text);
}

.btn--outline-white {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline-white:hover {
  background: var(--clr-white);
  border-color: var(--clr-white);
  color: var(--clr-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  background: transparent;
  color: var(--clr-text-secondary);
  border-color: transparent;
}

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

.btn--icon {
  padding: var(--space-3);
  border-radius: var(--radius-md);
  aspect-ratio: 1;
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}

.btn--full { width: 100%; }

.btn--pill {
  border-radius: var(--radius-full);
  padding: 14px 32px;
}
.btn--loading {
  color: transparent !important;
  pointer-events: none;
}

.btn--loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  filter: invert(1);
}

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

/* ── Card ─────────────────────────────────────────────────── */
.card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card__body {
  padding: var(--space-6);
}

/* ── Product Card ──────────────────────────────────────────── */
.product-card {
  background: var(--clr-white);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.product-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  transform: translateY(-6px);
  border-color: transparent;
}

.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
  display: flex;
  flex-direction: column;
}

.product-card__image-wrap > a {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  mix-blend-mode: multiply;
}

.product-card:hover .product-card__image {
  transform: scale(1.06);
}

.product-card__badges {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  z-index: 2;
}

.product-card__quick-add {
  display: block;
  width: calc(100% - 24px);
  margin: 0 12px 12px;
  padding: 10px 16px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
  position: relative;
  z-index: 2;
}

.product-card__quick-add:hover {
  background: var(--clr-primary, #c00);
  transform: translateY(-1px);
}

.product-card__quick-add.added {
  background: #1a7a3c;
}

.product-card__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
  background: var(--clr-white);
  border-top: 1px solid rgba(0,0,0,0.02);
}

.product-card__brand {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-accent);
  margin-bottom: var(--space-1);
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--clr-text);
  margin-bottom: var(--space-2);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__category {
  font-size: var(--text-xs);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-3);
}

.product-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  margin-top: auto;
  padding-top: var(--space-3);
}

.product-card__stock {
  font-size: var(--text-xs);
  font-weight: 600;
  margin-top: var(--space-2);
}

/* View Details inline button */
.product-card__view-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  background: transparent;
  border: 1.5px solid #1a1a1a;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s, color 0.18s;
  text-transform: uppercase;
}

.product-card__view-btn:hover {
  background: #1a1a1a;
  color: #fff;
}

/* Prices container */
.product-card__prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.stock--in     { color: var(--clr-success); }
.stock--low    { color: var(--clr-warning); }
.stock--out    { color: var(--clr-error); }

/* ── Quick View Modal ────────────────────────────────────── */
.pq-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: background 0.3s;
  backdrop-filter: blur(0px);
}

.pq-overlay.pq-overlay--open {
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
}

.pq-overlay.pq-overlay--open .pq-modal {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.pq-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  box-shadow: 0 32px 64px rgba(0,0,0,0.25);
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
}

.pq-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,0.08);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: background 0.18s;
}

.pq-close:hover {
  background: rgba(0,0,0,0.18);
}

.pq-img-col {
  position: relative;
  background: linear-gradient(135deg, #f5f5f5, #ebebeb);
  border-radius: 20px 0 0 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.pq-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.pq-badge {
  position: absolute;
  top: 16px;
  left: 16px;
}

.pq-info-col {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}

.pq-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-primary, #c00);
  padding: 4px 12px;
  background: rgba(200,0,0,0.08);
  display: inline-block;
  border-radius: 50px;
  margin: 0;
}

.pq-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  color: #111;
  line-height: 1.15;
  margin: 0;
}

.pq-stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 2px;
}

.pq-desc-wrap {
  border-left: 3px solid var(--clr-primary, #c00);
  padding-left: 16px;
  margin: 4px 0;
}

.pq-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
  font-style: italic;
}

.pq-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.pq-current-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--clr-primary, #c00);
}

.pq-old-price {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
}

.pq-cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.pq-add-btn {
  font-size: 15px;
  padding: 14px;
  border-radius: 50px;
}

.pq-view-btn {
  text-align: center;
  border-radius: 50px;
  padding: 12px;
  font-size: 13px;
}

@media (max-width: 640px) {
  .pq-modal {
    grid-template-columns: 1fr;
    max-height: 95vh;
  }
  .pq-img-col {
    border-radius: 20px 20px 0 0;
    min-height: 200px;
    max-height: 240px;
  }
  .pq-info-col {
    padding: 24px 20px;
    gap: 12px;
  }
}

/* ── Skeleton Product Card ───────────────────────────────── */
.product-card-skeleton .product-card__image-wrap {
  aspect-ratio: 4/3;
}

.product-card-skeleton .product-card__image-wrap,
.skel-line {
  background: linear-gradient(90deg, var(--clr-surface) 25%, var(--clr-surface-2) 50%, var(--clr-surface) 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

/* ── Section Header ─────────────────────────────────────── */
.section-header {
  margin-bottom: var(--space-12);
}

.section-header--center { text-align: center; }

.section-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-accent);
  margin-bottom: var(--space-3);
  position: relative;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--clr-accent);
  vertical-align: middle;
  margin-right: var(--space-2);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--clr-text);
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--clr-text-secondary);
  max-width: 600px;
  margin-bottom: 0;
}

.section-header--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ── Categories Scroll Container ────────────────────────── */
.categories-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  width: 100%;
}

@media (max-width: 1024px) {
  .categories-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-4); /* Space for scrollbar */
    margin: 0 calc(var(--space-5) * -1); /* Full bleed */
    padding: 0 var(--space-5) var(--space-4);
  }
  .categories-scroll::-webkit-scrollbar {
    height: 4px;
  }
  .categories-scroll::-webkit-scrollbar-thumb {
    background: var(--clr-border);
    border-radius: 4px;
  }
  .categories-scroll .category-card {
    flex: 0 0 75%;
    max-width: 320px;
    scroll-snap-align: center;
  }
}

/* ── Category Card ─────────────────────────────────────── */
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition: all var(--transition-base);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2xl);
}

.category-card__bg {
  position: absolute;
  inset: 0;
  background: var(--clr-surface);
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform var(--transition-slow);
}

.category-card:hover .category-card__bg {
  transform: scale(1.06);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.category-card__body {
  position: relative;
  z-index: 1;
  padding: var(--space-5);
  width: 100%;
}

.category-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.category-card__count {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.category-card__arrow {
  display: inline-flex;
  align-items: center;
  margin-top: var(--space-3);
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--clr-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap var(--transition-base);
}

.category-card:hover .category-card__arrow {
  gap: var(--space-3);
}

/* ── Feature / USP Cards ─────────────────────────────────── */
.feature-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--clr-accent), #8a1717);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  color: var(--clr-white);
  box-shadow: 0 8px 16px rgba(229, 57, 53, 0.3);
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-3);
}

.feature-card__text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ── Pagination ─────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-12);
  flex-wrap: wrap;
}

.pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 var(--space-3);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--clr-text);
  background: var(--clr-white);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.pagination__btn:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

.pagination__btn.active {
  background: var(--clr-accent);
  border-color: var(--clr-accent);
  color: var(--clr-white);
}

.pagination__btn:disabled,
.pagination__btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Checkbox & Radio ──────────────────────────────────── */
.check-label {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--clr-text-secondary);
  transition: color var(--transition-fast);
  user-select: none;
}

.check-label:hover { color: var(--clr-text); }

.check-label input[type="checkbox"],
.check-label input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--clr-accent);
  flex-shrink: 0;
}

/* ── Range Slider ──────────────────────────────────────── */
input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: var(--clr-surface-2);
  border-radius: var(--radius-full);
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--clr-accent);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

/* ── Alert ─────────────────────────────────────────────── */
.alert {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.alert--success { background: var(--clr-success-bg); color: var(--clr-success); border: 1px solid rgba(22,163,74,0.2); }
.alert--error   { background: var(--clr-error-bg); color: var(--clr-error); border: 1px solid rgba(220,38,38,0.2); }
.alert--warning { background: var(--clr-warning-bg); color: var(--clr-warning); border: 1px solid rgba(217,119,6,0.2); }
.alert--info    { background: var(--clr-info-bg); color: var(--clr-info); border: 1px solid rgba(37,99,235,0.2); }

/* ── Quantity Control ─────────────────────────────────── */
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.qty-control__btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-surface);
  border: none;
  cursor: pointer;
  font-size: var(--text-lg);
  color: var(--clr-text);
  transition: background var(--transition-fast);
  font-weight: 500;
}

.qty-control__btn:hover { background: var(--clr-surface-2); }
.qty-control__btn:disabled { opacity: 0.4; cursor: not-allowed; }

.qty-control__input {
  width: 56px;
  height: 40px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--clr-border);
  border-right: 1.5px solid var(--clr-border);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--clr-text);
  -moz-appearance: textfield;
}

.qty-control__input::-webkit-outer-spin-button,
.qty-control__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ── Tabs ─────────────────────────────────────────────── */
.tabs {
  display: flex;
  border-bottom: 2px solid var(--clr-border);
  gap: 0;
  overflow-x: auto;
}

.tab-btn {
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--clr-text-muted);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.tab-btn:hover { color: var(--clr-text); }

.tab-btn.active {
  color: var(--clr-accent);
  border-bottom-color: var(--clr-accent);
}

.tab-panel { display: none; padding: var(--space-6) 0; }
.tab-panel.active { display: block; }

/* ── Size Selector ─────────────────────────────────────── */
.size-selector,
.color-selector {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.size-btn {
  min-width: 48px;
  height: 40px;
  padding: 0 var(--space-3);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--clr-text);
  background: var(--clr-white);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.size-btn:hover:not(:disabled) {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

.size-btn.selected {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
}

.size-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
}

.color-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--clr-border);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.color-btn:hover { transform: scale(1.1); }

.color-btn.selected {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px var(--clr-surface), 0 0 0 5px var(--clr-primary);
}

.color-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.color-btn.selected::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.3);
}

/* ── Order Status Badges ─────────────────────────────── */
.status-fulfillment-pending     { --s-bg: #f3f4f6; --s-clr: #6b7280; }
.status-fulfillment-processing  { --s-bg: #eff6ff; --s-clr: #2563eb; }
.status-fulfillment-packed      { --s-bg: #f5f3ff; --s-clr: #7c3aed; }
.status-fulfillment-shipped     { --s-bg: #fffbeb; --s-clr: #d97706; }
.status-fulfillment-delivered   { --s-bg: #f0fdf4; --s-clr: #16a34a; }
.status-fulfillment-cancelled   { --s-bg: #fef2f2; --s-clr: #dc2626; }

.status-payment-pending   { --s-bg: #f3f4f6; --s-clr: #6b7280; }
.status-payment-paid      { --s-bg: #f0fdf4; --s-clr: #16a34a; }
.status-payment-failed    { --s-bg: #fef2f2; --s-clr: #dc2626; }
.status-payment-refunded  { --s-bg: #f5f3ff; --s-clr: #7c3aed; }
.status-payment-cancelled { --s-bg: #fef2f2; --s-clr: #dc2626; }

[class*="status-"] {
  background: var(--s-bg);
  color: var(--s-clr);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

/* ── Payment Method Selection ────────────────────────────── */
.payment-method-option {
  cursor: pointer;
}
.payment-method-option input[type="radio"] {
  display: none;
}
.payment-method-card {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-5);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--clr-text);
  transition: all var(--transition-base);
  background: var(--clr-white);
}
.payment-method-option input[type="radio"]:checked + .payment-method-card {
  border-color: var(--clr-accent);
  background: var(--clr-accent-light);
  color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.12);
}
.payment-method-card:hover {
  border-color: var(--clr-accent);
}
.payment-method-card svg {
  flex-shrink: 0;
}

/* ── Recommended Accessories Section ─────────────────────── */
.recommended-section {
  padding: var(--space-20) 0;
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
}

.recommended-section__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.recommended-section__label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--clr-accent);
  margin-bottom: var(--space-3);
}

.recommended-section__label::before,
.recommended-section__label::after {
  content: '— ';
}
.recommended-section__label::after {
  content: ' —';
}

.recommended-section__title {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--clr-text-main);
  margin-bottom: var(--space-3);
}

.recommended-section__sub {
  font-size: var(--text-base);
  color: var(--clr-text-muted);
}

.recommended-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

@media (max-width: 1024px) {
  .recommended-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .recommended-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }
}

@media (max-width: 480px) {
  .recommended-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
  }
}
