/* AutoRent NLB CorvusPay Footer Styles */

/* Cookie Consent Bar */
.arnlb-cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
    color: #ffffff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
    flex-wrap: wrap;
}

.arnlb-cookie-content {
    flex: 1;
    min-width: 300px;
}

.arnlb-cookie-content p {
    margin: 5px 0;
    font-size: 14px;
    line-height: 1.5;
}

.arnlb-cookie-content p:first-child {
    font-weight: 500;
}

.arnlb-cookie-content p:last-child {
    opacity: 0.8;
    font-size: 13px;
}

.arnlb-cookie-button {
    background: #4ecdc4;
    color: #1e3a5f;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.arnlb-cookie-button:hover {
    background: #ffffff;
    transform: scale(1.05);
}

/* Payment Footer */
.arnlb-payment-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #dee2e6;
}

.arnlb-payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.arnlb-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all 0.3s ease;
}

.arnlb-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.arnlb-bank-logo {
    height: 40px;
}

.arnlb-security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    color: #495057;
    font-size: 14px;
}

.arnlb-security-badges span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Footer Payments Override for Flatsome */
.arnlb-footer-payments {
    display: flex;
    align-items: center;
    gap: 15px;
}

.arnlb-footer-payments img {
    height: 28px;
    width: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .arnlb-cookie-bar {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .arnlb-cookie-content {
        min-width: 100%;
    }
    
    .arnlb-cookie-button {
        width: 100%;
    }
    
    .arnlb-payment-logos {
        gap: 15px;
    }
    
    .arnlb-logo {
        height: 28px;
    }
    
    .arnlb-security-badges {
        flex-direction: column;
        gap: 10px;
    }
}
