.store-hero {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: radial-gradient(circle at 82% 20%, rgba(247, 147, 26, .17), transparent 34%), var(--bg-primary);
}

.store-hero__inner { max-width: 850px; }
.store-hero h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); line-height: 1.03; }
.store-hero p { max-width: 720px; color: var(--text-secondary); font-size: 1.14rem; }
.store-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.store-card { display: flex; flex-direction: column; padding: clamp(1.6rem, 4vw, 2.4rem); border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--bg-card); }
.store-card--featured { border-color: var(--border-accent); box-shadow: 0 18px 50px rgba(0, 0, 0, .2); }
.store-card h2 { margin: .7rem 0; }
.store-card p { color: var(--text-secondary); }
.store-card ul { flex: 1; color: var(--text-secondary); }
.store-price { color: var(--accent); font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; }
.store-price small { color: var(--text-muted); font-family: var(--font-body); font-size: .85rem; font-weight: 500; }
.checkout-card { max-width: 820px; margin: 0 auto; padding: clamp(1.6rem, 5vw, 3rem); border: 1px solid var(--border-accent); border-radius: var(--radius-lg); background: var(--bg-card); }
.checkout-card label { display: block; margin: 1rem 0 .4rem; color: var(--text-primary); font-weight: 700; }
.checkout-card input[type="email"], .checkout-card input[type="url"] { width: 100%; padding: .95rem 1rem; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--bg-primary); color: var(--text-primary); font: inherit; }
.checkout-card input:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.checkout-actions { display: grid; gap: .75rem; margin-top: 1rem; }
.checkout-actions .btn { width: 100%; }
.checkout-actions .btn[hidden] { display: none !important; }
.checkout-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.checkout-status { min-height: 1.4rem; margin-top: .75rem; }
.checkout-status--error { color: #ffb4a8; }
.checkout-fineprint { color: var(--text-muted); font-size: .84rem; line-height: 1.55; }
.payment-panel { margin-top: 1rem; padding: 1.5rem; border: 1px solid var(--border-accent); border-radius: var(--radius-lg); background: rgba(247, 147, 26, .055); }
.payment-warning { padding: .9rem 1rem; border-left: 3px solid var(--accent); background: rgba(247, 147, 26, .08); color: var(--text-secondary); }
.payment-field { display: grid; grid-template-columns: 90px minmax(0, 1fr) auto; gap: .7rem; align-items: center; padding: .85rem 0; border-bottom: 1px solid var(--border); }
.payment-field span { color: var(--text-muted); font-size: .82rem; font-weight: 800; text-transform: uppercase; }
.payment-field code { overflow-wrap: anywhere; color: var(--text-primary); font-size: .92rem; }
.payment-field button { padding: .45rem .7rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg-primary); color: var(--text-primary); cursor: pointer; }
.payment-small { margin-top: 1rem; color: var(--text-muted); font-size: .82rem; }
.payment-claim { margin-top: 1.1rem; padding: 1rem; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--bg-primary); }
.payment-claim label { display: block; margin-bottom: .4rem; font-weight: 700; }
.payment-claim input { width: 100%; margin-bottom: .75rem; padding: .8rem; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--bg-card); color: var(--text-primary); font-family: monospace; }
.payment-status { display: flex; gap: .65rem; align-items: center; margin-top: 1.1rem; color: var(--text-primary); font-weight: 700; }
.status-dot { width: .7rem; height: .7rem; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 .35rem rgba(247, 147, 26, .15); animation: store-pulse 1.8s infinite; }
.payment-panel--paid .status-dot { background: #45c978; box-shadow: 0 0 0 .35rem rgba(69, 201, 120, .15); animation: none; }
.payment-panel--expired .status-dot { background: #b7b7b7; animation: none; }
.payment-download { margin-top: 1.2rem; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.trust-item { padding: 1.15rem; border: 1px solid var(--border); border-radius: var(--radius-md); color: var(--text-secondary); font-size: .9rem; }
.trust-item strong { display: block; margin-bottom: .3rem; color: var(--text-primary); }
@keyframes store-pulse { 50% { opacity: .45; } }
@media (max-width: 760px) {
  .store-grid, .trust-row { grid-template-columns: 1fr; }
  .payment-field { grid-template-columns: 1fr auto; }
  .payment-field span { grid-column: 1 / -1; }
}
