/* Produto miniatura */
:root { 
    --product-thumb-title: var(none); /* color|Cor do titulo */
    --product-thumb-title-weigth: 500; /* text|Peso da fonte do título */
    --product-thumb-title-size: 14px; /* text|Tamanho da fonte do título */

    --product-thumb-price-color: #000000; /* color|Cor do preco */
    --product-thumb-price-weight: bold; /* text|Peso da fonte do preço */
    --product-thumb-price-size: 16px; /* text|Tamanho da fonte do preço */

}

.product-layout {padding: 5px;}
.product-thumb{position: relative; overflow: hidden; border-radius: 18px; border: 1px solid #eee; transition: all 0.5s ease; background: #fff; padding: 20px;}
.product-list-carousel .product-thumb {margin-bottom: 30px;}
.product-thumb:hover {transform: scale(1.03);}
.product-thumb .caption{font-size: 14px; color: var(--text); display: flex; flex-direction: column; text-align: start; margin-top: 20px; position: relative;}
.product-thumb h4{font-size: 13px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; line-height: 1.5; margin-bottom: 24px; min-height: 41px; text-transform: uppercase;}
.product-thumb h4 a{color: var(--product-thumb-title, var(--text)); font-weight: 400;}

.product-thumb .image{position: relative; overflow: hidden;}
.product-thumb .image a{height: 100%; position: relative; height: 100%; display: block;}
.product-thumb .image img{transition: all 0.5s ease;}
.product-thumb:hover .image img{transform: scale(1.1);}

.product-thumb .image{position: relative;}
.product-thumb .images > *{position: relative; z-index: 0;}
.product-thumb .image .thumb2{position: absolute; top: 0; left: 0; opacity: 0; z-index: 1;}
.product-thumb:hover .image .thumb2{opacity: 1;}

.product-thumb .price{font-size: var(--product-thumb-price-size);  font-weight: var(--product-thumb-price-weight);  color: var(--product-thumb-price-color, var(--primary)); margin-bottom: 0;}
.product-thumb .price-old{ text-decoration: line-through; color: #aeaeae; font-weight: normal;}
.product-thumb .description{display: none;}
.product-thumb .button-cart {width: 100%; display: flex; justify-content: center; gap: 5px; align-items: center; font-weight: 500; text-transform: uppercase; font-size: 14px; padding: 8px;}
.product-thumb-buttons {display: none;}
.product-thumb-buttons .btn i{font-size: 16px; display: flex;}
.product-thumb .wishlist {position: absolute; right: 10px; top: 10px; width: 35px; height: 35px; display: flex !important; justify-content: center; align-items: center; opacity: 0; z-index: 21; box-shadow: 0 0 10px 0 rgb(0 0 0 / 8%); border-radius: 100px; background: #fff;}
.product-thumb .wishlist i {font-size: 17px; color: var(--primary) !important; display: flex;}
.product-thumb:hover .wishlist {opacity: 1;}


.product-thumb .button-no-quantity {background: #eee; border-radius: 5px; width: 100%; display: flex; justify-content: center; align-items: center; gap: 5px; font-weight: 500; text-transform: uppercase; border: 1px solid #ddd !important; color: #505050; padding: 8px; font-size: 14px;}
.product-thumb .button-no-quantity:hover {background-color: #ddd;}

@media(max-width: 991px){
	.product-thumb {padding: 12px;}
	.product-thumb h4 {margin-bottom: 12px;}
}