/* تصميم احترافي لكروت المنتجات - حجم أصغر */

.fasty_product_card {
    background: #3D3D3D;
    border: 1px solid #D1D1D1;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 8px;
    transform: scale(0.95);
    transform-origin: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.fasty_product_card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: scale(0.92) translateY(-4px);
    border-color: #ff4757;
}

/* اسم المنتج - أبيض في الوضع العادي */
.fasty_product_card_name {
    color: #FFFFFF !important;
    transition: color 0.3s ease;
}

/* اسم المنتج يتحول لأحمر عند مرور الماوس على الكارت */
.fasty_product_card:hover .fasty_product_card_name {
    color: #E01111 !important;
}

/* السعر القديم (المشطوب) */
del.text-gray-800 {
    color: #D1D1D1 !important;
    opacity: 1 !important;
}

/* زرار أضف للسلة - شفاف بحدود حمراء ونص وأيقونة بيضا */
.fasty_product_card_btn {
    background-color: transparent !important;
    color: #FFFFFF !important;
    border: 1px solid #E01111 !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    transition: all 0.25s ease;
}

.fasty_product_card_btn:hover {
    background-color: #E01111 !important;
    color: #FFFFFF !important;
}

.fasty_product_card_btn svg {
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
    transition: all 0.25s ease;
}

.fasty_product_card_btn:hover svg {
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
}

/* أيقونة القلب (المفضلة) */
.fasty_product_card_wishlist_btn {
    color: #FFFFFF !important;
}

.fasty_product_card_wishlist_btn svg {
    color: #FFFFFF !important;
    stroke: #FFFFFF !important;
}

/* Hardware Acceleration */
.fasty_product_card {
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}