.product-item {
    background: #fff;
    border-radius: 10px;
    padding: 22px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
    border: 1px solid #dfdfdf;
}

.product-item .product-group {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 10px;
    display: inline-block;
}

.product-item .product-desc p {
    color: var(--text-color);
    font-size: 15px;
}

.product-item .product-title {
   font-size: 16px;
   font-weight: 600;
   margin-bottom: 20px;
}

.produt-list {
    margin-bottom: 20px;
    display: none;
}

.product-item.show .produt-list {
    display: block;
}

.produt-list a {
    font-size: 12px;
    font-weight: 300;
    display: inline-block;
    padding: 5px 10px;
    border: 1px dashed var(--main-color);
    border-radius: 8px;
    background-color: #f5f5f5;
    transition: all .2s ease-in;
}

.produt-list a:hover {
    background-color: var(--main-color);
    color: var(--white-color);
}

.produt-list a:nth-child(2n) {
    margin: 0 10px;
}

.produt-list a:last-child {
    margin-right: 0;
}

.product-desc {
    margin-bottom: 10px;
}

.product-item .product-link {
    color: var(--main-color);
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding-right: 20px;
    margin-bottom: 20px;
}

.product-item .product-link:before {
    content: '\f061';
    position: absolute;
    font-weight: 900;
    font-family: var(--fontAwesome);
    right: 0;
    font-size: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.product-item .product-image {
    display: none;
}

.product-item.show .product-image {
    border-radius: 10px;
    overflow: hidden;
    display: block;
}

.product-item img {
    transition: transform 0.4s ease;
}

.product-item:hover img{
    transform: scale(1.08);
}

.product-item.border {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15), 0px 4px 0px 0px #028CDE;
    margin-bottom: 10px;
}