#product-catalog {
    width: 75%;
    float: left;
    border-right: 2px solid #e0e0e0;
    padding: 20px;
    margin-top: 20px;
    box-sizing: border-box;
}

#product-catalog .single-product,
.curl-product-list .single-product {
    width: 200px;
    display: inline-block;
    vertical-align: top;
    margin: 6px;
    border: 1px solid #dfdfdf;
    border-radius: 4px;
    padding: 16px;
    box-sizing: border-box;
    box-shadow: rgba(0,0,0,0.1) 0 2px 4px 0;
}

.curl-product-list .single-product {
  width: 16%;
  margin: 20px 0.75% 20px 0;
}

.curl-product-list .single-product:last-child {
  margin-right: 0;
}

#product-catalog .single-product .product-image,
.curl-product-list .single-product .product-image {
    text-align: center;
    height: 160px;
    line-height: 160px;
    width: 100%;
    vertical-align: middle;
    margin-bottom: 10px;
}

#product-catalog .single-product .product-image img,
.curl-product-list .single-product .product-image img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
    line-height: 1;
}

#product-catalog .single-product .product-title,
.curl-product-list .single-product .product-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 6px;
    margin-top: 0;
}

#product-catalog .single-product .product-price,
.curl-product-list .single-product .product-price {
    text-align: center;
    margin: 10px 0;
}

#product-catalog .single-product .product-price .price,
.curl-product-list .single-product .product-price .price {
    font-size: 22px;
    font-weight: bold;
    color: #33a959;
}

#product-catalog .single-product .product-price .old-price,
.curl-product-list .single-product .product-price .old-price {
    font-size: 16px;
    color: #bbbbbb;
    text-decoration: line-through;
}

#product-catalog .single-product .product-buy,
.curl-product-list .single-product .product-buy {
    margin-top: 20px;
    text-align: center;
}

#product-catalog .single-product .product-buy > a,
.curl-product-list .single-product .product-buy > a {
    display: inline-block;
    padding: 0 20px;
    line-height: 36px;
    background: #2481C6;
    color: #f0f0f0;
    text-align: center;
    border-radius: 2px;
}

#product-catalog .single-product .product-buy > a:hover,
.curl-product-list .single-product .product-buy > a:hover {
    background: #2076C2;
    text-decoration: none;
    color: #fff;
}

#product-pagination {
    clear: both;
    padding: 20px;
    width: 100%;
    text-align: left;
    font-size: 16px;
    margin-top: 20px;
}

#product-pagination a {
    width: 40px;
    height: 40px;
    border: 1px solid #dadada;
    text-align: center;
    line-height: 40px;
    display: inline-block;
}

#product-pagination a.current {
    background: #2481C6;
    color: #fff;
    font-weight: bold;
    border-color: #2076C2;
}

#catalog-sidebar {
    width: 25%;
    box-sizing: border-box;
    float: left;
    padding: 10px;
    margin-top: 20px;
}

.single-filter {
    border-bottom: 1px solid #e0e0e0;
    padding: 10px;
}

.single-filter h4 {
    margin-bottom: 10px;
}

.single-filter label {
    display: block;
    width: 50%;
    float: left;
    line-height: 24px;
    margin-bottom: 2px;
    cursor: pointer;
}

.single-filter .filter-apply {
    display: inline-block;
    line-height: 30px;
    margin-top: 10px;
    border-radius: 2px;
    color: #f0f0f0;
    background: #f44;
    text-align: center;
    padding: 0 20px;
    border: 0;
    cursor: pointer;
}

.single-filter .filter-apply:hover {
    background: #d44;
}
