@font-face { 
    font-family: "Inter";
    src: url("../Fonts/Inter-VariableFont_slnt\,wght.ttf") format("truetype");
}

body {
font-family: "Inter", Verdana, sans-serif;
color: #000;
}

header {
    align-items:center;
    justify-content:center;
    padding-bottom: 15px;
    background-color: #fff;
}

.header_wrapper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    padding-top: 20px;
    width: 100%;
}

.logo {
    margin-bottom: 20px;
    height: auto;
    max-width: 100%;
}

.shoppingbag {
    padding-top: 20px;
}

.site-header {
    position: relative;
    z-index: 1;
    top: -10px;
    width: 100%;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

nav {
    background: #fff;
    position: absolute;
    z-index: 1;
    text-align: left;
}

.hamburger-icon img, #menu-checkbox {
    margin-top: 40px;
}

.active {
    text-decoration: underline;
}

nav, #menu-checkbox {
    display: none;
}

#menu-checkbox:checked ~ nav {
    display: block;
}

nav li {
    display: block;
}

nav a {
    display: block;
    align-items: center;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    line-height: 40px;
    margin-right: 30px;
    font-size: 20px;
}

footer {
    background-color: #282828;
    color: #fff;;
    width: 100%;

}

.footer_menu {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #fff;
    font-size: smaller;
}

h3 {
    font-family: "Inter", verdana, sans-serif;
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.copyright {
    padding-bottom: 15px;
    display: block;
    text-align: center;
    text-decoration: none;
}

.logo_white {
    padding: 20px;
    display: block;
    text-align: center;
}

.foot_a{
    display: flex;
    flex-direction: column;
    color: #fff;
    text-decoration: none;
    text-transform: none;
    margin: 5px;
    font-size: 20px;
}

nav a:hover {
    text-decoration: underline;
}

footer a:hover {
    text-decoration: underline;
}

main a:hover {
    text-decoration: underline;
}

.payment {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 20px;
}

.follow {
    margin-bottom: 30px;
}

.follow img {
    margin: 10px;
}

.cart_quantity {
    text-decoration: none;
    font-size: 20px;
    text-align: center;
    margin-top: -35px;
    font-weight: 500;
    color: #000;
}

.cart_quantity:active {
    text-decoration: none;
}

.loader {
    border: 16px solid #f3f3f3; 
    border-top: 16px solid #000000; 
    border-radius: 50%;
    width: 200px;
    height: 200px;
    animation: spin 2s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  #overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 30rem;
    height: 100%;
    background-color: #f5f5f5;
    z-index: 1000;
  }

@media (min-width: 600px) {
    .header_wrapper {
        justify-content: space-between;
    }

    h3 {
        font-size: 30px;
    }

    nav { 
        display: block;  
        position: static;
        text-align: center;
    }

    .hamburger-icon {
        display: none;
    }

    nav li {
        display: inline-block;
        font-size: 60px;
    }

    nav a:hover {
        text-decoration: underline;
        font-weight: bold;
    }

    .footer_menu {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        margin: 20 px;
        color: #fff;
    }

}