﻿/* Payment card two-column layout */
.payment-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 24px;
}

/* Left column */
.payment-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Payment options */
.payment-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid var(--text);
    border-radius: 6px;
    background: var(--input-bg);
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.2s ease;
}

    .payment-option:hover {
        border-color: #6465a1;
    }

    .payment-option input[type="radio"] {
        margin-right: 8px;
        accent-color: var(--text);
    }

.payment-label {
    flex-grow: 1;
    text-align: left;
}

.payment-img {
    height: 20px;
    margin-left: 8px;
}

.payment-right {
    display: flex;
    align-items: center; /* ✅ aligns icons and text together vertically */
}

.payment-info {
    display: flex;
    align-items: center; /* ✅ aligns the info + lightbulb + text perfectly */
    gap: 10px;
    color: #707070;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.payment-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #707070;
    font-size: 13px;
    line-height: 1.5;
}

    .payment-info p {
        margin: 0;
        max-width: 360px;
    }

.info-icon {
    width: 20px;
    height: 20px;
}

.lightbulb-icon {
    width: 20px;
    height: 20px;
}

.highlight-payment {
    color: #6465a1;
    font-weight: bold;
}

.highlight-done {
    color: #4d7261;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 860px) {
    .payment-card {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .payment-right {
        margin-top: 8px;
    }
}
