

.products-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 24px 16px;
}

.products-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.products-hero p {
  margin: 0;
  color: #d3d3d3;
  max-width: 760px;
}

.products-card-body {
  padding-bottom: 18px;
}

.product-range {
  color: #ffb5b5;
  font-weight: 700;
}

.product-short-copy {
  color: #cfcfcf;
  line-height: 1.5;
}

.product-page-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.product-page-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 520px);
  gap: 28px;
  align-items: start;
}

.product-media-card,
.product-info-card {
  background: #0b0b0b;
  border: 1px solid #242424;
  border-radius: 18px;
  overflow: hidden;
}

.product-media-card img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.product-info-card {
  padding: 28px;
}

.product-eyebrow {
  color: #b0b0b0;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.product-info-card h1 {
  margin: 10px 0 16px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.product-description,
.variant-copy,
.payment-note {
  color: #d0d0d0;
  line-height: 1.6;
}

.product-meta-block {
  margin-top: 18px;
}

.product-meta-block label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.product-select,
.product-quantity {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #353535;
  background: #121212;
  color: #ffffff;
}

.product-pricing-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
  padding: 18px;
  border-radius: 14px;
  background: #111111;
  border: 1px solid #292929;
}

.pricing-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaaaaa;
  margin-bottom: 6px;
}

.checkout-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.checkout-button {
  border: 0;
  border-radius: 12px;
  padding: 15px 16px;
  font-weight: 700;
  cursor: pointer;
}

.checkout-button:disabled {
  cursor: wait;
  opacity: 0.75;
}

.checkout-button-primary {
  background: #8f1010;
  color: white;
}

.checkout-button-secondary {
  background: #1c1c1c;
  color: white;
  border: 1px solid #404040;
}

.checkout-status {
  min-height: 24px;
  color: #ffcaca;
  margin-top: 10px;
}

.feature-list-wrap {
  margin-top: 28px;
}

.feature-list {
  padding-left: 18px;
  color: #d0d0d0;
  line-height: 1.7;
}

.products-error {
  color: #ffbdbd;
  padding: 24px;
  text-align: center;
}

@media (max-width: 900px) {
  .product-page-grid {
    grid-template-columns: 1fr;
  }

  .checkout-actions,
  .product-pricing-box {
    grid-template-columns: 1fr;
  }
}


.confirmation-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 52px 24px 96px;
}

.confirmation-card {
  background: #0b0b0b;
  border: 1px solid #242424;
  border-radius: 20px;
  padding: 28px;
}

.confirmation-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #151515;
  border: 1px solid #303030;
  color: #f2f2f2;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.confirmation-status-badge.success {
  color: #d7ffd7;
  border-color: #295329;
  background: #0f1b0f;
}

.confirmation-status-badge.pending {
  color: #ffe9bf;
  border-color: #6b551f;
  background: #1a1408;
}

.confirmation-status-badge.error {
  color: #ffd1d1;
  border-color: #6a2a2a;
  background: #1f0d0d;
}

.confirmation-title {
  margin: 18px 0 12px;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.confirmation-copy {
  color: #d0d0d0;
  line-height: 1.65;
}

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

.confirmation-stat {
  background: #111111;
  border: 1px solid #292929;
  border-radius: 14px;
  padding: 18px;
}

.confirmation-stat .label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaaaaa;
}

.confirmation-stat .value {
  color: #ffffff;
  font-weight: 700;
  word-break: break-word;
}

.confirmation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.confirmation-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
}

.confirmation-link-primary {
  background: #8f1010;
  color: #fff;
}

.confirmation-link-secondary {
  background: #1c1c1c;
  color: #fff;
  border: 1px solid #404040;
}

.confirmation-loading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d8d8d8;
}

.confirmation-loading::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #444;
  border-top-color: #fff;
  animation: spin 0.9s linear infinite;
}

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

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