.wc-category-filter {
    display: flex;
    gap: 30px;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.filter-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.filter-content {
    flex: 1;
    min-width: 0;
}

.category-list ul {
    list-style-type: none;
    padding-left: 15px;
    margin: 0;
}

.category-list ul.category-level-0 {
    padding-left: 0;
}

.category-list li {
    margin-bottom: 10px;
}

.category-list label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.category-list input[type="checkbox"] {
    margin-right: 8px;
}

.search-input {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.sort-options {
    margin-top: 20px;
}

.sort-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.product-grid {
    display: grid;
    gap: 30px;
    width: 100%;
}

.product-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}

.product-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.product-item h3 {
    font-size: 16px;
    margin: 0 0 10px;
    flex-grow: 1;
}

.product-item .price {
    font-weight: bold;
    margin-bottom: 10px;
}

.read-more {
    display: inline-block;
    text-decoration: none;
    background-color: #4CAF50;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.read-more:hover {
    background-color: #45a049;
}

.active-filters {
    margin-bottom: 20px;
    width: 100%;
}

.active-filter {
    display: inline-block;
    background-color: #f0f0f0;
    padding: 5px 10px;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 20px;
    font-size: 14px;
}

.remove-filter {
    cursor: pointer;
    font-style: normal;
    font-weight: bold;
    margin-left: 5px;
}

/* Animations */
.product-item, .active-filter {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .wc-category-filter {
        flex-direction: column;
    }

    .filter-sidebar {
        width: 100%;
        margin-bottom: 30px;
    }
}