/*========================================
Product showcase
========================================*/
@media screen and (max-width: 1024px) {
    .elementor-image-box-title {
        font-size: 24px!important;
    }
}

.elementor-image-box-wrapper {
    padding: 0 0 10px;
}

@media screen and (max-width: 500px) {
    .cem-product-content {
        display: block!important;
        text-align: left!important;
    }
    .cem-text {
        margin: 0 0 15px!important;
    }
    .cem-image {
        width: 30%;
    }
}

@media screen and (max-width: 920px) {
    .cem-product-grid {
        display: block!important;
    }
    .cem-product-grid .cem-product-item {
        max-width: 100%!important;   
    }
    .cem-price {
        margin-top: 20px;
    }
    .cem-product-content {
        margin: 20px 0;
    }
}

.cem-product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cem-product-grid .cem-product-item {
    flex: 0 0 48%;
    max-width: 48%;
}

.cem-product-single .cem-product-item {
    max-width: 100%;
    margin: 15px 0;
}

.cem-product-inner {
    display: flex;
    justify-content: space-between; /* price on right */
    align-items: flex-start;
}

.cem-product-content {
    display: flex;
    align-items: flex-start;
}

.cem-text {
    margin-left: 15px;
}

.cem-title {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: bold;
}

.cem-description {
    margin: 0;
    font-size: 14px;
}

.cem-price {
    white-space: nowrap;
    font-size: 16px;
    font-weight: bold;
    color: #0073aa;
}

.cem-image {
    width: 150px;
    height: 150px;
    overflow: hidden;
    flex-shrink: 0;
}

.cem-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

