.elementor-656839 .elementor-element.elementor-element-cb92386{--display:flex;}.elementor-656839 .elementor-element.elementor-element-cb92386.e-con{--flex-grow:0;--flex-shrink:0;}/* Start custom CSS for html, class: .elementor-element-e8345dc *//* FORCE LIST DESIGN */
.vertical-products .product-grid {
    display: block !important;
}

/* MAIN CARD */
.vertical-products .product-list {
    display: flex;
    align-items: center;
    gap: 18px;

    width: 100%;
    background: #fff;

    border: 1px solid rgba(139,0,0,.15);
    border-radius: 12px;

    padding: 10px;
    margin-bottom: 12px;

    transition: 0.3s;
}

/* HOVER */
.vertical-products .product-list:hover {
    border-color: #c40000;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* IMAGE BOX FIX SIZE */
.vertical-products .list-img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
}

/* IMAGE PERFECT FIT */
.vertical-products .list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 🔥 main fix */
}

.vertical-products .list-title {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    margin-bottom: 8px; /* 👈 ye add kar */
}

.vertical-products .list-price {
    font-size: 13px;
    color: #c40000;
}
.four-col-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
}

@media(max-width:768px){
    .four-col-products {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */