/* نوار شناور جمع کل – فقط موبایل */
.mfix-cart-floating-summary {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    max-width: 960px;
    padding: 10px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
    z-index: 1200;
}

/* وقتی داده لود شد و JS کلاس رو اضافه کرد */
.mfix-cart-floating-summary.mfix-floating-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* محتوای سمت چپ (لیبل + مبلغ) */
.mfix-floating-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mfix-floating-label {
    font-size: 11px;
    color: #6b7280;
}

.mfix-floating-total {
    font-size: 15px;
    font-weight: 600;
    color: #1d4ed8;
}

/* دکمه تسویه حساب در نوار شناور */
.mfix-floating-btn {
    flex-shrink: 0;
    border-radius: 999px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #f9fafb;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid rgba(37, 99, 235, 0.9);
    cursor: pointer;
    transition: 0.2s ease;
}

.mfix-floating-btn:hover {
    filter: brightness(1.05);
}

/* فقط روی موبایل/تبلت فعال باشد */
@media (min-width: 769px) {
    .mfix-cart-floating-summary {
        display: none;
    }
}
