.footer {
    background: var(--white);
    padding: 3rem 1rem 2rem;
    color: var(--text-secondary);
    border-top: 1px solid rgba(var(--black-rgb), 0.05);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__store-link img {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer__store-link:hover img {
    opacity: 0.8;
    transform: translateY(-2px);
}

.footer__top {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 1rem;
    justify-content: space-between;
}

.footer__brand-section {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer__contact-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer__email-address,
.footer__email-address a {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer__links-section {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer__column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer__column a:hover {
    color: var(--secondary-green);
}

.footer__socials {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.footer__social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--secondary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    border: 1.5px solid var(--grey-03);
}

.footer__social-icon:hover {
    background: var(--secondary-green);
    color: var(--white) !important;
    box-shadow: 0 4px 12px rgba(var(--secondary-green-rgb), 0.25);
}

.footer__bottom {
    border-top: 1px solid rgba(var(--black-rgb), 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer__bottom-links a {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__bottom-links a:hover {
    color: var(--secondary-green);
}

.footer__copyright {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .footer__top {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

    .footer__brand-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__links-section {
        grid-template-columns: 1fr;
        text-align: center;
        width: 100%;
        gap: 2rem;
    }

    .footer__links-section > div {
        align-items: center !important;
        justify-content: center !important;
    }

    .footer__socials {
        justify-content: center;
        margin-bottom: 1rem;
        margin-top: 1rem;
    }

    .footer__bottom {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer__links-section {
        grid-template-columns: 1fr;
    }
}
