* {
    padding: 0;
    margin: 0;

    position: relative;
    z-index: 0;
}

body {
    background: url('../assets/imgs/main-bg.svg');
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;

    font-size: 20px;
    font-family: sans-serif;
    font-weight: bolder;

    width: 100%;
    height: 100%;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.main-header {
    background-color: #FAF5EFff;

    width: 96%;
    height: 50px;

    position: fixed;
    top: 0;
    z-index: 10;

    flex-wrap: nowrap;
    justify-content: space-between;

    padding: 5px 2%;
}

.brand, .cart-in-top {
    width: auto;
    height: 95%;

    justify-content: space-between;
}

.cart-in-top {
    position: relative;
}

.header-figure, .header-figure img, .brand h1, .cart-in-top small {
    width: auto;
    height: 100%;
}

.brand h1, .cart-in-top small {
    font-size: 1em;

    height: auto;

    display: block;

    margin: 0 20px;
}

.cart-in-top small {
    font-size: 0.75em;
}

.cart-in-top .no-of-items {
    background-color: #fa8a07;
    
    position: absolute;
    top: -5px;
    left: 90%;
    z-index: 10;

    border-radius: 30px;
    padding: 2px 5px;
    margin: 0;
}

.main-nav {
    justify-content: space-evenly;
}

.main-nav a {
    color: #000;

    font-size: 0.75em;
    

    text-decoration: none;

    margin: 0 10px;
}

.main-nav a:hover, .main-nav a:active, .main-nav .active-nav {
    color: #f96a1d;
}

main {
    width: 96%;
    height: auto;

    padding: 0 2%;
    margin-top: 60px;
}

main section {
    background: url('../assets/imgs/shop-top-bg.svg');
    background-position: top 70px center;
    background-repeat: no-repeat;
    background-size: 96%;
    background-attachment: fixed;

    width: 100%;
    height: 100%;
}

main section .tree-headers {
    width: 80%;
    height: auto;

    flex-wrap: nowrap;
    justify-content: space-between;

    padding: 30px 10%;
}

main section .tree-headers div {
    width: 30%;
    height: auto;

    flex-wrap: nowrap;
    justify-content: space-between;

    margin: 0 5px;
}

main section .tree-headers div h4, main section .tree-headers div h2, main section .tree-headers div small {
    text-align: center;

    width: 100%;
    height: auto;
}

main section .tree-headers div h4, main section .tree-headers div small {
    font-size: 0.75em;
}

main section .tree-headers div h2 {
    font-size: 2em;

    height: 100%;
}

main section .tree-headers div h4 {
    color: #fff;
}

main section .tree-headers div h4 span {
    color: #000;
}

main section .tree-headers .results select {
    background-color: #ffd590;

    font-size: 0.5em;
    font-weight: bolder;

    width: auto;
    height: auto;

    border-radius: 10px;
    padding: 5px;
}

main .products {
    width: 90%;
    height: auto;

    padding: 0 5%;
}

main .products .product-item {
    background: radial-gradient(#f99b61, #fff);

    width: 250px;
    height: 400px;

    justify-content: space-evenly;

    border-radius: 30px;
    padding: 10px;
    margin: 20px;
}

main .product-item .figures {
    width: 100%;
    height: 10%;

    flex-wrap: nowrap;
    justify-content: space-between;
}

main .product-item .figures figure {
    width: 20%;
    height: 100%;
}

main .product-item .figures img {
    width: auto;
    height: 100%;
}

main .product-item .main-img {
    width: 100%;
    height: 70%;
}

main .product-item .main-img figure {
    width: 100%;
    height: 100%;
}

main .product-item .main-img figure img {
    width: 100%;
    height: auto;
}

main .product-item .name-price {
    width: 100%;
    height: 20%;
}

main .product-item .name-price p {
    color: #274eb1;

    text-align: center;
    
    width: 100%;
    height: 10%;
}
