footer {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 56px;
    background: linear-gradient(82.67deg, #000F35 0%, #00154A 100%);
    padding: 64px 80px;
}


footer .logo-and-social-wrapper { 
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}


footer .logo-and-social-wrapper .footer-logo { 

}

footer .logo-and-social-wrapper .footer-logo img { 
    max-width: 250px;
    max-height: 64px;
    object-fit: contain;
}


footer .logo-and-social-wrapper .footer-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
footer .logo-and-social-wrapper .footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

footer .logo-and-social-wrapper .footer-social a:hover {
    background-color: rgba(50, 186, 246, 0.16);
}


footer .logo-and-social-wrapper .footer-social a img {
    width: 20px;
    height: 20px;
}

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

footer .footer-links-and-copyright-wrapper .footer-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}

footer .footer-links-and-copyright-wrapper .footer-links a {
    font-family: CircularXX TT, sans-serif;
    font-size: 14px;
    font-weight: 450;
    line-height: 21px;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
    text-decoration: none;
}

footer .footer-links-and-copyright-wrapper .footer-copyright { 

}

footer .footer-links-and-copyright-wrapper .footer-copyright p {
    font-family: CircularXX TT, sans-serif;
    font-size: 14px;
    font-weight: 450;
    line-height: 21px;
    text-align: center;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #FFFFFF;
}

@media (max-width: 1024px) {
    footer .footer-links-and-copyright-wrapper {
        flex-direction: column;
        gap: 24px;
    }
}


@media (max-width: 768px) {
    footer {
        gap: 32px;
        padding: 40px;
    }

    footer .logo-and-social-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    footer .logo-and-social-wrapper .footer-logo img {
        width: 180px;
        height: auto;
    }

    footer .footer-links-and-copyright-wrapper .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }


    footer .footer-links-and-copyright-wrapper .footer-copyright {
        text-align: center;
        width: 100%;
    }
}


.cart-popup {
    position: fixed;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    z-index: 1000;
    width: 640px;
    height: 72px;
    border-radius: 36px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(82.67deg, #000F35 0%, #00154A 100%);
    padding: 0 26px 0 12px;
}




.cart-close-btn {
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/icons/close.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.cart-items-text {
    font-family: CircularXX TT, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 20.8px;
    text-align: right;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
    width: 100%;
    padding-right: 14px;
}


.checkout-btn {
    background-color: rgba(50, 186, 246, 1);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: CircularXX TT, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 48px;
    border-radius: 24px;
    text-align: center;
    text-decoration: none;
    /* padding: 14px 24px; */
}

@media (max-width: 768px) {
    .cart-popup {
        bottom: 0;
        width: 100%;
        height: 141px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        padding: 24px;
        flex-wrap: wrap;
        gap: 24px;
    }

    .cart-items-text {
        order: 1;
        padding-right: 0;
        width: auto;
    }

    .cart-close-btn {
        order: 2;
        align-self: center;
        font-family: CircularXX TT, sans-serif;
        font-weight: 500;
        font-size: 14px;
        line-height: 21px;
        color: rgba(50, 186, 246, 1);
        background: none;
        width: fit-content;
    }

    .cart-close-btn::after {
        content: 'סגירה';
    }

    .checkout-btn {
        order: 3;
        width: 100%;
    }
}
