/* =========================================
   PREMIUM PRODUCT CARD - RAED
   ========================================= */

/* البطاقة */
.s-products-slider-card.swiper-slide {
    padding: 8px !important;
}

.s-products-slider-card .s-product-card-entry {
    position: relative !important;
    background: #fff !important;
    border: 0 !important;
    border-radius: 24px !important;
    overflow: visible !important;
    box-shadow: 0 4px 20px rgba(0,0,0,.06) !important;
    transition: .35s ease !important;
}

/* Hover */
.s-products-slider-card:hover .s-product-card-entry {
    transform: translateY(-5px) !important;
    box-shadow: 0 14px 35px rgba(0,0,0,.10) !important;
}


/* =========================================
   🖼️ الصورة
   ========================================= */

.s-products-slider-card .s-product-card-image {
    position: relative !important;
    margin: 0 !important;
    padding: 12px !important;
    background: #fafafa !important;
    border-radius: 24px !important;
    overflow: hidden !important;
}

.s-products-slider-card .s-product-card-image-contain {
    width: 100% !important;
    transition: transform .5s ease !important;
}

.s-products-slider-card:hover .s-product-card-image-contain {
    transform: scale(1.05) !important;
}


/* =========================================
   ❌ إلغاء مكان الأزرار القديم فوق الصورة
   ========================================= */

.s-products-slider-card .s-product-card-buttons {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================
   👁️ المعاينة + ❤️ المفضلة
   ========================================= */

.s-products-slider-card .s-product-card-buttons .s-product-card-eye-btn,
.s-products-slider-card .s-product-card-buttons .s-product-card-wishlist-btn {
    position: static !important;

    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 12px !important;

    background: #f7f7f7 !important;
    border: 0 !important;

    box-shadow: none !important;

    transition: .25s ease !important;
}


/* Hover للأزرار */
.s-products-slider-card .s-product-card-eye-btn:hover,
.s-products-slider-card .s-product-card-wishlist-btn:hover {
    transform: translateY(-2px) !important;
    background: #eeeeee !important;
}


/* =========================================
   📦 محتوى البطاقة
   ========================================= */

.s-products-slider-card .s-product-card-content {
    padding: 10px 15px 16px !important;
}


/* إخفاء اسم المنتج */
.s-products-slider-card .s-product-card-content-main {
    display: none !important;
}


/* =========================================
   💰 السعر بالمنتصف
   ========================================= */

.s-products-slider-card .s-product-card-content-sub {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;

    margin: 5px 0 14px !important;
}

.s-products-slider-card .s-product-card-price {
    margin: 0 !important;

    text-align: center !important;

    font-size: 22px !important;
    font-weight: 800 !important;
}


/* =========================================
   🔘 صف الأزرار
   ========================================= */

.s-products-slider-card .s-product-card-content-footer {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 7px !important;

    margin: 0 !important;
}


/* زر الشراء */
.s-products-slider-card salla-add-product-button {
    flex: 1 !important;
    min-width: 0 !important;
}

.s-products-slider-card salla-add-product-button button {
    width: 100% !important;
    height: 42px !important;
    min-height: 42px !important;

    border-radius: 12px !important;border: 0 !important;

    font-size: 13px !important;
    font-weight: 700 !important;

    transition: .25s ease !important;
}

.s-products-slider-card salla-add-product-button button:hover {
    transform: translateY(-2px) !important;
}


/* =========================================
   📱 موبايل
   ========================================= */

@media (max-width: 768px) {

    .s-products-slider-card.swiper-slide {
        padding: 5px !important;
    }

    .s-products-slider-card .s-product-card-entry {
        border-radius: 19px !important;
    }

    .s-products-slider-card .s-product-card-image {
        padding: 8px !important;
        border-radius: 19px !important;
    }

    .s-products-slider-card .s-product-card-content {
        padding: 8px 10px 12px !important;
    }

    .s-products-slider-card .s-product-card-price {
        font-size: 18px !important;
    }

    .s-products-slider-card .s-product-card-eye-btn,
    .s-products-slider-card .s-product-card-wishlist-btn {
        width: 38px !important;
        min-width: 38px !important;
        height: 38px !important;
    }

    .s-products-slider-card salla-add-product-button button {
        height: 38px !important;
        min-height: 38px !important;
        border-radius: 10px !important;
        font-size: 11px !important;
    }
}