/* ===============================
   فوتر موبایل
================================ */

.mobile-footer-bar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #ffffff;
    z-index: 9998;
    box-shadow: 0 -2px 10px rgba(0,0,0,.08);
}

.mobile-footer-bar ul {
    display: flex;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    text-align: center;
}

.mobile-footer-bar li {
    flex: 1;
    font-size: 12px;
}

.mobile-footer-bar i {
    display: block;
    font-size: 20px;
    margin-bottom: 2px;
}

.mobile-footer-bar a {
    color: inherit;
    text-decoration: none;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: 22%;
    background: #e53935;
    color: #fff;
    font-size: 10px;
    padding: 1px 6px;
    border-radius: 50px;
}

/* فقط موبایل */
@media (min-width: 992px) {
    .mobile-footer-bar {
        display: none;
    }
}

/* ===============================
   صفحه محصول تکی
================================ */

/* مخفی کردن فوتر */
body.single-product .mobile-footer-bar {
    display: none !important;
}

/* آیکون شناور سبد خرید */
.floating-cart-icon {
    position: fixed;
    top: 80px;
    left: 12px;
    width: 46px;
    height: 46px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.floating-cart-icon i {
    font-size: 22px;
}

.floating-cart-icon .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #e53935;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50px;
}

/* فقط موبایل */
@media (min-width: 992px) {
    .floating-cart-icon {
        display: none;
    }
}
