/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

:root {
    --light-purple: #4E49B9;
    --dark-purple: #3B3790;
    --whatsapp-contacts: #3E399D;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.linkfooter {
    text-decoration: none;
    color: white;
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
}

.linkfooter:hover {
    text-decoration: none;
    color: white;
    cursor: pointer;
}

.linkfooter i{
    font-size: 12px;
}

.textsize20 {
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
}

.textsize14 {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
}

footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--light-purple);
    padding: 30px 60px;
    gap: 35px 55px;
    color: white;
}

#footer-sections-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
}

#footer-strong-line {
    height: 33px;
    width: 100%;
    background-color: var(--dark-purple);
    color: white;
    text-align: center;
    padding: 8px 0px 7px 0px;
    line-height: 18px;
    font-size: 12px;
}

#footer-adress-media-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 250px;
}

#footer-adress-media-section-adress-container {
    margin: 17px 0px 37px 0px;
}

#footer-adress-media-section-social-text {
    margin: 5px 0px 10px 0px;
}

#footer-adress-media-section-media-icons {
    display: flex;
    gap: 17.14px 15.82px;
}

#footer-adress-media-section-media-icons img {
    width: 29px;
    height: 29px;
}

#footer-payment-methods-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 17px;
    width: 190px;
}

#footer-contact-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 157px;
}

.footer-contact-section-whatsapp-contacts {
    margin: 17px 0px 16px 0px;
    background-color: var(--dark-purple);
    border-radius: 35px;
    display: flex;
    align-items: center;
    width: auto;
    white-space: nowrap;
    cursor: pointer;
    padding: 5px 12px 5px 0;
    color: white;
}

.footer-contact-section-whatsapp-contacts:hover {
    text-decoration: none;
    color: white;    
}

.footer-contact-section-whatsapp-contacts::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-image: url(/img7/assets/footer/whatsapp-icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin: 8.75px 6.72px 8.64px 10.75px;
}

#footer-contact-section-emails {
    margin-top: 6px;
}

#footer-our-app-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 300px;    
}

#footer-our-app-section-title {
    margin-bottom: 17px;
}

#footer-our-app-section img {
    margin-bottom: 7px;
}

.footer-our-app-links{
    display: flex;
    gap: 12px;    
}

#mobile-footer {
    display: none;
}

@media screen and (max-width: 650px) {
    #footer-strong-line {
        display: none;
    }
    
    #footer-our-app-section {
        display: none;
    }

    #footer-sections-container {
        display: none;
    }

    #footer-payment-methods-section {
        display: none;
    }

    #footer-adress-media-section {
        display: none;
    }

    #footer-logo {
        display: none;
    }

    #desktop-footer {
        /* background-color: white; */
        display: flex;
        padding: 0;
        position: relative
    }

    #mobile-footer {
        width: 100%;
        display: flex;
        align-items: center;
        padding: 0;
        height: 100%;
        position: fixed;
        bottom: 0;
        margin-top: 20px;
        height: auto;
        background-color: white;
        padding:
            env(safe-area-inset-top, 10px)
            env(safe-area-inset-right, 10px)
            env(safe-area-inset-bottom, 10px)
            env(safe-area-inset-left, 10px);
    }
    #mobile-footer a {
        text-decoration: none;
        color: black;
        display: flex;
        flex-direction: column;
        align-items: center;
        cursor: pointer;
        gap: 3px;
    }    

    #cartimg {
        width: 24px;
        height: 24px;
    }

    .footer-btn {
        padding: 7px 17px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: black;
        font-size: 10px;
        font-weight: 500;
        cursor: pointer;
    }

    .footer-btn:active {
        transform: scale(1.08);
    }

    .footer-btn--active {
        border-top: 3px solid var(--light-purple);
        border-radius: 2px;
    }
}