@import "product.css";
@import "productlist.css";
:root {
    --color: red;
    --color-light: #f0f0f0;
    --accent-color: rgb(185, 4, 118, 1);;
    --accent-color-light: rgb(185, 4, 118, 0.3);
    --form-padding: 20px;
    --form-radius: 10px;
}
* {
    box-sizing: content-box;
    max-width:100vw;
}
body {
    font-size: 1.125rem;
    font-family: 'Lobster Two', cursive;
    line-height: 1.5;
    margin: 0;
}
p {font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif"}
header {
    display: flex;
    flex-direction: row;
    height: 4rem;
    border-bottom: 1px solid #f1f1f1;
    justify-content: space-around;
    align-content: center;
    align-items: center;
}
header a {
    color: black;
    text-decoration: none;
}
#menu {
    display: none;
    height: 100vh;
    width: 50vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background: #eeeeee;
}
#menu ul {
    list-style: none;
}
#menu:target {
    display: block;
}
#cart {
    display:none;
    position: absolute;
    top: 4rem;
    width: 95vw;
    z-index: 100;
    margin: 1vw;
    background: #eeeeee;
    /*top: 4rem;*/
    border-radius: 1vw;
    padding: 1vw;
}
#cart div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.cart_headline {
    border-bottom: 1px solid #ffffff;
}
#cart ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 0;
}
#cart li {
    padding: 1em;
}
#cart .empty {
    text-align: center;
}
.cart_product {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.cart_product img {
    height: 80px;
    aspect-ratio: 1;
}
.cart_product p{
    display: flex;
    flex-direction: column;
    width: 60vw;
}
.cart_unit_price {
    color: #777777;
}
#cart:target{display:block}



.footer_space {padding: 0 10px}



footer {
    background: var(--color-light);
    min-height: 30vh;
    margin-top:50px;
    display:flex;
    flex-direction: column;
    justify-content: space-around;
    flex-wrap: wrap;
}
footer h3 {
    font-size: 1.8rem;
}
.footer1of4 {
    width: 100vw;
}
.submenu ul {
    list-style: none;
    padding: 0;
}
.submenu a {
    color: black;
    line-height: 1.8;
    text-decoration: none;
}
.supplier {width: 100vw}
.supplier .logos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-around;
}
.copyright {
    text-align: center;
    margin-top: 20px;
    background: rgba(0,0,0,0.1);
    padding: 20px 0;
    width: 100vw
}.design_hint {
    white-space: nowrap;
}
.hide-s {display: none}
.hide-m {display: block}
.hide-l {display: block}
.show-s {display: block}
.show-m {display: none}
.show-l {display: none}
@media only screen and (min-width: 600px) {
    .hide-s {display: block}
    .hide-m {display: none}
    .hide-l {display: block}
    .show-s {display: none}
    .show-m {display: block}
    .show-l {display: none}
    header {
        min-height: 8rem;
        border:0;
    }
    #menu {margin-top: 1.25rem;}
    #menu, #menu ul {
        display: flex;
        width:100vw;
        height: 4rem;
        flex-direction: row;
        position:inherit;
        justify-content: space-around;
        padding: 0;
    }
    header {
        flex-wrap: wrap;
    }
    #cart {
        width: 50vw;
    }
    #cart p {
        width: 30vw;
    }
    

    
    footer {
        flex-direction: row;
        justify-content: space-between
    }
    .footer1of4 {
        width: 22vw;
    }
    
}
@media only screen and (min-width: 1024px) {
    .hide-s {display: block}
    .hide-m {display: block}
    .hide-l {display: none}
    .show-s {display: none}
    .show-m {display: none}
    .show-l {display: block}
    
}