.elementor-665485 .elementor-element.elementor-element-bd91b88{--display:flex;}.elementor-665485 .elementor-element.elementor-element-59d43d7{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-472cc30 *//* PRODUCT GRID */
.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* PRODUCT CARD */
.product{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(139,0,0,.15);
    transition:.4s;
    display:flex;
    flex-direction:column;
}

.product:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

/* PRODUCT IMAGE */
.product-img{
    position:relative;
    width:100%;
    aspect-ratio:1/1;
    overflow:hidden;
}

.product-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.product:hover .product-img img{
    transform:scale(1.05);
}

/* PRODUCT INFO */
.product-info{
    padding:12px;
    text-align:center;
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

/* TITLE */
.product-title{
    font-size:14px;
    margin-bottom:10px;
    line-height:1.4;
    min-height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* PRICE */
.product-price{
    color:#8b0000;
    font-weight:600;
    font-size:14px;
    margin-bottom:16px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;
}

.product-price del{
    color:#999;
}

.product-price ins{
    text-decoration:none;
    font-weight:700;
    color:#8b0000;
}

/* BUTTON */
.cart-btn{
    width:100%;
    background:linear-gradient(135deg,#8b0000,#c40000);
    color:#fff;
    border:none;
    padding:10px;
    border-radius:50px;
    cursor:pointer;
}

.cart-btn,
.cart-btn:hover,
.cart-btn:focus,
.cart-btn:active{
    background:linear-gradient(135deg,#8b0000,#c40000);
    color:#fff;
    border:none;
    padding:10px;
    border-radius:50px;
    cursor:pointer;
    transform:none;
    box-shadow:none;
    
}

.product-grid{
    display:grid !important;
    grid-template-columns:repeat(4,1fr) !important;
    gap:25px;
}

/* TABLET */
@media (max-width:1024px){
    .product-grid{
        grid-template-columns:repeat(3,1fr) !important;
    }
}

/* MOBILE */
@media (max-width:768px){
    .product-grid{
        grid-template-columns:repeat(2,1fr) !important;
    }
}/* End custom CSS */