/* Crypto checkout page — builds on checkout-form.css */

.crypto-page {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 0 32px;
    text-align: left;
    color: #222;
}

.crypto-page h1 {
    margin: 0 0 12px;
    font-size: 1.75em;
    line-height: 1.25;
}

.crypto-lead {
    margin: 0 0 20px;
    font-size: 17px;
    line-height: 1.5;
    color: #444;
}

.crypto-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    counter-reset: crypto-step;
}

.crypto-steps li {
    position: relative;
    margin: 0 !important;
    padding: 14px 14px 14px 44px !important;
    list-style: none !important;
    background: #f4f6f8 !important;
    border: 1px solid #d0d7de;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.4;
    color: #333;
    counter-increment: crypto-step;
}

.crypto-steps li::before {
    content: counter(crypto-step);
    position: absolute;
    left: 12px;
    top: 14px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #2E629D;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
}

.crypto-steps strong {
    display: block;
    margin-bottom: 2px;
    font-size: 15px;
    color: #1a1a1a;
}

.crypto-page > .checkout-trust {
    margin: 0 0 22px;
}

.crypto-form {
    margin-bottom: 28px;
}

.crypto-products {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.crypto-product {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
    padding: 10px 14px;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
    background: #fff;
    border: 2px solid #c5cdd6;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease, color .15s ease;
}

.crypto-product:hover {
    border-color: #2E629D;
    background: #f3f7fb;
}

.crypto-product.is-active {
    color: #fff;
    background: #2E629D;
    border-color: #2E629D;
}

.crypto-product:focus-visible {
    outline: 2px solid #2E629D;
    outline-offset: 2px;
}

.crypto-licenses {
    display: none;
}

.crypto-licenses.is-active {
    display: block;
}

.crypto-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px 16px;
    margin: 0 0 16px;
    padding: 14px 16px;
    background: #eaf2fa;
    border: 1px solid #b8cce0;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
}

.crypto-summary-label {
    color: #555;
}

.crypto-summary-value {
    font-weight: 700;
    color: #1a1a1a;
    text-align: right;
}

.crypto-coins {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 16px 0 8px;
    padding: 0 !important;
    list-style: none !important;
    justify-content: center;
}

.onecolumn .crypto-coins li,
.crypto-coins li {
    list-style: none !important;
    margin: 0 !important;
    padding: 5px 10px !important;
    background: #fff !important;
    border: 1px solid #cfd6dd;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
    color: #444;
}

.onecolumn .crypto-page > .checkout-trust li {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.crypto-coins-more {
    margin: 0;
    text-align: center;
    font-size: 14px;
    line-height: 1.45;
    color: #666;
}

.crypto-note-ru {
    margin: 0 0 18px;
    padding: 12px 14px;
    font-size: 15px;
    line-height: 1.45;
    color: #555;
    background: #fff8e8;
    border: 1px solid #e6d4a8;
    border-radius: 6px;
}

.crypto-page .checkout-secondary {
    max-width: 760px;
}

@media (max-width: 700px) {
    .crypto-steps {
        grid-template-columns: 1fr;
    }

    .crypto-summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .crypto-summary-value {
        text-align: left;
    }
}
