body {
    overflow-x: hidden;
    margin-top: 8vh;
}

.nav-links .active {
    background-color: #1a1919;
}

nav {
    position: fixed;
    display: flex;
    justify-content: space-around;
    min-height: 8vh;
    max-height: 8vh;
    max-width: 100vw;
    min-width: 100vw;
    background-color: #333232;
    top: 0;
    z-index: 1000;
}

.logo {
    width: 15vh;
    height: 11vh;
    padding: 10px 20px;
    background-color: #333232;
    transition: border-radius 0.2s;
    transition: width 0.5s;
    transition: height 0.5s;
    transition: margin-top 0.2s;
    transition: padding 0.2s;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-right: solid 2px #1a1919;
    border-left: solid 2px #1a1919;
    border-bottom: solid 2px #1a1919;
}

.header-logo:hover .logo {
    margin-top: 5px;
    padding: 10px;
    width: 20vh;
    height: 15vh;
    border-radius: 50px;
    padding: 10px 30px;

}
.nav-links {
    display: flex;
    justify-content: center;
    width: 45%;
    padding-left: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.nav-links li {
    list-style: none;
    display: flex;
    align-items: center;
    padding-left: 35px;
    padding-right: 35px;
    transition: background-color 0.3s;
}

.nav-links li:hover {
    background-color: #272626;
}

.nav-links a {
    text-decoration: none;
    letter-spacing: 1px;
    font-weight: 10px;
    font-size: 1.3em;
    margin: auto;
    font-family: 'Pacifico', cursive;
    color: white;
    white-space: nowrap;
    
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #d4d3d1;
    margin: 5px;    
}

/* Cart */
.cart-button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    transition: background-color 0.3s;
    color: #d4d3d1 !important;
    position: relative;
}

.cart-button:hover{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    transition: background-color 0.3s;
    color: #d4d3d1 !important;
    position: relative;
}

.cart-button-checkout ion-icon {
    color: #d4d3d11c !important;
    pointer-events: none;

}

.cart-button-checkout:hover ion-icon {
    font-size: 40px;

}

.cart-button ion-icon {
    cursor: pointer;
    padding: 0 0;
    position: absolute;
}

.red-dot-active {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: arial;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgb(161, 7, 7);
    left: 0;
    top: 13px;
    font-size: 16px;
}


.cart-window h1 {
    margin-top: 10px;
}

.cart-window {
    width: 450px;
    position: fixed;
    right: 0px;
    height: 77vh;
    top: 8vh;
    background-color: rgb(230, 220, 185);
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    font-size: 20px;
    z-index: 1000;
}

.cart-window h1{
    text-align: center;
    font-family: 'Pacifico', cursive;
}

.cart-window-active {
    transform: translateX(0%);
}

#products-window {
    overflow-y: auto;
    height: 40vh;
    margin: 10px;
    border: 5px groove rgb(255, 255, 255);
    border-radius: 5px;
}

.product-cell {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 3fr 3fr;
    grid-template-rows: auto;
    grid-gap: 10px;
    grid-template-areas:
    "product-image product-image product-name product-name product-name"
    "product-image product-image product-qty price-area delete-button";
    margin: 5px;
    height: 8.5vh;
}

.product-image {
    grid-area: product-image;
    width: 100%;
    height: 100%;
}

.product-name {
    grid-area: product-name;
    font-size: 22px;
}

.product-qty {
    grid-area: product-qty;
    max-width: 100%;
}

.delete-button {
    grid-area: delete-button;
}

.delete-button ion-icon {
    font-size: 38px;
}

.price-area {
    grid-area: price-area;
    display: flex;
    justify-content: flex-start;
    font-size: 22px;
}

.cart-buttons {
    display: flex;
    justify-content: space-around;
}

.cart-buttons .checkout-button:hover {
    background-color: rgb(155, 111, 31);
}

.checkout-button {
    background-color: rgb(190, 137, 39); /* Green */
    border: none;
    color: white;
    padding: 5px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 22px;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    border-radius: 5px;
    cursor: pointer;
}

.disabled-button {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    background-color: gray;
}

.emptyCartText {
    padding: 10px 10px;
}

.facebook {
    color: 	#0a0802;
    font-size: 35px;
    padding: 0;
    border-radius: 100px;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    z-index: 10000;

}

.facebook ion-icon {
    background-color: rgb(255, 255, 255);
}

.header-logo {
    display: flex;

}

footer {
    background-color: #333232;
    color: white;
    height: 4vh;
    display: flex;
    justify-content: center;
    margin-bottom: auto;
    display: relative;
    bottom: 0px;
}

.fb {
    color: #4267B2;
    padding: 5px;
}

.yt {
    color: #FF0000;
    padding: 5px;
}
@media screen and (max-width:1048px){
    body {
        overflow-x: hidden;
    }
    nav {
        align-items: center;
    }
    .nav-links{
        width: 50%;
        position: fixed;
        right: 0px;
        top: 8vh;
        display: flex;
        background-color: #444441;
        flex-direction: column;
        justify-content: flex-start;        
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        z-index: 100;
        overflow-y: auto;
    }
    .nav-links li{
        padding-top: 5vh;
        padding-bottom: 5vh;
    }
    .burger {
        display: block;
    }
    .nav-lins li {
        opacity: 0;
    }
    
    .cart-window {
        width: 100vw;
        height: 92vh;
    }

    #products-window {
        overflow-y: auto;
        height: 65vh;
        margin: 10px;
    }
    
    .red-dot-active {
        position: absolute;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: rgb(161, 7, 7);
        left: 0;
        top: 0;
    }
    .facebook {
        margin-top: 30px;
    }

    
}

@media screen and (max-width:1368px) and (min-width: 768px){
    .nav-links{
        justify-content: space-evenly;
        width: 60%;
    }

    .nav-links li{
        padding-left: 20px;
        padding-right: 20px;
        font-size: 13px;
    }
}

.nav-active {
    transform: translateX(0%);
    display: flex;
}