.shop-wrap {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}
.shop, .shop li {
	margin: 0;
	padding: 0;
	list-style: none;
}
.shop > li {
    position: relative;
    width: calc(30% - 0px);
    margin-bottom: 4px;
    display: inline-block;
    padding: 0 2px;
}
.shop > li:nth-child(3n) {
    width: calc(30% - 0px);
}
.shop > li:nth-child(2n) {
    width: calc(20% - 0px);
}
.shop .thumb {
    position: relative;
    overflow: hidden;
    height: 220px;
    transition: .2s ease-in-out;
}
.shop .thumb img{
	display: block;
    object-fit: cover;
	transition: .2s ease-in-out;
	width: 100%;
	height: 220px;
}
.shop .thumb:hover img {
    filter: blur(1px);
    transform: scale(1.1);
}
.shop .thumb i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 28px;
    opacity: 0;
    transition: .6s;
    border-radius: 50%;
}
.shop .thumb:hover i {
	opacity: 1;
}
.shop .price{
	position: absolute;
	top: 10px; left: 10px;
	width: 50px;
	height: 50px;
	background-color: #ff7573;
	text-align: center;
	z-index: 10;
	line-height: 50px;
	border-radius: 25px;
}

.shop .price span {
	color: #fff;
	font-weight: bold;
}

.shop .badges {
	position: absolute;
	top: 10px; 
	right: 10px;
	z-index: 20;
}

.shop .badges span {
	display: block;
	width: 32px;
	height: 32px;
}

.shop .badges .badge-new { background: url('../images/badge.png') no-repeat 0 -64px; }
.shop .badges .badge-bestseller { background: url('../images/badge.png') no-repeat 0 -32px; }
.shop .badges .badge-polarized { background: url('../images/badge.png') no-repeat 0 0; }

.shop .buy { 
	position: absolute;
	bottom: 10px;
	left: 10px;
	z-index: 20;
 }

.shop .buynow {
	color: #fff;
	background: #444;
	padding: 5px 15px;
	line-height: 1;
	text-decoration: none;
	font-size: 13px;
	font-weight: bold;	
}

.shop .name {
	position: absolute;
	bottom: 2px; right: 2px;
	text-align: center;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: bold;
	padding: 5px 10px;
	background-color: #fff;
}

@media only screen and  (max-width: 1024px) {
	.shop > li { width: 49%; }
}

@media only screen and  (max-width: 750px) {
	.shop > li { margin-right: 0!important; width: 50%; }
	.shop-wrap { width: 100%; }
	.shop > li:nth-child(3n) {
		width: calc(50% - 0px);
	}
	.shop > li:nth-child(2n) {
		width: calc(50% - 0px);
	}
}


/* UniFilter */

#filters {
	margin: 0 0 0;
}

#filters .uf-filter { 
	margin-top: 5px; 
}

#filters .uf-filter-wrap,
#filters .uf-search-wrap,
#filters .uf-sort-wrap {
	margin-bottom: 0;
}

#filters .uf-filter-wrap  { 
	margin-right: 10px; 
}

#filters .uf-search-wrap,
#filters .uf-sort-wrap { 
	float: left; 
	margin-right: 10px; 
}
#filters .uf-tags{
	display: flex;
    align-items: center;
    justify-content: flex-start;
}
#filters .uf-tags a {
	border: 0;
    padding: 14px 40px;
    height: auto;
    line-height: normal;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 2px;
    background: #797979;
    color: #fff;
    border-radius: 2px;
}

#filters .uf-tags .uf-reset {
	margin-top: 0px;
}

#filters .uf-tags a:hover,
#filters .uf-tags .uf-selected a {
	color: #fff;
    background: #ef890b;
}

#filters .uf-search-box { width: auto; }

@media only screen and  (max-width: 1024px) {
	#filters .uf-filter-wrap { float: none; }
}


/* Smaller than Desktop HD */
@media only screen and (max-width: 1200px) {}

/* Smaller than desktop */
@media only screen and  (max-width: 1000px) {}

/* Smaller than tablet */
@media only screen and  (max-width: 750px) {}

/* Smaller than phablet (also point when grid becomes active) */
@media only screen and  (max-width: 550px) {}

/* Smaller than mobile */
@media  only screen and (max-width: 400px) {}



