/* Footer genel stilleri */
.footer {
    margin-top: 50px;
}

.footer-logo-img {
    width: 200px;
    height: 75px;
}

.title-footer {
    line-height: 10px;
}

.menu-bottom {
    display: flex;
    gap: 15px;
}

.menu-bottom-item a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.payment-logos {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.payment-logo-item img {
    height: 30px;
    width: auto;
}

.content-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.text-info {
    color: #000000;
}

/* Mobil cihazlar için düzenleme */
@media (max-width: 768px) {
    .content-footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .copyright, .menu-bottom, .payment-logos {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .copyright .d-flex {
        justify-content: center;
    }

    .copyright span {
        font-size: 12px;
    }
    
    .footer-security-badge-item {
        padding: 8px;
        height: 60px;
    }
    
    .footer-security-badge-img {
        max-height: 45px;
    }
}

@media (max-width: 576px) {
    .footer-security-badge-item {
        height: 50px;
    }
    
    .footer-security-badge-img {
        max-height: 40px;
    }
}
