.afraa-products-grid .product-title {
    min-height: calc(1.5em * 2) !important;
    line-height: 1.6;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #000 !important;
    font-size: 18px;
    font-weight: 700;
}

.afraa-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px !important;
    row-gap: 30px !important;
}

.afraa-products-grid .product-item {
    background-color: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    position: relative;
    margin-bottom: 0 !important;
}

.afraa-products-grid .product-button a {
    padding: 6px;
    background: #25b5cc;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    display:flex;
    align-items:center;
    justify-content:center;
    width:45px;
    height:45px;
}
.afraa-products-grid .product-button a:hover {
    background: #20adc3;
}

.afraa-products-grid .discount-badge {
    direction: ltr;
    position: absolute;
    top: 10px;
    right: 10px;
    background: #F64FAD;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 8px 6px;
    border-radius: 10px;
    z-index: 10;
}

.afraa-products-grid .product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
    margin-top: 10px;
}

.afraa-products-grid .product-price {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    text-align: right;
    color: #25b5cc;
    font-size: 16px;
    font-weight: 600 !important;
}

.afraa-products-grid .sale-price {
    font-size: 16px;
    color: #25b5cc;
    font-weight: 600;
    display: block;
}

.afraa-products-grid .regular-price {
    font-size: 14px;
    text-decoration: line-through;
    color: #999;
    display: block;
}

.product-image {
    display: flex;
    position: relative;
}

/* دستاپ: گالری فقط هنام hover کارت */
.variation-thumbnails {
    display: none; /* پیش‌فرض مخفی */
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    max-height: 220px;
    overflow-y: auto;
    z-index: 20;
    pointer-events: none; /* ثات و غیر قابل تعام */
}
.product-item:hover .variation-thumbnails {
    display: flex; /* نمایش هنگام hover روی کارت */
}
.variation-thumbnails .thumb {
    margin-bottom: 5px;
    width: 35px;
    height: 35px;
    overflow: hidden;
    border: 1px solid #ddd;
    flex-shrink: 0;
    border-radius: 5px;
}
.variation-thumbnails .thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-button img {
    width: 25px !important;
    height: 25px !important;
}

.custom-pagination {
    text-align: center;
    margin-top: 60px !important;
}

/* 📱 Mobile view */
@media (max-width: 768px) {
    /* گرید موبایل */
    .afraa-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        column-gap: 10px !important;
        row-gap: 20px !important;
    }

    .afraa-products-grid .product-item {
        padding: 10px;
        box-sizing: border-box;
    }

    .afraa-products-grid .product-footer {
        display: flex;
        justify-content: center !important;
        align-items: center !important;
        text-align: center;
    }

    .afraa-products-grid .product-price {
        width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
    }

    /* دکمه اصلی مخفی شود */
    .afraa-products-grid .product-button {
        display: none !important;
    }

    /* دکمه مشاهده محصول وبایل نمایش داده شود */
    .afraa-products-grid .view-product-mobile {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    /* کلاس جدید footer موبایل */
    .afraa-products-grid .product-footer-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
        padding: 0 10px;
        flex-direction: row-reverse;
    }

    .afraa-products-grid .product-footer-mobile .view-product-mobile a {
        display: flex;
    }
    .afraa-products-grid .view-product-mobile {
    	padding: 6px;
    	background: #25b5cc;
    	border-radius: 10px;
    	width: 60px;
    	height: 35px;
    }


    .afraa-products-grid .product-rating-box {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .afraa-products-grid .product-rating-box .rating-number {
        font-size: 12px;
        font-weight: 600;
        color: #fff;
        margin-left: 4px;
    }

    .afraa-products-grid .product-rating-box .star-box {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: center;
        width: 60px;
        height: 35px;
        background-color: #FFCB00;
        border-radius: 10px;
    }
    
    .afraa-products-grid .product-rating-box .star-box svg {
        width: 22px;
        height: 22px;
        fill: #fff; /* ستاره سفید */
    }
    

}

