.elementor-46759 .elementor-element.elementor-element-dc4ef55{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for shortcode, class: .elementor-element-9e849ac */.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.product-card {
    flex: 0 0 calc((100% - 100px) / 3);
    text-decoration: none;
    color: inherit;
}

.product-image {
    position: relative;
    height: 300px;
    background-size: contain;
    background-position: center center;
    background-repeat:no-repeat;
    border-radius: 16px;
    overflow: hidden;
}

.product-info {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
}

.product-title {
    max-width: 70%;
}

.product-price {
    white-space: nowrap;
}

/* Badges */
.badge {
    position: absolute;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    background: #000;
    color: #fff;
}

.badge-sale {
    top: 15px;
    left: 15px;
}

.badge-stock {
    top: 15px;
    right: 15px;
    background: #1a7f37;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-card {
        flex: 0 0 calc((100% - 50px) / 2);
    }
}

@media (max-width: 640px) {
    .product-card {
        flex: 0 0 100%;
    }
}/* End custom CSS */