html {
    font-family: "Lato", sans-serif;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6,
.mall-products-item__name,
nav {
    font-family: "Cormorant Garamond", serif;
    font-weight: 300;
}

@media (max-width: 515px) {

    header {
        .logo-container {
            img {
                height: 48px;
            }
        }
    }

    /* Login status bar */
    .top-bar .container>div:nth-child(1) {
        width: 100%;
        padding-left: 1rem;
    }

    header .container {
        flex-wrap: wrap;
    }

    /* Search Bar */
    header .container>div:nth-child(1) {
        order: 3;
        width: 100%;
        padding: 1rem 1rem 0;
    }

    /* Logo */
    header .container>div:nth-child(2) {
        order: 1;
        width: 50%;
    }

    /* Utility */
    header .container>div:nth-child(3) {
        order: 2;
        width: 50%;

        .mall-cart-button,
        .mall-account-button {
            display: flex;
            justify-content: center;
            align-items: center;
        }
    }

    nav .container>.block {
        margin: 0;
    }

    nav .container>.block>div {
        overflow: auto;
        white-space: nowrap;
    }

    nav .container>.block>div>.block {
        display: inline-block;
        margin: 0 1rem;
    }

    main {
        padding: 0 1rem;
    }

    /* Left sidebar */
    main>div>.w-1\/4 {
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100%;
        background: white;
        padding: 3rem;
        transition: all .3s ease;
        opacity: 0;
        z-index: -1;
    }

    main>div>.w-1\/4.show {
        z-index: 999;
        opacity: 1;
    }

    main>div>.w-1\/4:before {
        content: '✕';
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }

    main>div>.w-1\/4 form {
        padding-right: 0;
    }

    /* Main */
    main>div>.w-3\/4 {
        width: 100%;
    }

    .mall-products {
        padding-left: 0;
    }

    .mall-products-item {
        width: 50%;
    }

    .mall-products-item__image {
        aspect-ratio: 1;
        width: 100%;
        height: auto;
    }

    .mall-products-item__image img {
        object-fit: cover;
    }

    .mall-products-item__info-primary {
        flex-direction: column;
    }

    .mall-products-item__price {
        padding-left: 0;
    }

    .mall-product {
        flex-direction: column;
    }

    .mall-product .mall-product__info {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .mall-product .mall-product__images {
        order: -1;
        width: 100%;
    }

    .mall-product .mall-product__images .mall-product__image {
        width: 100%;
        border: 0;
        padding: 0;
        margin: 0 0 2rem;
    }

    .mall-product .mall-product__images .mall-product__image img {
        width: 100%;
    }

    .mall-product__cart {
        width: 100%;
        padding: 0;
        margin-bottom: 3rem;
    }

    .mall-signup {
        flex-direction: column;
        margin: 0;
        width: 100%;

        .mall-signup__signin,
        .mall-signup__signup {
            width: 100%;
        }

        .mall-signup__signup {
            margin-left: 0;
            margin-top: 1rem;
        }
    }

    .mall-my-account {
        flex-direction: column;
    }

    .mall-my-account__nav {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
    }

    .mall-my-account__content {
        width: 100%;
        padding-left: 0;
    }

}