.product-item {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
}

.product-item .product-image {
    border-radius: 10px;
    overflow: hidden;
}

.product-item .product-title a{
    color: var(--blue-color);
    display: inline-block;
    text-align: center;
}

.product-item.border {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15), 0px 4px 0px 0px #028CDE;
    margin-bottom: 10px;
}

.catagory-home .product-item.border {
    box-shadow: none;
}

.catagory-home .catagory-content {
    padding: 20px;
    background-color: #fff;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.catagory-content h2 {
    margin: 0 30px 10px 10px;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
}
.catagory-content .product-item {
    border: 1px solid #ebebeb;
}
.brand .product-item {
    border: 1px dashed #ccc;
}

.catagory-content .catagory-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.catagory-nav a.relative {
    font-weight: normal;
    padding-right: 20px;
    color:var(--link-color);
}
.catagory-nav a.relative:before {
    content: '\f105';
    position: absolute;
    right: 0;
    font-family: var(--fontAwesome);
}

.catagory-nav h2 {
    margin: 0;
}