.back-to-top {
    display: none !important;
}

#nm-sbc-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9990;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
    transition: background-color 0.35s ease, transform 0.15s ease;
}

#nm-sbc-wrapper:hover {
    transform: scale(1.07);
}

#nm-sbc-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

#nm-sbc-link svg {
    width: 52%;
    height: 52%;
    display: block;
}

.nm-sbc-count {
    position: absolute;
    top: -9px;
    right: -9px;
    background: #fff;
    color: #222;
    border-radius: 50%;
    min-width: 22px;
    height: 22px;
    font-size: 11px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    padding: 0 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    pointer-events: none;
}

/* Fly-to-cart item */
.nm-sbc-fly-item {
    position: fixed;
    z-index: 99999;
    pointer-events: none;
    border-radius: 8px;
    object-fit: cover;
    opacity: 1;
}

/* Bounce on cart update */
@keyframes nm-sbc-bounce {
    0%   { transform: scale(1); }
    30%  { transform: scale(1.22); }
    60%  { transform: scale(0.93); }
    80%  { transform: scale(1.07); }
    100% { transform: scale(1); }
}

#nm-sbc-wrapper.nm-sbc-bounce {
    animation: nm-sbc-bounce 0.55s ease;
}
