.footer {
    background: var(--secondary-dark-color);
    color: var(--primary-color);
}

.logo-container {
    display: block;
    width: 100px;
    height: 100px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}


@media (min-width: 992px) {
    .footer-grid .footer-section {
        width: 20%;
    }

    .footer-grid .footer-section.footer-social {
        width: 40%;
    }
}

@media (max-width: 991.98px) {
    .footer-grid {
        flex-direction: column;
    }

}

/* Footer Section Headers with Toggle */

.footer-section-header h4 {
    cursor: text;
    margin-bottom: 0;
    color: var(--white-color);
}


/* Footer Links */
.footer-links {
    padding-inline-start: 0;
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.footer-links i {
    color: #f07e01;
}

.footer-links li:has(a:hover)::marker {
    color: var(--secondary-color);
}

.footer-links a {
    color: var(--soft-white);
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    padding: 0.25rem 0;
    width: fit-content;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-links .social-media-icon {
    background-color: var(--white-color-op-10);
    border-radius: var(--rounded-circle);
    padding: 0.6rem;
    transition: all 0.2s ease-in-out;
}

.footer-links .social-media-icon:hover {
    color: var(--primary-color);
    background-color: var(--secondary-color);
}

.contact-item {
    display: flex;
    align-items: start;
    color: var(--white-color);
}

.contact-item svg {
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    margin-right: 0.75rem;
    color: var(--secondary-color);
    text-align: center;
}




/* Social Media & Language Section */
.footer-divider {
    border-top: 1px solid var(--text-description);
    padding-top: 2rem;
}

.social-language-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .social-language-section {
        flex-direction: row;
        gap: 0;
    }
}

.social-label {
    color: var(--light-gray-2);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--light-gray-2);
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}


.footer-language-toggle {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-language-btn {
    color: var(--light-gray-2);
    background: transparent;
    border: none;
    font: inherit;
    cursor: pointer;
    transition: color 0.2s ease;
}

.footer-language-btn:hover {
    color: var(--primary-color);
}

/* Copyright Section */
.copyright-section {
    background-color: var(--primary-dark-color);
    border-top: 1px solid var(--azure-color);
    padding-top: 1.25rem;
}
@media (max-width: 991.98px) {
    .copyright-section {
        padding-bottom: 5rem !important;
    }
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: var(--primary-color);
}

.logo-footer img {
    width: 200px;
}

.socialmedia-links i {
    font-size: 1.4rem;
    color: #f07e01;
}

.footer-social {
    border: 1px solid var(--white-color);
    border-radius: 10px;
}

.icon-payment picture {
    display: flex;
    align-items: center;
    justify-self: center;
    width: 50px;
}
.apple-pay-footer {
    filter: var(--white-filter-color);
}
.mada,
.stc {
    background-color: var(--white-color);
    padding-inline: 3px;
}