
:root {
    --c21-wc-product-content-width-max: 1500px;
    --c21-wc-product-content-padding-desktop: 50px;
    --c21-wc-product-content-padding-mobile: 20px;
}

.c21-wc-products-section .wpb_wrapper {
    max-width: var(--c21-wc-product-content-width-max);
    margin: 0 auto;
    padding: 0 var(--c21-wc-product-content-padding-desktop);
}

@media screen and (max-width: 778px) {
    .c21-wc-products-section .wpb_wrapper {
        padding: 0 var(--c21-wc-product-content-padding-mobile);
    }
}

.wc-grid.resize-by-browser-width .dt-css-grid{
    grid-auto-rows: 1fr;
}
.c21-wc-product-card {
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.c21-wc-product-card-img {
    width: 100%;
    aspect-ratio: 13 / 10;
    object-fit: cover;
}

.c21-wc-product-card-info {
    padding: 30px 40px 120px 40px;
}
.c21-wc-product-card-desc-box {
    /*height: 320px;*/
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.c21-wc-product-card-title {
    margin: 0px;
}
.c21-wc-product-card-desc {
    overflow: hidden;
    text-overflow: clip;
    display: -webkit-box;
    -webkit-line-clamp: 4;
            line-clamp: 4; 
    -webkit-box-orient: vertical;
}

.c21-wc-product-card-bottom {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 80px);
}
.c21-wc-product-card-price * {
    margin: 0;
    line-height: 1em;
}

.c21-wc-product-bold {font-weight: bold;}
.c21-contact-product{
    display: flex;
}
.c21-contact-product .c21-contact-product-text{
    padding-right: 80px;
}
.c21-contact-product .p3{
    margin-top: 20px;
}
@media screen and (max-width: 778px) {
    .c21-contact-product{
        display: block;
        gap: none;
    }
    .c21-contact-product .c21-contact-product-text{
        margin-bottom: 40px;
        padding-right: 0;
    }

}