footer {
    background: transparent;
}

footer a:not(.promo-container a) {
    position: relative;
    color: var(--color-coconut-husk);
    text-decoration: none;
    transition: color 0.25s ease;

    @media only screen and (max-width: 1023px) {
        transition: none;
    }
}

footer a:not(.promo-container a):hover {
    color: var(--color-coconut-husk);
}

footer a:not(.promo-container a)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 0.5px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;

    @media only screen and (max-width: 1023px) {
        display: none;
    }
}

footer a:not(.promo-container a):hover::after,
footer a:not(.promo-container a):focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;

    @media only screen and (max-width: 1023px) {
        transform: none;
    }
}

footer a:not(.promo-container a):not(:hover)::after {
    transform-origin: right;

    @media only screen and (max-width: 1023px) {
        transform-origin: unset;
    }
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    align-items: center;
    gap: 2rem;

    @media only screen and (max-width: 1023px) {
        gap: 1rem;
    }
}

.footer-wrapper p {
    text-transform: uppercase;
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-medium);
}

.footer-wrapper .promo-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;

    @media only screen and (max-width: 1023px) {
        text-align: center;
    }
}

.footer-wrapper .promo-container .socials {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-wrapper .promo-container .socials li {
    display: flex;
}

.footer-wrapper .promo-container .socials li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease;
}

.footer-wrapper .promo-container .socials li a:hover,
.footer-wrapper .promo-container .socials li a:focus-visible {
    transform: scale(1.1);
}

.footer-wrapper .promo-container .socials .icon {
    display: inline-block;
    width: 1.2rem;
    height: 1.2rem;
    background-color: var(--color-coconut-husk);
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
}

.footer-wrapper .promo-container .socials .icon-facebook {
    mask-image: var(--facebook-icon);
    -webkit-mask-image: var(--facebook-icon);
}

.footer-wrapper .promo-container .socials .icon-instagram {
    mask-image: var(--instagram-icon);
    -webkit-mask-image: var(--instagram-icon);
}

.footer-wrapper .promo-container .socials .icon-tiktok {
    mask-image: var(--tiktok-icon);
    -webkit-mask-image: var(--tiktok-icon);
}

.footer-wrapper .footer-contact-container {
    font-size: var(--font-size-xs);
    width: 100%;

    @media only screen and (max-width: 1023px) {
        padding-bottom: 3rem;
    }
}

.footer-wrapper .footer-contact {
    display: flex;
    align-items: end;
    gap: 1rem;

    @media only screen and (max-width: 1023px) {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.3rem;
    }
}

.footer-wrapper .footer-contact * {
    font-style: normal;
}

.footer-wrapper .footer-menu {
    position: relative;
    width: 100%;
    border-block: 1px solid var(--color-coconut-husk);
}

.footer-wrapper .footer-menu::after {
    content: "";
    position: absolute;
    right: 0.75rem;
    top: 0;
    width: 4rem;
    height: 4rem;
    transform: translateY(-65%);
    background-color: var(--color-coconut-husk);
    mask-image: var(--logo-url);
    -webkit-mask-image: var(--logo-url);
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    pointer-events: none;
    z-index: 1;

    @media only screen and (max-width: 1023px) {
        right: 50%;
        transform: translate(50%, -65%);
    }
}

.footer-wrapper .footer-menu ul {
    list-style-position: inside;
    display: flex;
    flex-wrap: wrap;
    text-transform: uppercase;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 0.2rem;
    gap: 1rem;

    @media only screen and (max-width: 1023px) {
        flex-wrap: nowrap;
        flex-direction: column;
        align-items: start;
        gap: 0.3rem;
        padding: 1rem 0.2rem 0 0.2rem;
    }
}

.footer-wrapper .footer-menu ul a {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
}

.footer-wrapper .copyright-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;


    @media only screen and (max-width: 1023px) {
        flex-direction: column;
    }
}

.footer-wrapper .copyright-container .left {
    opacity: 0.5;
    text-transform: uppercase;
    color: var(--color-coconut-husk);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
}

.footer-wrapper .copyright-container .right {
}