.np-newproducts__list {
    min-height: 1px;
}

.np-newproducts__defer-shell {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    padding: 1rem 0;
}

.np-newproducts__defer-shell .np-newproducts__loader {
    padding: 0;
}

.np-newproducts__loader {
    display: flex;
    justify-content: center;
    padding: 1rem 0 0.5rem;
}

.np-newproducts__loader[hidden] {
    display: none !important;
}

.np-newproducts__spinner {
    width: 28px;
    height: 28px;
    border: 2px solid rgba(0, 0, 0, 0.12);
    border-top-color: rgba(0, 0, 0, 0.55);
    border-radius: 50%;
    animation: np-newproducts-spin 0.8s linear infinite;
}

.np-newproducts__sentinel {
    width: 100%;
    height: 4px;
    pointer-events: none;
}

.np-newproducts__all-link {
    margin-top: 12px;
}

@keyframes np-newproducts-spin {
    to {
        transform: rotate(360deg);
    }
}

.np-newproducts-categories {
    margin: 0 0 20px;
}

.np-categories-chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 100%;
}

.np-categories-chips > li {
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
}

.np-category-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.np-category-chip:hover,
.np-category-chip:focus {
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.np-category-chip__count {
    display: inline-block;
    min-width: 1.4em;
    padding: 1px 6px;
    border-radius: 999px;
    font-size: 0.85em;
    line-height: 1.3;
    background: rgba(0, 0, 0, 0.07);
    color: inherit;
}

@media (max-width: 760px) {
    .np-categories-chips {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }
}
