/* Products Toolbar Styles - Black & White Design */
.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000000;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 1.5rem;
    gap: 16px;
    flex-wrap: wrap;
}

.products-search-section {
    flex: 1;
    min-width: 220px;
    max-width: 300px;
}

.search-label {
    display: none;
}

.products-search-wrap {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    pointer-events: none;
    z-index: 2;
}

.products-search-input {
    width: 100%;
    padding: 8px 10px 8px 32px;
    border: 1px solid #444444;
    border-radius: 6px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.2s ease;
}

.products-search-input:focus {
    outline: none;
    border-color: #ffffff;
    background: #2a2a2a;
}

.products-search-input::placeholder {
    color: #cccccc;
}

.categories-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.categories-label {
    display: none;
}

.products-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.category-pill {
    padding: 6px 12px;
    border: 1px solid #444444;
    border-radius: 16px;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.1px;
}

.category-pill:hover {
    border-color: #666666;
    background: #2a2a2a;
}

.category-pill.active {
    border-color: #ffffff;
    background: #333333;
    color: #ffffff;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .products-toolbar {
        flex-direction: column;
        padding: 12px;
        gap: 12px;
    }
    
    .products-search-section {
        max-width: none;
        width: 100%;
    }
    
    .categories-section {
        width: 100%;
        justify-content: center;
    }
    
    .category-pill {
        font-size: 12px;
        padding: 5px 10px;
    }
}