/* ======================================================
   REEMCO WISHLIST UI REDESIGN — v2 (woosw selectors)
   - Archive pages: أيقونة قلب + زر "أضف إلى السلة"
   - Single product: زر المفضلة بالعربية
   ====================================================== */

/* ── 1. إخفاء زر WPC Wishlist الكبير في الكروت ───────── */
.woocommerce ul.products li.product .woosw-btn {
    display: none !important;
}

/* ── 2. تغليف الكرت بـ position:relative ────────────── */
.woocommerce ul.products li.product {
    position: relative !important;
}

/* ── 3. أيقونة القلب العائمة ─────────────────────────── */
.rc-heart-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 9;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.92);
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    color: #bbb;
    padding: 0;
}

.rc-heart-btn:hover {
    background: #fff;
    border-color: #e74c3c;
    color: #e74c3c;
    transform: scale(1.12);
    box-shadow: 0 4px 12px rgba(231,76,60,0.2);
}

.rc-heart-btn.rc-in-wishlist {
    color: #e74c3c;
    border-color: #e74c3c;
    background: #fff5f5;
}

.rc-heart-btn.rc-in-wishlist i.fa-regular {
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
}

/* ── 4. زر "أضف إلى السلة" الجديد على الكروت ────────── */
.rc-card-add-to-cart {
    display: block !important;
    width: 100%;
    background: #1a5c36;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    padding: 10px 14px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: background 0.22s ease, transform 0.15s ease;
    margin-top: 8px;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.rc-card-add-to-cart:hover {
    background: #164d2d !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.rc-card-add-to-cart:disabled {
    opacity: 0.8;
    cursor: wait;
}

/* إخفاء زر WooCommerce الأصلي (نحن نستبدله بـ rc-card-add-to-cart) */
.woocommerce ul.products li.product a.button.add_to_cart_button,
.woocommerce ul.products li.product a.button.product_type_simple,
.woocommerce ul.products li.product a.button.ajax_add_to_cart {
    display: none !important;
}

/* ── 5. صفحة المنتج المنفرد — زر المفضلة بالعربية ───── */
.single-product .woosw-btn {
    font-family: 'Cairo', sans-serif !important;
    direction: rtl;
    font-size: 0 !important;            /* إخفاء النص الإنجليزي */
    padding: 12px 24px !important;
}

.single-product .woosw-btn::before {
    content: 'إضافة للمفضلة ♡';
    font-size: 14px;
    font-weight: 700;
    direction: rtl;
}

.single-product .woosw-btn.woosw-btn-added::before,
.single-product .woosw-btn.woosw-btn-loading::before {
    content: 'إزالة من المفضلة ♥';
}

/* ── 6. Toast رسائل WPC بالعربية ─────────────────────── */
.woosw-message {
    font-family: 'Cairo', sans-serif !important;
}

/* ── 7. إزالة زر "Browse Wishlist" من الكروت ──────────── */
.woocommerce ul.products li.product a.woosw-btn-view {
    display: none !important;
}
