:root {
    /* Colors */
    --white: #FFFFFF;
    --black: #000000;
    --grey-950: #1D2026;
    --grey-500: #69707D;
    --grey-300: #C3CAD9;
    --grey-100: #E4E9F2;
    --grey-50: #f6F8FD;
    --orange-500: #FF7E1B;
    --orange-300: #FFAB6A;

    /* Typography */
    --tp1-size: 2.75rem;
    --tp1-line-height: 3rem;
    --tp1-letter-spacing: 0rem;
    --tp1-weight: 900;

    --tp2-size: 1.75rem;
    --tp2-line-height: 2rem;
    --tp2-letter-spacing: 0rem;
    --tp2-weigth: 900;

    --tp3-size: 1rem;
    --tp3-line-height: 1.625rem;
    --tp3-letter-spacing: 0rem;
    --tp3-weight: 900;  

    --tp4-size: .9375rem;
    --tp4-line-height: 1.625rem;
    --tp4-letter-spacing: 0rem;

    --tp5-size: .8125rem;
    --tp5-line-height: 1rem;
    --tp5-letter-spacing: .125rem;

    --tp6-size: .75rem;
    --tp6-line-height: .9375rem;
    --tp6-letter-spacing: .115625rem;

}

* {
    font-family: "kumbh Sans";
}

body {
    margin: 0;
}

.nav-flex-container {
    width: 23.4375rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.desktop-menu-option {
    display: none;
}

.nav-left-flex, .nav-right-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.logo-container {
    margin-left: 1.5rem;
}

.cart-alert {
    width: 1.5rem;
    height: 1rem;
    background-color: #FF7E1B;
    border-radius: 40%;
    position: absolute;
    top: -.5rem;
    right: -.5rem;
}

.alert-text {
    font-size: .825rem;
    margin: 0;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Shopping Cart */
.shopping-cart-container {
    margin-right: 1.5rem;
    position: relative;
}

.my-cart-container {
    width: 22.5rem;
    height: 16rem;
    background-color: var(--white);
    position: absolute;
    z-index: 100;
    top: 3rem;
    right: -3rem;
    box-shadow: 0px 0px 0px 2000px rgba(0,0,0,0.6);
    border-radius: .825rem;
}

.my-cart-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-size: 1rem;
    font-weight: 700;
    margin-left: 1rem;
    margin-top: 1.5rem;
}

.close-cart {
    width: 1rem;
    height: 1rem;
    margin-right: 1rem;
}

.my-cart-hr {
    display: block;
    border: 1px solid var(--grey-100);
    margin-top: 0;
}

.my-cart-display {
    height: min-content;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 2rem;
}

.empty-cart-text {
    color:var(--grey-500);
    font-weight: 700;
}

.items-in-cart {
    display: flex;
    flex-direction: row;
}

.cart-item-img-container {
    width: 3.125rem;
    height: 3.125rem;
    margin-right: 1rem;
}

.cart-item-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: .25rem;
}

.cart-item-text-container {
    display: flex;
    flex-direction: column;
}

.item-name, .item-price, .quantity-selected, .purchase-total {
    margin: 0;
}

.item-name {
    color: var(--grey-500);
}

.item-price, .quantity-selected {
    margin-right: .5rem;
    color: var(--grey-500);
}

.quantity-selected {
    letter-spacing: .25rem;
}

.purchase-total {
    margin-left: 2rem;
    font-weight: 700;
}

.item-name {
    margin-bottom: .5rem;
}

.item-quantity-container {
    display: flex;
    flex-direction: row;
}

.delete-icon-container {
    margin-left: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.delete-icon {
    width: .875rem;
    height: 1rem;
}

.checkout-btn-container {
    margin-top: 2rem;
}

.checkout-btn {
    width: 19.5rem;
    height: 3.5rem;
    border: none;
    background-color: var(--orange-500);
    font-size: 1rem;
    font-weight: 700;
    display: block;
    margin: auto;
    border-radius: .825rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-img-container {
    width: 2rem;
    height: 2rem;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.mobile-nav {
    min-height: 100vh;
    width: 15rem;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    background-color: var(--grey-50);
    box-shadow: 0px 0px 0px 2000px rgba(0,0,0,0.6);
}

.mobile-nav-flex-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
    margin-left: 5rem;
}

.mobile-menu-option {
    margin-top: 2rem;
    font-weight: 700;
}

.gallery {
    width: 23.4375rem;
    height: 18.75rem;
    position: relative;
    height: 18.75rem;
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-one {
    object-fit: cover;
    object-position: 0px -30px;
}

.product-two, .product-three {
    object-fit: cover;
    object-position: top center;
}

.gallery-btn {
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    border: none;
    border-radius: 50%;
}

.previous-btn {
    position: absolute;
    z-index: 98;
    top: 40%;
    left: 5%;
}

.next-btn {
    position: absolute;
    z-index: 98;
    top: 40%;
    right: 5%;
}

.desktop-img-collection {
    display: none;
}

.product-info-container {
    width: 23.4375rem;
    margin-left: auto;
    margin-right: auto;
}

.sneaker-company {
    color: var(--grey-500);
    text-transform: uppercase;
    font-size: var(--tp6-size);
    letter-spacing: var(--tp6-letter-spacing);
    margin-top: 1.5rem;
}

.product-name {
    width: 20rem;
    height:3rem; 
    font-size: var(--tp2-size);
    line-height: var(--tp2-line-height);
    letter-spacing: var(--tp2-letter-spacing);
}

.product-description {
    width: 23.4375rem;
    margin-top: 2rem;
    color: var(--grey-500);
    font-size: var(--tp4-size);
    line-height: var(--tp4-line-height);
}

.price-flex-container {
    width: 23.4375rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
}

.left-flex {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.new-price {
    font-size: var(--tp2-size);
    line-height: var(--tp2-line-height);
    letter-spacing: var(--tp2-letter-spacing);
    font-weight: 700;
}

.discount-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--black);
    width: 3.1875rem;
    height: 1.6875rem;
    border-radius: .5rem;
    margin-left: 1rem;
}

.discount {
    color: var(--grey-50);
}

.original-price {
    text-decoration: line-through;
    color: var(--grey-500);
    font-weight: 700;
}

.quantity-cart-flex-container {
    width: 100%;
    padding-bottom: 1rem;
}

.quantity-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--grey-50);
    border-radius: .825rem;
}

.remove-btn, .add-btn {
    background-color: var(--grey-50);
    border: none;
    width: .75rem;
}

.remove-btn {
    margin-left: 1rem;
}

.quantity-display {
    font-size: 1rem;
    font-weight: 700;
}

.add-btn {
    margin-right: 1.5rem;
}

.cart-btn {
    width: 100%;
    height: 3.5rem;
    border: none;
    background-color: var(--orange-500);
    font-size: 1rem;
    font-weight: 700;
    display: block;
    margin: auto;
    margin-top: 2rem;
    border-radius: .825rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-btn-img {
    margin-right: 1rem;
    height: 1.5rem;
}

.hide {
    display: none;
}

hr {
    display: none;
}

@media screen and (min-width: 700px) {
    .nav-flex-container {
        width: 38rem;
        margin-top: 3rem;
    }

    .gallery {
        width: 38rem;
        height: 20rem;
        margin-top: 4rem;
    }

    .product-img {
        border-radius: .825rem;
    }

    .product-one {
        object-position: 0px -150px;
    }

    .product-three {
        object-position: 0px -5px;
    }

    .product-four {
        object-position: 0px -50px;
    }

    .product-info-container {
        width: 38rem;
        margin-top: 3rem;
    }

    .product-name {
        width: 100%;
        height: min-content;
        font-size: var(--tp1-size);
    }

    .product-description {
        width: 100%;
    }

    .price-flex-container {
        width: 38rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 1.5rem;
    }

    .new-price {
        margin: 0;
    }

    .quantity-cart-flex-container {
        width: 38rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: .5rem;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        margin-top: 2rem;
    }

    .quantity-container {
        height: 3.5rem;
        margin: 0;
    }

    .cart-btn {
        margin: 0;
    }
}

@media screen and (min-width: 1200px) {
    .nav-flex-container {
        width: 69.375rem;
    }

    .burger-container {
        display: none;
    }

    .logo-container {
        margin-right: 2rem;
        margin-left: 0;
    }

    .desktop-menu-option {
        display: block;
        text-decoration: none;
        color: var(--grey-500);
        margin-left: 3rem;
    }

    .logo-container:hover, .profile-img:hover, .shopping-cart:hover {
        cursor: pointer;
    }

    hr {
        display: block;
        width: 69.375rem;
        margin-top: 3rem;
        border: 1px solid var(--grey-100);
    }

    .my-cart-hr {
        width: 99%;
    }

    .checkout-btn, .delete-icon, .close-cart {
        cursor: pointer;
    }

    .gallery-product-info-flex-container {
        width: 64rem;
        display: grid;
        grid-template-columns: 28rem 28rem;
        column-gap: 8rem;
        margin-left: auto;
        margin-right: auto;
        align-items: center;
    }

    .product-one {
        object-position: bottom center;
    } 

    .product-four {
        object-position: top center;
    }
    
    .gallery {
        width: 100%;
        height: auto;
    }

    .add-btn, .remove-btn {
        cursor: pointer;
    }

    .desktop-img-collection {
        display: grid;
        grid-template-columns: 5.5rem 5.5rem 5.5rem 5.5rem;
        justify-content: space-between;
        margin-top: 2rem;
    }

    .thumbnail-container {
        width: 5.5rem;
        height: 5.5rem;
    }

    .thumbnail {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: .825rem;
        cursor: pointer;
    }

    .product-info-container {
        width: 100%;
    }

    .product-name {
        line-height: 3rem;
    }

    .quantity-cart-flex-container {
        width: 28rem;
        display: grid;
        grid-template-columns: .5fr 1fr;
    }

    .cart-btn {
        cursor: pointer;
    }

    .filter {
        opacity: .5;
        border: 2px solid rgb(255, 125, 27, 1);
    }
}
