
/* Header Payment Icons */
.header-payment-icons {
    display: flex;
    align-items: center;
}

[dir="rtl"] .header-payment-icons {
    margin-right: 15px;
    margin-left: 15px;
}

[dir="ltr"] .header-payment-icons {
    margin-left: 15px;
    margin-right: 15px;
}

.payment-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.visa-icon {
    color: #28a745; /* Beautiful Green */
}

.cash-icon {
    color: #a0a0a0; /* Light Gray */
    position: relative;
}

.cash-icon.disabled {
    opacity: 0.7;
}

.unavailable-mark {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 10px;
    color: #dc3545; /* Red for X */
    font-weight: bold;
    background: #fff;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dc3545;
    line-height: 1;
}

@media (max-width: 991px) {
    .header-payment-icons {
        margin: 0 10px;
    }
    .payment-icon-wrapper {
        font-size: 20px;
    }
}
