.myb-cart-icon {
    position: fixed;
    bottom: 20px;
    cursor: pointer;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
    z-index: 9999;
    /* العرض والارتفاع والفوضع واللون الخلفي يتم توليدهم من PHP ديناميكياً */
}

.myb-cart-icon .badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: black;
    color: white;
    border-radius: 50%;
    padding: 5px;
    font-size: 14px;
    min-width: 20px;
    text-align: center;
    line-height: 20px;
}

/* تحكم بالحجم على شاشات الموبايل */
@media (max-width: 768px) {
    .myb-cart-icon {
        /* العرض والارتفاع للموبايل سيتم توليدهم من PHP */
    }
}


