.floating-cart {
    position: fixed;
    bottom: 30px;
    left: 30px; /* في التصميم العربي نضعها يساراً لعدم تداخلها مع نصوص اليمين */
    background: #d4af37; /* ذهبي طيبة */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: 0.3s;
}

.floating-cart:hover { transform: scale(1.1); background: #1a1a1a; }
.floating-cart i { color: #fff; font-size: 24px; }

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4d4d;
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 50%;
    font-weight: bold;
    border: 2px solid #fff;
}

/* تعديل للجوال الصغير */
@media (max-width: 600px) {
    .floating-cart {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
}