
/* =========================
   BASE (ALL DEVICES)
========================= */

.wd-products[class*="wd-stretch-cont"]{
    align-items: stretch !important;
}

/* کارت اصلی */
.wd-products[class*="wd-stretch-cont"] .wd-product{
    height: 100% !important;
    min-height: 420px !important;
    max-height: 420px !important;
    display: flex !important;
    flex-direction: column !important;
}

/* wrapper داخلی */
.wd-products[class*="wd-stretch-cont"] .product-wrapper{

    display: flex !important;
    flex-direction: column !important;
}

/* بدنه کارت */
.wd-products[class*="wd-stretch-cont"] .product-element-bottom{
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

/* عنوان محصول (جلوگیری از بلند شدن کارت) */
.wd-products[class*="wd-stretch-cont"] .wd-entities-title{
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    min-height: 44px !important;
}

/* قیمت همیشه پایین */
.wd-products[class*="wd-stretch-cont"] .wrap-price{
    margin-top: auto !important;
}

/* تصویر ثابت */
.wd-products[class*="wd-stretch-cont"] .product-element-top{
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
}

.wd-products[class*="wd-stretch-cont"] .product-element-top img{
    width: 100% !important;

    object-fit: cover !important;
}


/* =========================
   DESKTOP
========================= */

@media (min-width: 1025px){

    .wd-products.wd-stretch-cont-lg .wd-carousel-wrap{
        align-items: stretch !important;
    }

    .wd-products.wd-stretch-cont-lg .wd-product{
        min-height: 420px !important;
        max-height: 420px !important;
    }
}


/* =========================
   TABLET
========================= */

@media (min-width: 769px) and (max-width: 1024px){

    .wd-products.wd-stretch-cont-md .wd-carousel-wrap{
        align-items: stretch !important;
    }

    .wd-products.wd-stretch-cont-md .wd-product{
        min-height: 380px !important;
        max-height: 380px !important;
    }
}


/* =========================
   MOBILE (IMPORTANT)
========================= */

@media (max-width: 768px){

    .wd-products.wd-stretch-cont-sm .wd-carousel-wrap{
        align-items: stretch !important;
    }

    /* کارت کوچکتر برای موبایل */
    .wd-products.wd-stretch-cont-sm .wd-product{
        min-height: 320px !important;
        max-height: 320px !important;
    }

    /* padding کمتر */
    .wd-products.wd-stretch-cont-sm .product-element-bottom{
        padding: 8px 10px !important;
    }

    /* عنوان کوچکتر */
    .wd-products.wd-stretch-cont-sm .wd-entities-title{
        font-size: 13px !important;
        min-height: 36px !important;
        -webkit-line-clamp: 2 !important;
    }

    /* قیمت جمع‌وجور */
    .wd-products.wd-stretch-cont-sm .wrap-price{
        font-size: 13px !important;
    }
}