/* Woo - Loop */
.products {}

/* Woo - Loop Item */
.product {
    margin-bottom: 0;
}

.product::before {
    display: none;
}

.woocommerce-loop-product__link {
    display: block;
    height: 100%;
    border-bottom: none;
}

.woocommerce-loop-product__title {
    padding-bottom: 20px;
    font-size: 22px;
    text-transform: capitalize;
}

/* Custom - Loop Item */
.product-card {
    padding: 20px 15px 45px;
    height: 100%;
    position: relative;
    background-color: #f5f5f5;
}

.product-card-figure {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    height: 105px;
}

.product-card-attrs {
    margin: 0;
    padding: 0;
    font-size: 18px;
}

.product-card-attrs li {
    margin: 0 0 10px;
    padding: 0;
    line-height: 21px;
    color: #383737;
}

.product-card-attrs li:before {
    display: none;
}

.product-card-attrs li strong {
    margin-right: 10px;
    color: #000;
}

.product-card-color-list {
    width: 100%;
    position: absolute;
    right: 15px;
    bottom: 15px;
}

@media (min-width: 1200px) {
    .woocommerce-loop-product__link {
        border: 1px solid transparent;
        transition: border-color 0.3s;
    }

    .woocommerce-loop-product__link:hover {
        border-color: #900006;
    }

    .woocommerce-loop-product__title {
        /* display: flex; */
        align-items: center;
        transition: color 0.3s;
    }

    .woocommerce-loop-product__link:hover .woocommerce-loop-product__title {
        color: #900006;
    }

    .woocommerce-loop-product__title:after {
        content: '\e904';
        margin-left: 10px;
        font-family: 'pro-twist-icon';
        opacity: 0;
        transition: opacity 0.3s;
    }

    .woocommerce-loop-product__link:hover .woocommerce-loop-product__title:after {
        opacity: 1;
    }

    .product-card-color-list .color-list__item {
        width: 18px;
        height: 18px;
    }
}