

.store-shell { position: relative; z-index: 1; width: 100%; margin: 0;
    padding: calc(var(--nav-h) + 40px) 44px 96px; }
.store { display: grid; grid-template-columns: 300px 1fr; align-items: start; gap: 0; }

.store-side { display: flex; flex-direction: column; gap: 12px; position: sticky; top: calc(var(--nav-h) + 26px);
    padding-right: 28px; }
.side-heading { font-family: "Outfit", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .16em;
    text-transform: uppercase; color: var(--dim-2); margin: 0 0 6px 4px; }
.side-tab { display: flex; align-items: flex-start; gap: 15px; text-align: left; cursor: pointer;
    padding: 20px 20px; border-radius: 16px; background: var(--surface); border: 1px solid var(--stroke);
    color: var(--text); transition: transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease); }
.side-tab:hover { transform: translateY(-2px); border-color: var(--stroke-2); }
.side-tab.active { background: var(--purple-ink); border-color: rgba(190,168,244,.45); box-shadow: 0 14px 36px -16px rgba(139,111,224,.75); }
.side-ic { width: 48px; height: 48px; flex-shrink: 0; border-radius: 13px; display: grid; place-items: center;
    color: var(--purple); background: rgba(190,168,244,.1); box-shadow: inset 0 0 0 1px rgba(190,168,244,.22); }
.side-tab.active .side-ic { background: rgba(190,168,244,.2); }
.side-ic svg { width: 24px; height: 24px; }
.side-txt { display: flex; flex-direction: column; gap: 4px; }
.side-txt b { font-family: "Outfit", sans-serif; font-size: 17px; font-weight: 700; letter-spacing: -.01em; }
.side-txt small { font-size: 12.5px; color: var(--dim); line-height: 1.45; }

.store-main { border-left: 1px solid var(--stroke); padding-left: 34px; min-height: 60vh; }
@media (max-width: 860px) {
    .store { grid-template-columns: 1fr; }
    .store-side { flex-direction: row; position: static; padding-right: 0; margin-bottom: 22px; }
    .side-tab { flex: 1; }
    .store-main { border-left: 0; padding-left: 0; border-top: 1px solid var(--stroke); padding-top: 26px; }
}

.product { display: grid; grid-template-columns: minmax(320px, 520px) minmax(0, 1fr); gap: 44px; align-items: start; }
.product-media { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid var(--stroke-2);
    background: linear-gradient(180deg, var(--surface-2), var(--surface)); padding: 26px; }
.product-media img { width: 100%; border-radius: 10px; filter: drop-shadow(0 20px 40px rgba(0,0,0,.5)); }
.media-badge { position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; gap: 7px;
    padding: 5px 11px; border-radius: 999px; font-size: 12px; font-weight: 600; color: var(--text);
    background: rgba(10,10,16,.7); border: 1px solid var(--stroke-2); }
.media-badge .dot, .p-live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 8px var(--ok); }

.p-badges { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.p-live { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--ok); }
.p-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--dim); }
.p-tag svg { width: 15px; height: 15px; color: var(--yellow); }
.p-headrow { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.p-name { font-family: "Outfit", sans-serif; font-size: clamp(24px, 3.4vw, 32px); font-weight: 800; letter-spacing: -.02em; margin: 0; }
.p-price { font-family: "Outfit", sans-serif; font-size: 30px; font-weight: 800; color: var(--purple);
    text-shadow: 0 0 24px rgba(190,168,244,.4); }

.was { color: var(--dim-2); text-decoration: line-through; text-decoration-thickness: 2px; font-weight: 700;
    margin-right: 8px; text-shadow: none; opacity: .85; }
.p-price .was { font-size: .72em; }
.v-price .was { font-size: .82em; margin-right: 5px; }
.p-live .dot.out { background: #f0879a; box-shadow: 0 0 8px #f0879a; }
.p-live:has(.dot.out) { color: #f0879a; }
.buy-btn.sold-out, .buy-btn:disabled { opacity: .5; cursor: not-allowed; filter: grayscale(.3); }

.co-was { color: var(--dim); font-size: 13px; font-weight: 600; }
.co-coupon { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 0 0 20px; }
.co-coupon input { flex: 1; min-width: 150px; padding: 11px 14px; border-radius: 11px; background: var(--bg-2);
    border: 1px solid var(--stroke-2); color: var(--text); font-size: 14px; font-family: inherit; }
.co-coupon input:focus { outline: none; border-color: var(--purple); }
.co-coupon .btn { padding: 11px 18px; }
.co-coupon-msg { font-size: 13px; font-weight: 600; width: 100%; }
.co-coupon-msg.ok { color: var(--ok); }
.co-coupon-msg.bad { color: #f0879a; }
.p-rating { display: flex; align-items: center; gap: 3px; margin: 8px 0 24px; color: var(--yellow); }
.p-rating svg { width: 15px; height: 15px; }
.p-rating span { margin-left: 8px; color: var(--dim); font-size: 13px; font-weight: 600; }

.choose-label { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dim-2); margin-bottom: 12px; }
.variants { display: flex; flex-direction: column; gap: 10px; }
.variant { display: flex; align-items: center; justify-content: space-between; gap: 14px; cursor: pointer; text-align: left;
    padding: 16px 18px; border-radius: 13px; background: var(--surface); border: 1px solid var(--stroke); color: var(--text);
    transition: border-color .18s var(--ease), background .18s var(--ease), transform .18s var(--ease); }
.variant:hover { transform: translateY(-2px); border-color: var(--stroke-2); }
.variant.selected { border-color: var(--purple); background: var(--purple-ink); box-shadow: inset 0 0 0 1px rgba(190,168,244,.35); }
.variant span:first-child { display: flex; flex-direction: column; gap: 3px; }
.variant b { font-family: "Outfit", sans-serif; font-size: 15.5px; font-weight: 700; }
.variant small { font-size: 12.5px; color: var(--dim); }
.variant .v-price { font-family: "Outfit", sans-serif; font-weight: 800; font-size: 17px; color: var(--purple); }

.addon-inline { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 16px;
    padding: 14px 16px; border-radius: 13px; background: var(--surface); border: 1px solid var(--stroke); }
.ai-text { display: flex; flex-direction: column; gap: 3px; }
.ai-text b { font-size: 14.5px; font-weight: 700; }
.ai-text small { font-size: 12.5px; color: var(--dim); }
.stepper { display: inline-flex; align-items: center; gap: 4px; background: var(--bg-2); border: 1px solid var(--stroke-2); border-radius: 10px; padding: 4px; }
.stepper button { width: 30px; height: 30px; border-radius: 7px; cursor: pointer; border: 0; color: var(--text);
    background: var(--surface-2); font-size: 17px; line-height: 1; display: grid; place-items: center;
    transition: background .15s, color .15s; }
.stepper button:hover { background: var(--purple-ink); color: var(--purple); }
.stepper-val { min-width: 30px; text-align: center; font-family: "JetBrains Mono", monospace; font-weight: 600; }

.total-row { display: flex; align-items: center; justify-content: space-between; margin: 22px 0 14px;
    padding-top: 18px; border-top: 1px dashed var(--stroke-2); }
.total-row span:first-child { color: var(--dim); font-weight: 600; }
.total-val { font-family: "Outfit", sans-serif; font-size: 26px; font-weight: 800; color: var(--text); }
.buy-btn { width: 100%; justify-content: center; font-size: 15px; padding: 14px; }
.fineprint { display: flex; align-items: flex-start; gap: 8px; margin: 14px 0 0; font-size: 12.5px; color: var(--dim); line-height: 1.5; }
.fineprint svg { width: 15px; height: 15px; color: var(--purple); flex-shrink: 0; margin-top: 1px; }
.fineprint.center { justify-content: center; text-align: center; }

.about { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--stroke); text-align: center; }
.about h3 { font-family: "Outfit", sans-serif; font-size: 18px; font-weight: 700; margin: 0 0 10px; }
.about p { color: var(--dim); margin: 0 auto; max-width: 74ch; line-height: 1.65; }
.about b { color: var(--text); }

@media (max-width: 720px) { .product { grid-template-columns: 1fr; gap: 22px; } }

.addon-head h1 { font-family: "Outfit", sans-serif; font-size: clamp(24px, 4vw, 32px); font-weight: 800; letter-spacing: -.02em; margin: 0 0 10px; }
.addon-head p { color: var(--dim); max-width: 62ch; margin: 0 0 26px; line-height: 1.6; }
.addon-head a { color: var(--purple); font-weight: 600; }
.addon-card { max-width: 560px; padding: 24px; border-radius: 16px; background: var(--surface); border: 1px solid var(--stroke); }
.field-label { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--dim-2); margin-bottom: 10px; }
.key-row { display: flex; gap: 10px; }
.key-row input { flex: 1; min-width: 0; padding: 12px 14px; border-radius: 11px; background: var(--bg-2);
    border: 1px solid var(--stroke-2); color: var(--text); font-family: "JetBrains Mono", monospace; font-size: 14px; }
.key-row input:focus { outline: none; border-color: var(--purple); }
.key-status { min-height: 20px; margin: 12px 0 0; font-size: 13px; font-weight: 600; }
.key-status.ok { color: var(--ok); }
.key-status.bad { color: #f0879a; }
.key-status.muted { color: var(--dim); }

.addon-options { margin-top: 20px; opacity: .4; pointer-events: none; transition: opacity .2s; }
.addon-options.on { opacity: 1; pointer-events: auto; }
.switch-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 12px;
    padding: 14px 16px; border-radius: 13px; background: var(--surface-2); border: 1px solid var(--stroke); cursor: pointer; }
.switch { position: relative; width: 44px; height: 26px; flex-shrink: 0; }
.switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.switch .track { position: absolute; inset: 0; border-radius: 999px; background: var(--stroke-2); transition: background .2s; }
.switch .track::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%;
    background: #fff; transition: transform .2s var(--ease); }
.switch input:checked + .track { background: var(--purple); }
.switch input:checked + .track::after { transform: translateX(18px); }
.switch-row.disabled { opacity: .4; pointer-events: none; }

.checkout .co-body { max-width: 440px; width: 100%; padding: 30px; text-align: center;
    background: linear-gradient(180deg, var(--surface-2), var(--surface));
    border: 1px solid var(--stroke-2); border-radius: 20px;
    box-shadow: 0 40px 110px -30px rgba(0,0,0,.9); }
.checkout .modal-close { top: 14px; right: 14px; width: 34px; height: 34px; background: var(--surface); }
.co-title { font-family: "Outfit", sans-serif; font-size: 22px; font-weight: 800; margin: 0 0 6px; }
.co-sub { color: var(--dim); margin: 0 0 22px; font-size: 14px; }
.co-sub b { color: var(--text); }
.co-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.co-method { display: flex; align-items: center; gap: 10px; cursor: pointer; padding: 15px; border-radius: 13px;
    background: var(--surface); border: 1px solid var(--stroke); color: var(--text); font-family: "Outfit", sans-serif;
    font-weight: 700; font-size: 14px; transition: transform .16s var(--ease), border-color .16s var(--ease); }
.co-method:hover { transform: translateY(-3px); border-color: var(--purple); }
.co-method .mm { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; font-size: 16px;
    background: var(--purple-ink); color: var(--purple); font-family: "Manrope", sans-serif; }
.co-method .mm.eth { color: #8a92ff; } .co-method .mm.pp { color: #2b9bd6; background: rgba(43,155,214,.14); }

.pay-amounts { display: flex; gap: 12px; margin: 4px 0 18px; }
.pay-amounts > div { flex: 1; padding: 12px; border-radius: 11px; background: var(--surface); border: 1px solid var(--stroke); }
.pay-amounts small { display: block; font-size: 11.5px; color: var(--dim-2); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.pay-amounts b { font-family: "JetBrains Mono", monospace; font-size: 15px; word-break: break-all; }
.qr { width: 176px; height: 176px; border-radius: 12px; margin: 0 auto 16px; background: #fff; padding: 8px; display: block; }
.addr-label { display: block; font-size: 12px; color: var(--dim-2); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.addr-row { display: flex; align-items: center; gap: 8px; padding: 6px 6px 6px 12px; border-radius: 11px;
    background: var(--bg-2); border: 1px solid var(--stroke-2); }
.addr-row code { flex: 1; min-width: 0; font-family: "JetBrains Mono", monospace; font-size: 12.5px; overflow: hidden;
    text-overflow: ellipsis; white-space: nowrap; text-align: left; }
.addr-row .btn { padding: 8px; }
.co-status { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 18px; color: var(--dim); font-weight: 600; font-size: 14px; }
.co-status.big { padding: 40px 0; }
.co-status svg { width: 18px; height: 18px; color: var(--purple); }

.spin { animation: spin .8s linear infinite !important; transform-origin: center center; }
@keyframes spin { to { transform: rotate(360deg); } }
.done-actions { display: flex; gap: 10px; margin-bottom: 6px; }
.done-actions .btn { flex: 1; justify-content: center; }

.done-check { width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center;
    color: #0c1a12; background: var(--ok); box-shadow: 0 0 30px -6px var(--ok); }
.done-check svg { width: 30px; height: 30px; stroke-width: 3; }
.key-out { font-family: "JetBrains Mono", monospace; font-size: 15px; font-weight: 600; color: var(--purple);
    padding: 14px; border-radius: 11px; background: var(--purple-ink); border: 1px solid rgba(190,168,244,.3);
    margin: 6px 0 12px; word-break: break-all; }
#coDone > .btn { width: 100%; justify-content: center; margin-top: 8px; }
.done-actions .btn { flex: 1; width: auto; margin-top: 0; }

.toast { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 120;
    padding: 12px 18px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--stroke-2);
    color: var(--text); font-weight: 600; font-size: 14px; box-shadow: 0 20px 50px -20px rgba(0,0,0,.8);
    opacity: 0; transition: opacity .25s, transform .25s; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(-4px); }

.nav { background: rgba(10,10,16,.74); backdrop-filter: blur(14px); border-bottom: 1px solid var(--stroke); }

.products-page::before { content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background:
        radial-gradient(1100px 520px at 50% -170px, rgba(139,111,224,.15), transparent 68%),
        linear-gradient(180deg, #0c0b13 0%, var(--bg) 42%); }
.products-page::after { content: ""; position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .55;
    background-image: linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(125% 90% at 50% 0%, #000 38%, transparent 80%);
    mask-image: radial-gradient(125% 90% at 50% 0%, #000 38%, transparent 80%); }

.est { font-size: 12px; font-weight: 500; color: var(--dim-2); margin-left: 6px; }

.co-wide { width: 100%; justify-content: center; margin-top: 4px; }
.slot-list { display: flex; flex-direction: column; gap: 10px; margin: 6px 0 16px; max-height: 260px; overflow-y: auto; }
.slot-row { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 12px;
    padding: 12px 14px; border-radius: 12px; background: var(--surface); border: 1px solid var(--stroke); text-align: left; }
.slot-name { display: flex; flex-direction: column; gap: 2px; }
.slot-name b { font-size: 14px; font-weight: 700; }
.slot-name small { font-size: 12px; color: var(--dim); }
.slot-stepper { display: inline-flex; align-items: center; gap: 4px; background: var(--bg-2); border: 1px solid var(--stroke-2); border-radius: 9px; padding: 3px; }
.slot-stepper button { width: 26px; height: 26px; border-radius: 6px; cursor: pointer; border: 0; color: var(--text);
    background: var(--surface-2); font-size: 15px; display: grid; place-items: center; transition: background .15s, color .15s; }
.slot-stepper button:hover { background: var(--purple-ink); color: var(--purple); }
.slot-months { min-width: 46px; text-align: center; font-family: "JetBrains Mono", monospace; font-size: 12.5px; font-weight: 600; }
.slot-price { font-family: "Outfit", sans-serif; font-weight: 700; font-size: 15px; color: var(--purple); min-width: 44px; text-align: right; }
.cfg-total { display: flex; align-items: center; justify-content: space-between; padding: 14px 2px 18px;
    border-top: 1px dashed var(--stroke-2); margin-bottom: 4px; }
.cfg-total span { color: var(--dim); font-weight: 600; }
.cfg-total b { font-family: "Outfit", sans-serif; font-size: 22px; font-weight: 800; }

.tos { text-align: left; margin: 4px 0 14px; border: 1px solid var(--stroke); border-radius: 12px; background: var(--surface); overflow: hidden; }
.tos summary { display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 13px 15px; font-weight: 700;
    font-size: 13.5px; font-family: "Outfit", sans-serif; list-style: none; }
.tos summary::-webkit-details-marker { display: none; }
.tos .tos-ic { display: inline-flex; color: var(--purple); } .tos .tos-ic svg { width: 16px; height: 16px; }
.tos .tos-caret { margin-left: auto; color: var(--dim); transition: transform .2s; }
.tos[open] .tos-caret { transform: rotate(180deg); }
.tos ol { margin: 0; padding: 0 20px 16px 34px; display: flex; flex-direction: column; gap: 9px; }
.tos li { font-size: 12.5px; color: var(--dim); line-height: 1.5; }
.tos li b { color: var(--text); font-weight: 700; }

.tos-check { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; text-align: left;
    font-size: 13px; color: var(--text); margin-bottom: 16px; }
.tos-check input { position: absolute; opacity: 0; width: 0; height: 0; }
.tos-box { flex-shrink: 0; width: 22px; height: 22px; border-radius: 7px; border: 1px solid var(--stroke-2);
    background: var(--bg-2); display: grid; place-items: center; color: transparent; transition: background .15s, border-color .15s, color .15s; }
.tos-box svg { width: 14px; height: 14px; stroke-width: 3; }
.tos-check input:checked + .tos-box { background: var(--purple); border-color: var(--purple); color: #17121f; }
.tos-check input:focus-visible + .tos-box { outline: 2px solid var(--purple); outline-offset: 2px; }
.tos-check b { color: var(--purple); font-weight: 700; }

.co-methods.locked { opacity: .4; pointer-events: none; filter: saturate(.5); }
.methods-hint { margin: 12px 0 0; font-size: 12.5px; color: var(--dim-2); text-align: center; }

.pay-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.pay-coin { display: flex; align-items: center; gap: 12px; }
.coin-ic { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; font-size: 20px;
    background: var(--purple-ink); color: var(--purple); font-family: "Manrope", sans-serif; font-weight: 800; }
.coin-ic.ltc { color: #cfd8f5; } .coin-ic.btc { color: #f7931a; background: rgba(247,147,26,.12); }
.coin-ic.eth { color: #8a92ff; }
.pay-coin-txt { display: flex; flex-direction: column; text-align: left; }
.pay-coin-txt b { font-family: "Outfit", sans-serif; font-size: 16px; font-weight: 700; }
.pay-coin-txt small { font-size: 12px; color: var(--dim); }
.pay-timer { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px;
    background: var(--surface); border: 1px solid var(--stroke-2); font-family: "JetBrains Mono", monospace; font-size: 13px; color: var(--text); }
.pay-timer svg { width: 14px; height: 14px; color: var(--dim); }
.pay-timer.low { color: #f0879a; border-color: rgba(240,135,154,.4); }
.pay-timer.low svg { color: #f0879a; }
.open-wallet { width: 100%; justify-content: center; margin: 0 0 18px; }
.open-wallet svg:last-child { width: 13px; height: 13px; opacity: .65; }
.pay-field-wrap { text-align: left; margin-bottom: 12px; }
.pay-field-label { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--dim-2); margin-bottom: 6px; }
.pay-field { display: flex; align-items: center; gap: 8px; padding: 5px 5px 5px 14px; border-radius: 11px; background: var(--bg-2); border: 1px solid var(--stroke-2); }
.pay-field code { flex: 1; min-width: 0; font-family: "JetBrains Mono", monospace; font-size: 13px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; text-align: left; }
.pf-copy { flex-shrink: 0; width: 34px; height: 34px; border-radius: 8px; cursor: pointer; border: 0; background: var(--surface-2); color: var(--dim); display: grid; place-items: center; transition: background .15s, color .15s; }
.pf-copy:hover { background: var(--purple-ink); color: var(--purple); }
.pf-copy svg { width: 16px; height: 16px; }
.pay-instr { text-align: left; margin: 14px 0 0; border: 1px solid var(--stroke); border-radius: 12px; background: var(--surface); overflow: hidden; }
.pay-instr summary { display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 12px 15px; font-weight: 700; font-size: 13px; font-family: "Outfit", sans-serif; list-style: none; }
.pay-instr summary::-webkit-details-marker { display: none; }
.pay-instr p { margin: 0; padding: 0 15px 14px; font-size: 12.5px; color: var(--dim); line-height: 1.55; }
.pay-instr b { color: var(--text); }

.checkout.modal { overflow-y: auto; align-items: safe center; }

@media (max-width: 560px) {
    .store-shell { padding: calc(var(--nav-h) + 22px) 15px 72px; }
    .store-side { flex-direction: column; }
    .side-tab { flex: none; padding: 16px 16px; gap: 13px; }
    .side-ic { width: 42px; height: 42px; }
    .side-txt small { font-size: 12px; }
    .checkout.modal { padding: 14px; }
    .checkout .co-body { padding: 24px 18px; }
    .co-methods { grid-template-columns: 1fr; }
    .pay-amounts { flex-direction: column; gap: 8px; }
    .pay-head { flex-wrap: wrap; gap: 10px; }
    .pay-coin-txt { text-align: left; }
    .done-actions { flex-direction: column; }
    .slot-row { grid-template-columns: 1fr auto; row-gap: 8px; }
    .slot-price { grid-column: 2; text-align: right; }
}
