.multipay-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    margin-bottom: 24px;
}

.multipay-price {
    font-size: 34px;
    font-weight: 700;
    color: #0f6cbf;
    margin-top: 10px;
}

.multipay-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.multipay-method {
    min-width: 220px;
    padding: 24px;
    border-radius: 14px;
    border: 2px solid #e5e5e5;
    text-align: center;
    transition: .2s;
    cursor: pointer;
    background: #fff;
    position: relative;
}

.multipay-method i {
    font-size: 36px;
    margin-bottom: 10px;
    display: block;
    color: #0f6cbf;
}

.multipay-method:hover {
    border-color: #0f6cbf;
    transform: translateY(-2px);
}

.multipay-method.disabled {
    opacity: 0.4;
}

.multipay-method.selected {
    border-color: #28a745;
    box-shadow: 0 0 0 2px rgba(40,167,69,.2);
}

.multipay-method.selected::after {
    content: "✔";
    position: absolute;
    top: 10px;
    right: 12px;
    background: #28a745;
    color: #fff;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.multipay-method a {
    text-decoration: none !important;
    color: inherit !important;
}

.multipay-coupon {
    display: flex;
    gap: 10px;
    align-items: center;
	margin: 10px auto;
}

.multipay-actions {
    margin-top: 24px;
    text-align: right;
}

.multipay-steps {
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin: 10px 0 40px 0;
}

.multipay-step {
    text-align:center;
    flex:1;
    position:relative;
}

.multipay-step:not(:last-child):after {
    content:'';
    position:absolute;
    top:22px;
    right:-50%;
    width:100%;
    height:4px;
    background:#e0e0e0;
    z-index:0;
}

.multipay-step .circle {
    width:44px;
    height:44px;
    border-radius:50%;
    background:#e0e0e0;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 6px auto;
    font-size:20px;
    color:#666;
    z-index:1;
    position:relative;
}

.multipay-step.active .circle {
    background:#0f6cbf;
    color:#fff;
}

/* Pulsar */
.multipay-step.active .circle::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(15, 108, 191, 0.6);
    animation: multipay-pulse 1.6s infinite;
}

@keyframes multipay-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(15, 108, 191, 0.6);
        opacity: 1;
    }
    70% {
        box-shadow: 0 0 0 14px rgba(15, 108, 191, 0);
        opacity: 0;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(15, 108, 191, 0);
        opacity: 0;
    }
}
/* Pulsar */

.multipay-step.success .circle {
    background:#28a745;
    color:#fff;
}

.multipay-step.success span {
    color:#28a745;
    font-weight:600;
}

/* Pulsar */
.multipay-step.success .circle::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(15, 108, 191, 0.6);
}

.multipay-step.done .circle {
    background:#4caf50;
    color:#fff;
}

.multipay-step span {
    font-size:13px;
    color:#666;
}

.multipay-step.active span {
    color:#0f6cbf;
    font-weight:600;
}

.multipay-step.done span {
    color:#4caf50;
    font-weight:600;
}

.multipay-step.completed .circle {
    background:#28a745;
    color:#fff;
}

.multipay-step.completed span {
    color:#28a745;
    font-weight:600;
}

.multipay-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.multipay-access-page {
    max-width: 720px;
    margin: 40px auto;
    padding: 0 16px;
}

.multipay-access-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    padding: 32px;
}

.multipay-access-header {
    margin-bottom: 24px;
}

.multipay-access-header h1 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.2;
}

.multipay-access-header p {
    margin: 0;
    color: #475569;
}

.multipay-access-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.multipay-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.multipay-form-row label {
    font-weight: 600;
    color: #0f172a;
}

.multipay-form-row input {
    width: 100%;
    min-height: 46px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 15px;
}

.multipay-form-row input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.multipay-field-error {
    color: #b91c1c;
    font-size: 13px;
}

.multipay-access-actions {
    padding-top: 8px;
}
