/* إشعار شراء فاخر */
.purchase-popup {
    position: fixed;
    bottom: 25px;
    left: 25px; /* 👈 هنا صار يسار */
    background: #ffffff;
    color: #222;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    max-width: 280px;
    line-height: 1.7;
    border: 1px solid #eee;
}

/* عند الظهور */
.purchase-popup.show {
    opacity: 1;
    transform: translateY(0);
}

/* العنوان */
.purchase-popup strong {
    display: block;
    font-size: 15px;
    color: #000;
    margin-bottom: 4px;
}

/* الوقت */
.purchase-popup small {
    color: #888;
}

/* الجوال */
@media (max-width: 768px) {
    .purchase-popup {
        left: 10px;
        right: 10px;
        bottom: 15px;
        max-width: 100%;
    }
}

.popup-img {
    width: 35px !important;
    height: 35px !important;
    object-fit: cover;
    border-radius: 6px;
}

/* تصغير إشعار الشراء */
.purchase-popup {
    width: 220px !important;        /* كان كبير */
    padding: 8px 10px !important;   /* تقليل المساحة الداخلية */
    border-radius: 10px;
    font-size: 12px !important;
}

/* إجبار الإشعار يكون يسار في كل الحالات */
.purchase-popup {
    position: fixed !important;
    left: 15px !important;
    right: auto !important; /* ❌ يلغي اليمين */

    bottom: 15px !important;
    top: auto !important;

    width: 200px !important;

    z-index: 99999 !important;
}

/* أنيميشن من اليسار */
.purchase-popup {
    opacity: 0;
    transform: translateX(-120%);
    transition: all 0.4s ease;
}

.purchase-popup.show {
    opacity: 1;
    transform: translateX(0);
}





 .mb-5 {
    
    color: white;
}


  .footer-list  .mb-5 {
    
    color: black;
    
}