/* مخفی سازی در دسکتاپ */
.mobile-sticky-menu {
    display: none;
}

@media (max-width: 768px) {
    .mobile-sticky-menu {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 65px; /* ارتفاع ثابت نوار */
        background: #fff;
        box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
        z-index: 9999;
        justify-content: space-around;
        align-items: stretch; /* تغییر از center به stretch برای تراز بهتر */
        padding: 5px; /* فاصله داخلی کم برای اینکه آیتم‌ها به لبه نچسبند */
        padding-bottom: calc(5px + env(safe-area-inset-bottom));
        box-sizing: border-box; /* جلوگیری از بزرگتر شدن نوار */
    }

    .menu-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none !important;
        color: #555;
        font-size: 11px;
        transition: all 0.3s ease;
        border-radius: 10px; /* لبه‌های گرد برای پس‌زمینه قرمز */
        margin: 2px; /* فاصله بین آیتم‌ها */
        height: 100%; /* ارتفاع کامل داخل نوار */
    }

    .menu-item.active {
        color: #ef4056 !important;
        background: rgba(239, 64, 86, 0.1); /* پس‌زمینه ملایم که بیرون نمی‌زند */
    }

    .menu-item svg {
        width: 22px;
        height: 22px;
        margin-bottom: 2px;
    }

    /* جلوگیری از تداخل با محتوای سایت */
    body {
        padding-bottom: 70px !important;
    }
}


.icon-wrapper {
    position: relative;
    display: inline-block;
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #ef4056; /* رنگ قرمز */
    color: white;
    font-size: 10px;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff; /* برای جدا شدن از آیکون */
}

/* اگر سبد خرید خالی بود عدد نمایش داده نشود (اختیاری) */
.cart-count-badge:empty {
    display: none;
}




/* حذف قطعی دکمه شناور سبد خرید در موبایل برای سایت البرز رایانه */
@media (max-width: 768px) {
    div.xoo-wsc-cart-trigger, 
    div.xoo-wsc-basket, 
    .xoo-wsc-float-container {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}
