/**
 * Payment Options Footer Styles
 * Version: 1.0.1
 */

/* ═══════════════════════════════════════════════════
   PAYMENT OPTIONS SECTION - MATCHES FOOTER STYLE
═══════════════════════════════════════════════════ */

.supported-payment-options-wrapper {
    background: #5b5b5b;
    padding: 15px 20px;
    text-align: center;
}

.supported-payment-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.supported-payment-options a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: #ffffff;
    border-radius: 6px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.supported-payment-options a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.supported-payment-options .payment-image {
    height: 24px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    transition: all 0.25s ease;
}

.supported-payment-options a:hover .payment-image {
    transform: scale(1.05);
}

/* Mastercard ID Check badge special styling */
.supported-payment-options #mc-idcheck-badge {
    height: 28px;
    max-width: 90px;
}

/* Visa Secure badge special styling */
.supported-payment-options #visa-secure-badge {
    height: 36px;
    max-width: 55px;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE DESIGN
═══════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .supported-payment-options-wrapper {
        padding: 12px 15px;
    }
    
    .supported-payment-options {
        gap: 10px;
    }
    
    .supported-payment-options a {
        padding: 6px 10px;
    }
    
    .supported-payment-options .payment-image {
        height: 20px;
        max-width: 50px;
    }
}

@media (max-width: 480px) {
    .supported-payment-options a {
        padding: 5px 8px;
        border-radius: 4px;
    }
    
    .supported-payment-options .payment-image {
        height: 18px;
        max-width: 45px;
    }
}

