.footer {
    background-color: #111111;
    padding: 80px 16px;
    display: flex;
    justify-content: center;
}

.footer-wrapper {
    max-width: 1260px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer-logo {
    margin-bottom: 45px;
    height: 28px;
    width: 121px;
}

.subscribe-text {
    color: #FFF;
    font-size: 22px;
    margin-bottom: 16px;
}

.subscribe-input-wrapper {
    display: flex;
    gap: -1px;
}

.subscribe-input-wrapper input {
    padding: 14px 0 20px 0;
    width: 300px;
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    font-weight: 400;
    border-bottom: 1px solid white;
    background-color: #111111;
}

.subscribe-input-wrapper button {
    padding: 14px 40px;
    background-color: white;
    border: none;
}

.footer-navigation-title, .footer-navigation-item {
    color: white;
}

.footer-navigation-item {
    font-size: 14px;
    margin-top: 24px;
}

.footer-navigation-title {
    font-size: 16px;
    font-weight: 900;
}

.footer-navigation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 39px;
}

@media (max-width: 990px) {
    .footer-wrapper {
        display: block;
    }

    .footer {
        padding: 80px 16px;
    }

    .footer-logo {
        margin-bottom: 32px;
    }

    .subscribe-text {
        margin-bottom: 12px;
        font-size: 22px;
        font-weight: 500;
    }

    .subscribe-input-wrapper input {
        padding: 14px 0 13px 0;
        font-size: 14px;
        width: 100%;
    }

    .subscribe-input-wrapper {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 60px;
    }

    .footer-navigation {
        grid-template-columns: 1fr 1fr;
    }

    .footer-navigation-title {
        font-size: 16px;
        font-weight: 900;
    }

    .footer-navigation-item{
        font-size: 14px;
        font-weight: 400;
        margin-top: 24px;
    }

    .subscribe-input-wrapper button {
        font-size: 14px;
        padding: 14px 0;
    }

    .empty-cart img {
        height: 72px;
        width: 72px;
    }

    .empty-cart > div > div {
        margin-bottom: 20px;
    }

    .add-items-to-cart {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .cart-button {
        width: 100%;
        padding: 14px 0;
        font-size: 14px;
        margin-bottom: 120px;
    }

    .footer-wrapper {
        width: 100%;
    }
}

