/* ==================================================
CNCBUL PROFESSIONAL MACHINE CARD UI
================================================== */

/* Product Card */

ul.products li.product{

border-radius:18px;
background:#ffffff;
overflow:hidden;

padding:18px;

box-shadow:0 18px 50px rgba(0,0,0,0.08);

transition:all .35s cubic-bezier(.4,0,.2,1);

}

/* Hover Lift */

ul.products li.product:hover{

transform:translateY(-6px);

box-shadow:0 30px 80px rgba(0,0,0,0.12);

}

/* Image Container */

ul.products li.product .woocommerce-LoopProduct-link{

display:block;
overflow:hidden;
border-radius:14px;

}

/* Image */

ul.products li.product img{

width:100%;
height:auto;

border-radius:14px;

transition:transform .6s ease;

}

/* Image Zoom */

ul.products li.product:hover img{

transform:scale(1.06);

}

/* Image Ratio Fix */

ul.products li.product img{

aspect-ratio:1/1;
object-fit:cover;

}

/* Gradient Overlay */

ul.products li.product .woocommerce-LoopProduct-link::after{

content:"";
position:absolute;
left:0;
right:0;
bottom:0;
height:40%;

background:linear-gradient(
to top,
rgba(0,0,0,.25),
rgba(0,0,0,0)
);

opacity:0;
transition:opacity .3s;

}

ul.products li.product:hover .woocommerce-LoopProduct-link::after{

opacity:1;

}

/* Product Title */

ul.products li.product h2{

font-weight:600;

font-size:16px;

line-height:1.45;

margin-top:16px;

min-height:52px;

}

/* Price (Contact us text) */

ul.products li.product .price{

font-size:14px;

opacity:.7;

margin-top:6px;

}

/* Button */

ul.products li.product .button{

margin-top:16px;

border-radius:12px;

height:48px;

display:flex;

align-items:center;

justify-content:center;

font-weight:600;

transition:all .3s;

}

/* Button Hover */

ul.products li.product .button:hover{

transform:translateY(-2px);

}

/* Better spacing */

ul.products li.product .woocommerce-loop-product__title{

margin-bottom:6px;

}

/* Grid breathing space */

ul.products{

gap:28px;

}

/* Mobile optimization */

@media (max-width:768px){

ul.products li.product{

padding:14px;

}

}
/* ==========================================
EQUAL PRODUCT CARD HEIGHT (4 LINE TITLE)
========================================== */

/* Product title */

ul.products li.product h2{

font-weight:600;
font-size:16px;
line-height:1.5;

display:-webkit-box;
-webkit-line-clamp:4;
-webkit-box-orient:vertical;

overflow:hidden;
text-overflow:ellipsis;

min-height:96px;
max-height:96px;

}

/* Product card layout */

ul.products li.product{

display:flex;
flex-direction:column;
justify-content:space-between;

height:100%;

}

/* Button alignment */

ul.products li.product .button{

margin-top:auto;

}
/* ==========================================
BUTTON CLICK FIX
========================================== */

ul.products li.product .button{
position:relative;
z-index:5;
pointer-events:auto;
}

ul.products li.product a.button{
display:block;
}
ul.products li.product a{
position:relative;
}

ul.products li.product .button{
position:relative;
z-index:10;
}