/* Superbe Blog Handle - Categories Filter */
.sbh-categorias-wrapper {
    width: 100%;
    margin-bottom: 20px;
}

.sbh-categorias-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.sbh-categoria-item {
    padding: 8px 16px;
    border: 1px solid #ccc;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.2s ease;
    border-radius: 4px;
}

.sbh-categoria-item:hover {
    border-color: #999;
}

.sbh-categoria-item.sbh-active {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* Loading state for listing */
.jet-listing-grid.sbh-loading {
    opacity: 0.5;
    pointer-events: none;
    position: relative;
}

.jet-listing-grid.sbh-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #333;
    border-radius: 50%;
    animation: sbh-spin 1s linear infinite;
}

@keyframes sbh-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
