#nsdb-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
    padding: 10px 15px;
    font-size: 14px;
}

#nsdb-sticky-bar .nsdb-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

#nsdb-sticky-bar .nsdb-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

#nsdb-sticky-bar .nsdb-thumb {
    width: 48px;
    height: auto;
}

#nsdb-sticky-bar .nsdb-title {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'cera-pro';
    color: #000;
}

#nsdb-sticky-bar .nsdb-price {
    font-weight: 600;
    margin-top: 2px;
}

#nsdb-sticky-price .nsdb-total {
    font-weight: 700;
    margin-right: 4px;
}

#nsdb-sticky-price .nsdb-breakdown {
    opacity: 0.7;
    font-size: 12px;
}

#nsdb-sticky-bar .nsdb-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

#nsdb-sticky-qty {
    width: 70px;
}

.nsdb-qty-wrap label {
    display: block;
    font-size: 11px;
    margin-bottom: 2px;
}

@media (max-width: 480px) {
    #nsdb-sticky-bar .nsdb-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    #nsdb-sticky-bar .nsdb-right {
        width: 100%;
        justify-content: space-between;
    }
}
