html{
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{
    margin: 0;
    padding: 0;
}
/*navigation*/
.top-nav{
    position: relative;
    background: -webkit-linear-gradient(45deg,#353535, #d2bfbf);
    background: -moz-linear-gradient(45deg, #353535, #d2bfbf);
    box-shadow: 0px 0px 10px 0px;
    display: flex;
    justify-content: center;
    height: 100px;

}
.top-nav-fix{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1;
    background: -webkit-linear-gradient(45deg, #d6d6d6, #ffffff);
    background: -moz-linear-gradient(45deg,#d6d6d6, #ffffff);
    height: 60px;
    transition: 1s;
}
.top-logo{
    box-shadow: 0px 0px 30px 40px white;
    position: relative;
    width:200px;
    height:100px;
    top: 1vh;
    transition: 1s;
}
.banner-top{
    position: relative;
    z-index: -1;
    width: 100%;
    transition: 1s;
}
.go-up{
    position:fixed;
    bottom: 65px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: #f8a5a5;
    display: none;
    opacity: 0;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    cursor: pointer;
    transition:opacity 1s;
}
.go-up:hover .fa-arrow-up{
    animation: spinArrow 0.3s linear;
}
@keyframes spinArrow {
    from{transform:rotate(0deg)}
    to{transform: rotate(360deg)}
}
.go-up > .fa-arrow-up{
    color: white;
    font-size: 25px;
}
.menu-nav{
    position: absolute;
    right: 10px;
    height: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;



}
.menu-nav a{
    cursor: pointer;
    font-size:17px;
    text-transform: uppercase;
    font-family: Monospace,Arial,Helvetica,sans-serif;
    letter-spacing: 3.2px;
    color: white;
    margin:10px;
    text-decoration: none;
}
.amount-of-products{
    position: relative;
    float: right;
    right: 20px;
    top: -12px;
    font-family: monospace;
    background: white;
    height: 17px;
    color: black;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    padding-left: 5px;
    padding-right: 5px;
    display: none;
}
/* end navigation*/

/* logo brands */
.brands{
    position: absolute;
    top:180px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: white;
    box-shadow: 0px 0px 10px 10px #ffebeb;
    transition: 1s;
}

.brands img{
    width: 100px;
    transition: 0.5s;
}
.brands img:hover{
    opacity: 0.2;
}
/* end logo brands */
.shop-container{
    margin-top: 30px;
    margin-bottom: 50px;
}
.select-gender{
    position: relative;
    display: flex;
    justify-content: space-around;
}
.select-gender img{
    width: 250px;
    box-shadow: 0px 0px 10px 10px #ffebeb;
}
.selection-container{
    display: flex;
    align-items: center;
}
.selection-container .selection p{
    position: relative;
    font-size: 35px;
    text-align: center;
    font-family: Monospace,Arial,sans-serif;
    cursor: pointer;
    letter-spacing: 10.5px;
    transition: 0.5s;
}

.selection p:after{
    content: "";
    height: 2px;
    position: absolute;
    top: 38px;
    margin: auto;
    left:0px;
    right:0px;
    width:0;
    transition: 0.5s;
    background: #000;

}
.selection p:hover:after{
    width: 100%;
}

.selection p:hover{
    opacity: 0.7;
}
.product-search-section{
    display: grid;
    margin: auto;
    grid-gap: 10px;
    width: 90%;
    margin-top:30px;
    left:0;
    right:0;
    grid-template-areas:
    'filters'
    'filter-tab'
    'products';

}
.filter-txt{
    position: relative;
    text-transform: uppercase;
    font-family: Monospace,Arial,sans-serif;
    letter-spacing: 1.5px;
    margin: 10px;
    color: grey;
}
.category-filter{

}
.select-brand{
    grid-area:filters;
    position: relative;
    display: block;
    left: calc(100% - 400px);
    float: right;
    width: max-content;
}
.search-filters{
    grid-area:filters;
}
.search-filters .filter-section{
    position: relative;
    background: white;
    border:1px solid lightgrey;
    width: 200px;
    padding: 10px;
    margin:10px;
    float:left;

}
.sortby-options,.select-a-brand-options,.price-options,.category-options{
    display: none;
}
.left-range-price{
    transform: rotate(180deg);
    right: -1.7px;
}
.right-range-price{
    left: -1.7px;
}
.range-price-container input[type=range]{
    -webkit-appearance: none;
    background: #fca6a6;
    outline: none;
    height:8px;
}
.left-range-price{
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
}
.right-range-price{
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
}
.price-input{
    width: 25%;
}
.input-price-container{
   display:flex;
    justify-content: space-between;
    margin: 10px
}
.range-price-container input[type=range]::-webkit-slider-thumb{
    -webkit-appearance: none;
    height:18px;
    width:18px;
    background: white;
    border: 1px solid grey;
    border-radius: 100%;
}

.range-price{
    width: 50%;
    position: relative;

}
.range-price-container{
    position: relative;
    display: flex;

}
.options{
    margin-top: 10px;
    opacity: 0;
    transition:0.5s;
}
.sortby-options label{
    position: relative;
    text-transform: uppercase;
    font-family: Monospace,Arial,sans-serif;
    letter-spacing: 1.2px;
    font-size: 12px;
}

input[type='radio']{
    -webkit-appearance: none;
    outline: none;
}
input[type='radio']:before {
    width: 12.5px;
    height: 12.5px;
    border-radius: 15px;
    position: relative;
    content: '';
    display: inline-block;
    visibility: visible;
    border:0.25px solid grey;
}

input[type='radio']:checked:after {
    width:9px;
    height: 9px;
    border-radius:100%;
    margin-left:-12.1px;
    margin-top: 2.7px;
    position:absolute;
    background-color: #f8d0d0;
    content: '';
    display: inline-block;
    visibility: visible;


}
.filter-section span{
    cursor: pointer;
}
.search-filters div p{
    position: relative;
    margin: 0;
    text-transform: uppercase;
    font-family: Monospace,Arial,sans-serif;
    font-size: 13px;
}
.select-a-brand-options p,.category-options p{
    cursor: pointer;
    transition: 0.5s;
}
.select-a-brand-options p:hover,.category-options p:hover{
    color: #fac9c9;

}
.close span:after{
    content: '';
    position: absolute;
    height: 2px;
    top:15px;
    width:10px;
    background: lightgrey;
    right:10px;
}
.close  span:before{
    content: '';
    position: absolute;
    height: 2px;
    top:15px;
    width:10px;
    background: lightgrey;
    right:10px;
    transform: rotate(90deg);
}
.open span:after{
    content: '';
    position: absolute;
    height: 2px;
    top:15px;
    width:10px;
    background: lightgrey;
    right:10px;
}
.open  span:before{
    content: '';
    position: absolute;
    height: 2px;
    top:15px;
    width:10px;
    background: lightgrey;
    right:10px;
    transform: rotate(0deg);
}
.select-brand p{
    margin: 10px;
    float: right;
    text-transform: uppercase;
    font-size: 14px;
    font-family: Monospace,Arial,sans-serif;
    letter-spacing:1.2px;
}
.filters-card-container{
    grid-area: filter-tab;

}
.filter-card{
    position: relative;
    float: left;
    background: black;
    color: white;
    text-transform: uppercase;
    font-family: Monospace, Arial, Helvetica, sans-serif;
    padding:7px;
    margin:1.1%;
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 12px;
}
.filter-card span{
    margin-left: 7px;
    color:white;
    transform: rotate(-135deg);
    font-size:21px;


}

.filter-card p{
    margin: 0;
}
.products-container{
    grid-area: products;
    display: flex;
    flex-wrap: wrap;

}
.selection{
    flex-wrap: wrap;
}
.product{
    position: relative;
    width:31%;
    background: transparent;
    margin:1.1%;
    transition: 0.5s;
    cursor: pointer;
}
/*.product:hover{
    background:white;
    box-shadow: 0px 0px 50px 0px black;

}*/
.image-product{
    position: relative;
    background: #fef6f6;
    width: 100%;
}
.product-logo{
    position: absolute;
    background:white;
    width:50px;
    height:50px;
    z-index: 1;
    margin-top:5px;
    margin-left:5px;
}
.product-logo img{
    max-width: 100%;
}
.product-btn{
    position: absolute;
    right: 10px;
    top:10px;
    background: white;
    z-index: 1;
    display: flex;
    padding: 10px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.main-product-image{
    position: relative;
    max-width: 100%;
}
.title-product-text{
    text-transform: uppercase;
    font-family: Monospace, Arial, Helvetica, sans-serif;
    margin: 5px;

}
.title-product{
    text-align: center;
}
.title-product-brand{
    font-size: 24px;
}
.title-product-category{
    font-size: 15px;
    color: #494949;
}
.title-product-colors{
    display: flex;
    justify-content:center;
}
.title-product-color{
    width:15px;
    height: 15px;
    margin:3px;
    box-shadow: 0px 0px 3px 0px black;
}
.title-product-color:hover{
    outline: 2px solid grey;
}
.btn-select-brand:after{
    position: absolute;
    content: '';
    margin-top: 7px;
    margin-left: 3px;
    border: 4px solid;
    border-color: #040404c2 transparent transparent transparent;

}
.mobile-times{
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 30px;
    z-index: 1;
    color: #ffbdbd;
}
.mobile-top-logo{
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
}
.mobile-menu-nav a{
    font-size: 10px;
    text-decoration: none;
    color: grey;
    text-align: center;
    position: relative;
}
.mobile-menu-nav{
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 50px;
    left:0;
}

.mobile-readme, .mobile-address-book, .mobile-cart,.mobile-home{
    font-size: 25px;
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
    color: #555555;
}
.fa-shopping-cart{
    font-size:20px;
    float: right;
    color: #f89d9d;

}
.mobile-menu{
    display: none;
}
.product-btn .fa-spinner{
    font-size:20px;
    float: right;
    color: #f89d9d;
    display: block;
    animation:spin 2s linear infinite;
}
.product-btn .fa-check{
    font-size:20px;
    float: right;
    color: lawngreen;
    display: block;
}
@keyframes spin {
    from{transform: rotate(0deg)}
    to{transform: rotate(360deg)}
}
.product-price{
    font-family: Monospace;
    font-size: 16px;
    margin: 2px
}
.old-product-price{
    text-decoration:line-through;
}
.product-price-discount{
    color: red;
}
.product-ref{
    text-decoration: none;
    color:black;
}
.nav-contact ,.nav-about-us{
    perspective:900px;
    transform-style: preserve-3d;
    transition:0.5s;
    backface-visibility: hidden;

}
.nav-contact:hover,.nav-about-us:hover{
    transform:rotateX(90deg);
}
.nav-contact:after{
    content: 'KONTAKT';
    position: absolute;
    left:0;
    top: 50%;
    transform:rotateX(-90deg);
}

.nav-about-us:after{
    content: 'O NAS';
    position: absolute;
    left:0;
    top: 50%;
    transform: rotateX(-90deg);
}
@media screen and (max-width: 768px){
    .product{
        width:47%;
    }
}
@media screen and (max-width: 879px){
    .mobile-menu{
        position: fixed;
        right: 0;
        bottom: 0;
        border-top:1px solid grey;
        /* border-top-left-radius: 20px; */
        /* border-top-right-radius: 20px; */
        height: 50px;
        width: 100%;
        background: white;
        overflow: hidden;
        z-index: 1;
        display: block;
        transition: 0.5s;
    }
    .mobile-menu-bar{
        visibility: visible;
    }
    .top-nav .menu-nav{
        display: none;
    }
    .purchase-info{
        width: 37vw;
    }
}
@media screen and (max-width: 683px){
    .select-gender img{
        width: 150px;
    }
    .selection-container .selection p{
        font-size: 25px;
        margin: 10px;
    }
    .product-btn{
        padding: 5px;
        right: 5px;
        top: 5px;
    }
    .product-logo{
        width: 25px;
        height: 25px;
        margin-top: 5px;
        margin-left: 5px;
    }
}
@media screen and (max-width: 900px){
    .banner-top{
        width: unset;
        min-width: 100%;
    }
}
@media screen and (max-width: 550px){
    .banner-top{
        display: none;
    }
    .brands{
        top: 60px;
        position: relative;
    }
    .shop-container{
        margin-top: 100px;
    }
    .select-gender img{
        display: none;
    }
    .selection-container{
        width: 100%;
    }
    .selection{
        width: 100%;
        justify-content: space-evenly;
        display: flex;
    }

}
@media screen and (min-width:1732px){
    .product{
        width:22%;
    }
}
