.payment-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ECBE07;
    border-radius: 20px;
    border: 1px solid black; /* Black border */
}

.payment-icon {
    width: 110px;
    height: 65px;
    object-fit: fill;
    border: 1px solid black; /* Black border */
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Modal styling */
.qr-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.qr-modal-content {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 300px;
    max-width: 90%;
}

.qr-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}

.qr-title {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

.qr-image {
    width: 200px;
    height: 200px;
    margin-bottom: 10px;
    object-fit: fill;
    border: 1px solid #000;
    border-radius: 10px;
}

.qr-address {
    font-size: 14px;
    color: #333;
    word-wrap: break-word;
}

.qr-address {
    font-size: 14px;
    color: #333;
    word-wrap: break-word;
    cursor: pointer;
    border: 1px dashed transparent;
    padding: 2px;
    transition: border-color 0.3s ease;
}

.qr-address:hover {
    border-color: #00bcd4;
}
