.ext-products-grid { direction: rtl; margin: 20px 0; }
.ext-grid-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0px;
}

.ext-product-card {
    border: solid 1px #393939 !important;
    border-radius: 12px !important;
    padding: 5px !important;
    text-align: center;
    background: #1c1c1c !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none !important;
    color: #333;
    transition: transform .3s ease, box-shadow .3s ease;
}
.ext-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
}
.ext-product-img img { max-width: 100%; max-height: 180px; width: auto; border-radius: 8px; margin-bottom: 10px; }
.ext-product-title { font-size: 13px; font-weight: 400; margin-bottom:0px !important; min-height: 10px !important;  overflow: hidden; color: #d5d5d5; }
.ext-price-box { display: flex; flex-direction: column; gap: 4px; }
.ext-regular-price { text-decoration: line-through; color: #999; font-size: 12px; }
.ext-sale-price { color: #f83030 !important; font-weight: 800; font-size: 15px; }
.ext-price-box em { display:none !important; }
.ext-loading { text-align: center; color: #999; padding: 20px; }




.ext-no-img {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    background: #f7f7f7;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 13px;
}
.ext-product-title {
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ext-price-box {
    align-items: center;
}

.ext-loading {
    padding: 30px;
    grid-column: 1 / -1;
}
