@import url("./prime-global.css");

.checkout-page {
  max-width: 1180px;
  margin: calc(var(--ps-nav-h) + 40px) auto 64px;
  padding: 0 clamp(16px, 4vw, 24px);
}
.checkout-header { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.checkout-brand { display: flex; align-items: center; gap: 14px; }
.checkout-brand img { height: 48px; width: auto; max-width: 140px; object-fit: contain; filter: drop-shadow(0 4px 16px rgba(124,58,237,0.2)); }
.checkout-brand strong { display: block; font-size: 1.15rem; font-weight: 800; }
.checkout-brand span { color: var(--ps-muted); font-size: 0.84rem; }
.checkout-nav { display: flex; gap: 6px; padding: 4px; background: var(--ps-glass); border: 1px solid var(--ps-glass-border); border-radius: var(--ps-radius-pill); }
.checkout-nav a { padding: 10px 16px; border-radius: var(--ps-radius-pill); color: var(--ps-muted); font-weight: 600; font-size: 0.86rem; }
.checkout-nav a.active { background: var(--ps-gradient-brand); color: #fff; }
.checkout-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) 340px; gap: 20px; }
.checkout-main, .checkout-side {
  background: var(--ps-gradient-surface);
  border: 1px solid var(--ps-glass-border);
  border-radius: var(--ps-radius-xl);
  padding: 24px;
  box-shadow: var(--ps-shadow-sm);
}
.checkout-side { position: sticky; top: calc(var(--ps-nav-h) + 16px); height: fit-content; }
.flash-banner { padding: 12px 16px; border-radius: var(--ps-radius-md); margin-bottom: 16px; font-weight: 600; }
.flash-banner.error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); color: #fecaca; }
.flash-banner.success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); color: #bbf7d0; }
.checkout-hero { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.checkout-hero h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 800; }
.checkout-hero p { color: var(--ps-muted); line-height: 1.75; margin-top: 8px; }
.hero-chip { padding: 9px 14px; border-radius: var(--ps-radius-pill); background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.25); color: var(--ps-violet); font-weight: 700; font-size: 0.84rem; }
.gateway-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.gateway-card { padding: 14px; border-radius: var(--ps-radius-lg); background: var(--ps-glass); border: 1px solid var(--ps-glass-border); }
.gateway-card strong { display: block; font-size: 0.92rem; }
.gateway-card span { color: var(--ps-muted); font-size: 0.8rem; }
.cart-list { display: grid; gap: 12px; }
.cart-item { display: grid; grid-template-columns: 76px 1fr auto; gap: 14px; align-items: center; padding: 12px; background: var(--ps-glass); border: 1px solid var(--ps-glass-border); border-radius: var(--ps-radius-lg); }
.cart-item img { width: 76px; height: 76px; object-fit: cover; border-radius: var(--ps-radius-md); }
.cart-item h3 { font-size: 0.98rem; font-weight: 700; margin-bottom: 4px; }
.cart-item p { color: var(--ps-muted); font-size: 0.84rem; }
.cart-price { color: var(--ps-violet); font-weight: 800; margin-top: 6px; }
.remove-btn {
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid rgba(239,68,68,0.35);
  background: rgba(239,68,68,0.12);
  color: #f87171; cursor: pointer;
  display: grid; place-items: center;
  font-size: 1rem;
  transition: var(--ps-transition);
  flex-shrink: 0;
}
.remove-btn:hover { background: rgba(239,68,68,0.22); transform: translateY(-1px); }
.empty-cart { padding: 48px 20px; text-align: center; border: 1px dashed rgba(124,58,237,0.3); border-radius: var(--ps-radius-xl); color: var(--ps-muted); }
.summary-line { display: flex; justify-content: space-between; color: var(--ps-muted); margin-bottom: 10px; }
.summary-line.total { padding-top: 14px; border-top: 1px dashed rgba(124,58,237,0.25); color: var(--ps-text); font-weight: 800; font-size: 1.05rem; }
.summary-line.discount { color: #4ade80; }
.coupon-box { margin-top: 16px; padding: 16px; border-radius: var(--ps-radius-lg); background: rgba(124,58,237,0.06); border: 1px solid rgba(124,58,237,0.15); }
.coupon-row { display: flex; gap: 8px; }
.coupon-row input { flex: 1; min-height: 44px; padding: 0 14px; background: rgba(10,10,15,0.6); border: 1px solid var(--ps-glass-border); border-radius: var(--ps-radius-sm); color: var(--ps-text); }
.coupon-row button, .primary-action, .secondary-link {
  min-height: 44px; padding: 0 16px; border-radius: var(--ps-radius-sm);
  font-weight: 700; border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.coupon-row button, .primary-action { background: var(--ps-gradient-brand); color: #fff; }
.secondary-link { background: var(--ps-glass); border: 1px solid var(--ps-glass-border) !important; color: var(--ps-text); }
.primary-action { width: 100%; margin-top: 12px; }
.checkout-actions { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.checkout-back-link {
  width: 100%;
  margin-top: 18px;
  min-height: 46px;
  border-radius: var(--ps-radius-md) !important;
  font-weight: 700;
  text-decoration: none;
  transition: var(--ps-transition);
}
.checkout-back-link:hover {
  border-color: rgba(124,58,237,0.45) !important;
  background: rgba(124,58,237,0.1) !important;
  transform: translateY(-1px);
}
.primary-action:disabled { opacity: 0.5; cursor: not-allowed; }
.coupon-message.success { color: #4ade80; }
.coupon-message.error { color: #fca5a5; }
.secure-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.secure-chip { padding: 8px 12px; border-radius: var(--ps-radius-pill); background: var(--ps-glass); border: 1px solid var(--ps-glass-border); color: var(--ps-muted); font-size: 0.78rem; }

.product-page { padding: calc(var(--ps-nav-h) + 40px) clamp(16px, 4vw, 24px) 64px; }
.product-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.gallery-section { position: sticky; top: calc(var(--ps-nav-h) + 16px); align-self: start; }
.ps-product-gallery { display: flex; flex-direction: column; gap: 14px; }
.main-image-container {
  position: relative;
  border-radius: var(--ps-radius-xl);
  overflow: hidden;
  border: 1px solid var(--ps-glass-border);
  background: rgba(10, 10, 18, 0.85);
  aspect-ratio: 4/3;
  box-shadow: var(--ps-shadow-md);
}
.main-image {
  width: 100%; height: 100%;
  object-fit: contain;
  background: #0a0a12;
  cursor: zoom-in;
  transition: opacity 0.2s ease, transform 0.35s ease;
  opacity: 1;
}
.main-image-container:hover .main-image { transform: scale(1.02); }
.gallery-zoom-btn {
  position: absolute; top: 14px; right: 14px;
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid rgba(124,58,237,0.35);
  background: rgba(10,10,18,0.75);
  color: #e9d5ff; cursor: pointer;
  display: grid; place-items: center;
  backdrop-filter: blur(8px);
  transition: var(--ps-transition);
  z-index: 2;
}
.gallery-zoom-btn:hover { background: rgba(124,58,237,0.25); }
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(10,10,18,0.72);
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
  backdrop-filter: blur(8px);
  transition: var(--ps-transition);
  z-index: 2;
}
.gallery-nav:hover { background: rgba(124,58,237,0.45); border-color: rgba(124,58,237,0.5); }
.gallery-nav.prev { left: 12px; }
.gallery-nav.next { right: 12px; }
.image-counter {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  padding: 6px 14px; border-radius: 999px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-size: 0.78rem; font-weight: 700;
  z-index: 2;
}
.video-container {
  display: none;
  border-radius: var(--ps-radius-xl);
  overflow: hidden;
  border: 1px solid var(--ps-glass-border);
  aspect-ratio: 16/9;
  background: #000;
}
.video-container.active { display: block; }
.video-container iframe { width: 100%; height: 100%; border: 0; }
.thumbnails-shell {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.thumbnails-wrapper {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px 6px;
  border-radius: var(--ps-radius-lg);
  background: rgba(124,58,237,0.04);
  border: 1px solid rgba(124,58,237,0.18);
  overflow: hidden;
}
.thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 2px 4px 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.thumbnails::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent;
}
.thumbnails-progress {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: rgba(107, 33, 168, 0.22);
  border: 1px solid rgba(124, 58, 237, 0.38);
  overflow: hidden;
  margin: 4px 48px 0;
  transition: opacity 0.2s ease;
  box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.28);
}
.thumbnails-progress.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.thumbnails-progress-fill {
  display: block;
  height: 100%;
  width: 30%;
  border-radius: 999px;
  background: linear-gradient(90deg, #581c87, #7c3aed, #a855f7, #c084fc);
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.75), 0 0 4px rgba(192, 132, 252, 0.9);
  transition: width 0.15s ease, margin-inline-start 0.15s ease;
}
.thumbnail {
  flex: 0 0 88px;
  width: 88px; height: 88px;
  padding: 0; border: 2px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  transition: var(--ps-transition);
  position: relative;
}
.thumbnail img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.thumbnail:hover { border-color: rgba(124,58,237,0.45); transform: translateY(-2px); }
.thumbnail.active {
  border-color: #a78bfa;
  box-shadow: 0 0 0 2px rgba(124,58,237,0.25), 0 8px 24px rgba(124,58,237,0.2);
}
.thumbnail.video-thumb .video-play-badge {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(0,0,0,0.35);
  color: #fff; font-size: 1.1rem;
}
.thumb-nav {
  width: 40px; height: 40px; border-radius: 12px;
  border: 1px solid rgba(124,58,237,0.22);
  background: rgba(10,10,18,0.65);
  color: #c4b5fd;
  cursor: pointer;
  display: grid; place-items: center;
  transition: var(--ps-transition);
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}
.thumb-nav:hover {
  color: #fff;
  border-color: rgba(167,139,250,0.55);
  background: rgba(124,58,237,0.22);
  box-shadow: 0 0 16px rgba(124,58,237,0.2);
}
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.active { display: flex; }
.lightbox-stage {
  max-width: min(92vw, 1200px);
  max-height: 85vh;
  display: grid; place-items: center;
}
.lightbox-stage img {
  max-width: 100%; max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 46px; height: 46px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
  font-size: 1.2rem;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(124,58,237,0.25);
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
}
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }
.lightbox-nav:hover { background: rgba(124,58,237,0.5); }
.lightbox-counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: #fff; font-weight: 700; font-size: 0.9rem;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(0,0,0,0.45);
}
.product-page .product-title { font-size: clamp(1.6rem, 4vw, 2.3rem); font-weight: 800; margin-bottom: 12px; background: var(--ps-gradient-hero); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.product-badge { display: inline-flex; padding: 7px 16px; border-radius: var(--ps-radius-pill); background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.25); color: var(--ps-violet); font-weight: 700; font-size: 0.84rem; margin-bottom: 14px; }
.product-price-box { padding: 20px; border-radius: var(--ps-radius-lg); background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.22); margin: 18px 0; }
.product-page .product-price { font-size: 2rem; font-weight: 900; color: #22c55e; }
.product-page .product-description { padding: 18px; background: var(--ps-glass); border: 1px solid var(--ps-glass-border); border-radius: var(--ps-radius-lg); color: var(--ps-muted); line-height: 1.8; margin-bottom: 0; }
.product-description-wrap.is-collapsed .product-description {
  max-height: calc(1.8em * 5);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, #000 70%, transparent);
  mask-image: linear-gradient(180deg, #000 70%, transparent);
}
.product-description-wrap { margin-bottom: 20px; }
.product-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(124,58,237,0.35);
  background: rgba(124,58,237,0.1);
  color: var(--ps-violet);
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  transition: var(--ps-transition);
}
.product-read-more:hover {
  background: rgba(124,58,237,0.18);
  border-color: rgba(124,58,237,0.5);
  color: #fff;
}
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.btn-buy-now,
.btn-add-cart-premium,
.btn-watch-premium {
  flex: 1 1 180px;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.25s var(--ps-ease), box-shadow 0.25s, border-color 0.25s;
  border: none;
}
.btn-buy-now {
  background: linear-gradient(135deg, #7c3aed 0%, #6366f1 55%, #4f46e5 100%);
  color: #fff;
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.35);
}
.btn-buy-now:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(124, 58, 237, 0.45); }
.btn-add-cart-premium {
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(124,58,237,0.45);
  color: var(--ps-text);
}
.btn-add-cart-premium:hover {
  transform: translateY(-2px);
  border-color: var(--ps-violet);
  background: rgba(124,58,237,0.12);
}
.btn-watch-premium {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
}
.btn-watch-premium:hover { transform: translateY(-2px); background: rgba(239,68,68,0.18); }
.btn-add-cart { width: 100%; min-height: 52px; background: var(--ps-gradient-brand); border: none; border-radius: var(--ps-radius-md); color: #fff; font-weight: 700; font-size: 1rem; cursor: pointer; margin-bottom: 10px; }
.btn-watch-video { display: inline-flex; align-items: center; gap: 8px; min-height: 48px; padding: 0 20px; background: linear-gradient(135deg, #ef4444, #dc2626); border-radius: var(--ps-radius-md); color: #fff; font-weight: 700; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ps-violet); font-weight: 600; margin-bottom: 20px; }

.policy-container, .contact-container { max-width: 900px; margin: calc(var(--ps-nav-h) + 40px) auto 64px; padding: 0 clamp(16px, 4vw, 24px); }
.policy-card, .contact-card-style { background: var(--ps-gradient-surface); border: 1px solid var(--ps-glass-border); border-radius: var(--ps-radius-xl); padding: clamp(24px, 4vw, 40px); box-shadow: var(--ps-shadow-sm); }
.policy-title, .contact-title { font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 800; text-align: center; margin-bottom: 8px; }
.policy-subtitle, .contact-subtitle { text-align: center; color: var(--ps-muted); margin-bottom: 24px; }
.lang-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.lang-tab { padding: 9px 20px; border-radius: var(--ps-radius-pill); border: 1px solid var(--ps-glass-border); background: var(--ps-glass); color: var(--ps-muted); cursor: pointer; font-weight: 600; }
.lang-tab.active { background: var(--ps-gradient-brand); color: #fff; border-color: transparent; }
.policy-section h3 { color: var(--ps-violet); font-size: 1.1rem; margin: 20px 0 10px; font-weight: 700; }
.policy-section p, .policy-section li { color: var(--ps-muted); line-height: 1.8; margin-bottom: 8px; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.contact-card { padding: 24px; background: var(--ps-glass); border: 1px solid var(--ps-glass-border); border-radius: var(--ps-radius-xl); text-align: center; transition: var(--ps-transition); display: block; }
.contact-card:hover { border-color: rgba(124,58,237,0.35); transform: translateY(-4px); }

.result-shell, .cancel-shell { max-width: 560px; margin: calc(var(--ps-nav-h) + 48px) auto 64px; padding: 0 20px; }
.result-card, .cancel-card { text-align: center; padding: 40px 28px; background: var(--ps-gradient-surface); border: 1px solid var(--ps-glass-border); border-radius: var(--ps-radius-xl); box-shadow: var(--ps-shadow-md); }
.result-card { border-color: rgba(34,197,94,0.25); }
.cancel-card { border-color: rgba(239,68,68,0.2); }
.result-icon, .cancel-icon { width: 72px; height: 72px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center; font-size: 1.8rem; }
.result-icon { background: rgba(34,197,94,0.12); color: #22c55e; }
.cancel-icon { background: rgba(239,68,68,0.12); color: #f87171; }
.result-actions, .cancel-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px; }
.result-actions a, .cancel-actions a { min-width: 160px; min-height: 44px; padding: 0 18px; border-radius: var(--ps-radius-md); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }
.result-actions .primary, .cancel-actions .primary { background: var(--ps-gradient-brand); color: #fff; }
.result-actions .secondary, .cancel-actions .secondary { background: var(--ps-glass); border: 1px solid var(--ps-glass-border); color: var(--ps-text); }

@media (max-width: 900px) {
  .checkout-grid, .product-container { grid-template-columns: 1fr; }
  .checkout-side, .gallery-section { position: static; }
  .gateway-grid { grid-template-columns: 1fr; }
  .thumbnail { flex-basis: 72px; width: 72px; height: 72px; }
  .thumbnails-progress { margin: 4px 36px 0; height: 7px; }
  .lightbox-nav.prev { left: 8px; }
  .lightbox-nav.next { right: 8px; }
}

/* Policy / terms legacy footer fix */
footer:not(.footer-modern) {
  margin-top: 64px;
  padding: 40px 24px 24px;
  border-top: 1px solid var(--ps-border);
  text-align: center;
}
footer:not(.footer-modern) aside img {
  width: 56px; height: auto; max-width: 120px;
  object-fit: contain; margin: 0 auto 12px;
}
footer:not(.footer-modern) .brand-name { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
footer:not(.footer-modern) p { color: var(--ps-muted); font-size: 0.9rem; }
footer:not(.footer-modern) .copyright { margin-top: 24px; color: var(--ps-muted); font-size: 0.84rem; }

.policy-wrap, .continer_policy {
  max-width: 860px;
  margin: calc(var(--ps-nav-h) + 40px) auto 48px;
  padding: 0 24px;
}
.policy-card {
  background: var(--ps-gradient-surface);
  border: 1px solid var(--ps-border);
  border-radius: var(--ps-radius-xl);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--ps-shadow-sm);
}
.policy-content { display: none; line-height: 1.85; color: var(--ps-muted); }
.policy-content.active { display: block; }
.policy-content h3 { color: var(--ps-text); margin: 20px 0 8px; font-size: 1.05rem; }
.lang-tabs { display: flex; gap: 8px; margin-bottom: 24px; justify-content: center; }
.lang-tab {
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--ps-border);
  background: rgba(255,255,255,0.03);
  color: var(--ps-muted); font-weight: 600; cursor: pointer;
}
.lang-tab.active { background: var(--ps-gradient-brand); color: #fff; border-color: transparent; }

.related-products-section {
  max-width: 1200px; margin: 64px auto; padding: 0 24px 48px;
}
.related-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.related-product-card {
  background: var(--ps-gradient-surface);
  border: 1px solid var(--ps-glass-border);
  border-radius: var(--ps-radius-lg);
  overflow: hidden;
  transition: var(--ps-transition);
  display: block;
}
.related-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,212,255,0.35);
  box-shadow: var(--ps-shadow-glow);
}
.related-product-img { height: 160px; overflow: hidden; }
.related-product-img img { width: 100%; height: 100%; object-fit: cover; }
.related-product-body { padding: 16px; }
.related-product-body h4 { font-size: 0.95rem; margin-bottom: 8px; }
.related-price { color: var(--ps-violet); font-weight: 700; font-size: 0.88rem; }
.related-price i { margin-inline-end: 6px; }

/* Status pages — ban / 404 */
body.status-page {
  min-height: 100vh;
}
.status-shell {
  min-height: calc(100vh - var(--ps-nav-h, 120px));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--ps-nav-h, 120px) + 32px) 24px 64px;
}
.status-card {
  width: min(520px, 100%);
  text-align: center;
  padding: clamp(32px, 5vw, 48px);
  border-radius: var(--ps-radius-xl);
  background: var(--ps-gradient-surface);
  border: 1px solid var(--ps-glass-border);
  box-shadow: var(--ps-shadow-md);
  backdrop-filter: blur(16px);
}
.status-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
}
.status-icon.ban {
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.25);
  box-shadow: 0 0 32px rgba(239, 68, 68, 0.15);
}
.status-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f87171;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.18);
}
.status-code {
  font-size: clamp(3rem, 10vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--ps-blue-electric), #9333ea);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.status-card h1 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--ps-text);
}
.status-card p {
  color: var(--ps-muted);
  line-height: 1.75;
  max-width: 420px;
  margin: 0 auto 28px;
  font-size: 0.98rem;
}
.status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.status-actions .ps-btn {
  min-width: 168px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

