.item_product {
	background: #fff;
	/*border: 1px solid #e0e1e4;*/
	border-radius: 4px;
	position: relative;
}
.item_product .attributes {
	position: absolute;
	top: 0;
	left: 0;
	padding: 4px;
	display: flex;
	flex-wrap: wrap;
	gap: 3px;
	pointer-events: none;
}

.item_product .attributes div {
	line-height: 1;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 600;

	border: 1px solid #37456e;
	border-radius: 2px;
	background-color: #ffffff;
	padding: 3px 5px 1px;

	display: flex;
	gap: 3px;
}
.item_product .attributes div:before {
	font-family: 'FontAwesome';
}
.item_product .attributes .f_strength:before {
	content: '\f06d';
}
.item_product .attributes .f_wear_time:before {
	content: '\f017';
}
.item_product .attributes .f_flavour:before {
	content: '\f1fb';
}
.item_product .attributes .f_existing_tooth_sensitivity:before {
	content: '\f0e7';
}

.item_product .iamge_con {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.item_product .s2 {
	text-align: center;
	padding: 10px 10px 15px;
}

.item_product .title {
	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;
	color: #37456e;
	text-decoration: none;

	min-height: 85px;
	display: flex;
	flex-direction: column;
	justify-content: center;

	margin-bottom: 10px;
}

.item_product .rating_con {
	min-height: 35px;
}

.item_product .price_from_label {
	color: #9ccb3b;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.item_product .price_con {
	font-size: 20px;
	font-weight: 700;
	color: #9ccb3b;
	line-height: 1.4;
	display: flex;
    justify-content: center;
    gap: 8px;
	align-items: center;
}

.item_product .price_con ins{
	text-decoration: none;
}

.item_product .price_con del{
	font-weight: lighter;
	font-size: 18px;
    order: 2;
    color: #37456e;
    opacity: 0.5;
    text-decoration: line-through;
}

/*.item_product .button_con {
	margin-top: 20px;
}*/

.item_product .support_heading {
	color: #37456e;
	font-size: 15px;
	line-height: 1.4;
	margin-bottom: 15px;
}

/* wishlist */
.item_product .add_to_wishlist {
    position: absolute;
    top: 36px;
	right: 15px;
    z-index: 10;
    width: 40px;
    height: 40px;
    border: 1px solid #F9FAFC;
    border-radius: 50%;
    background: #F9FAFC;
    color: #37456e;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .1s, background .1s, color .1s;
}
.item_product .add_to_wishlist:hover {
    border-color: #37456e;
}
.item_product .add_to_wishlist.active {
    background: #37456e;
    border-color: #37456e;
    color: #fff;
}

/* Additional CSS */
.item_product .quick_view_btn{
	top: 18px;
    right: 18px;
    position: absolute;
	border-radius: 100%;
	z-index: 9;
}

.item_product .quick_view_btn .quick_view_trigger{
    background-color: #DAECB6;
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center; 
    align-items: center; 
	padding: 0;    
}

.item_product .quick_view_btn .quick_view_trigger:hover{
    background-color: #37456E;
}

/*.item_product .quick_view_btn .fa-plus:before {
    content: url('/wp-content/themes/thom/images/svg/plus-01.svg');
    display: inline-block;  
    width: 24px;            
    height: 24px;
}

.item_product .quick_view_btn:hover .fa-plus:before {
    content: url('/wp-content/themes/thom/images/svg/plus-01-w.svg');
	transform: rotate(360deg);
}*/

.item_product .quick_view_btn i {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('/wp-content/themes/thom/images/svg/plus-01.svg') no-repeat center/contain;
    transition: transform 0.5s ease, background-image 0.3s ease;
}

.item_product .quick_view_btn:hover i {
    background-image: url('/wp-content/themes/thom/images/svg/plus-01-w.svg');
    transform: rotate(180deg);
}

.item_product .quick_view_btn i:before {
    content: '';
}

.item_product .popup-section {
	display: none;
	pointer-events: none;
	position: absolute;
	bottom: 0;
	background: #37456E;
	left: 0;
	width: 100%;
	padding:20px;
	justify-content: center;
	align-items: center;
	-webkit-animation: fadeInUp 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fadeInUp 0.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.item_product:hover .popup-section {
	display: flex;
	pointer-events: initial;
}

.item_product .popup-section .btn {
	font-size: 12px;
	font-weight: 600;
	border: 1px solid #fff;
	border-radius: 100px;
	padding: 13px 25px;
	box-shadow: none;
	color: #fff;
}

.item_product .popup-section .btn:hover {
	background: #fff;
	color: inherit;
}

.item_product .popup-section .btn .fa {
	margin-left: 8px;
}

.item_product .img-popup-con{
	position: relative;
}

.product-image-wrap {
    position: relative;
    display: block;
    overflow: hidden;
}

.product-image-main,
.product-image-hover {
    transition: opacity 0.4s ease;
}

.product-image-main img,
.product-image-hover img {
    display: block;
    width: 100%;
    height: auto;
}

.product-image-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-image-wrap:has(.product-image-hover):hover .product-image-main {
    opacity: 0;
}

.product-image-wrap:has(.product-image-hover):hover .product-image-hover {
    opacity: 1;
}

/* center + style yotpo rating on all listings (category, brand, search) */
.item_product .rating_con{text-align:center}
.item_product .yotpo-widget-instance{display:flex;justify-content:center}
.item_product .yotpo-sr-bottom-line-summary,.item_product .yotpo-reviews-star-ratings-widget,.item_product .yotpo-bottom-line-scroll-panel{justify-content:center !important;align-items:center !important}
.item_product .yotpo-sr-bottom-line-text{color:#37456e !important;font-size:13px !important;font-family:'Open Sans',sans-serif !important;line-height:1 !important}
