/* Checkout payment step (blagajna/payment) */

.checkout-payment__heading {
    margin: 0 0 4px;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #0E2032;
}

.checkout-payment__hint {
    margin: 0 0 20px;
    color: #64748b;
    font-size: 0.95rem;
}

.checkout-payment__methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-payment__method {
    border: 1px solid #e5e7eb;
    padding: 16px 18px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    background: #fff;
}

.checkout-payment__method:hover {
    border-color: var(--njorka-light-blue);
}

.checkout-payment__method--active {
    border-color: var(--njorka-light-blue);
    box-shadow: 0 0 0 1px var(--njorka-light-blue);
}

.checkout-payment__method-head {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    margin: 0;
    font-weight: 600;
    color: #0f172a;
}

.checkout-payment__method-head input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--njorka-light-blue);
    cursor: pointer;
    flex: 0 0 auto;
}

.checkout-payment__method-name {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.checkout-payment__method-logo {
    max-height: 28px;
    width: auto;
}

.checkout-payment__method-description {
    margin: 8px 0 0 30px;
    color: #64748b;
    font-size: 0.9rem;
}

.checkout-payment__method-body {
    margin: 14px 0 0 30px;
    padding-top: 14px;
    border-top: 1px dashed #e5e7eb;
}

.checkout-payment__instructions {
    color: #334155;
    font-size: 0.92rem;
    line-height: 1.5;
}

.checkout-payment__form {
    margin-top: 14px;
}

.checkout-payment__customer-methods {
    margin-top: 14px;
}

.checkout-payment__submit {
    width: 100%;
    padding: 15px;
    margin-top: 22px;
    background: #56C9F4;
    color: #fff;
    border: 2px solid #56C9F4;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.checkout-payment__submit:hover {
    background: #fff;
    color: #56C9F4;
    box-shadow: 0 6px 16px rgba(86, 201, 244, 0.25);
}

.checkout-payment__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
