.klima-filter-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
}

.klima-tabs {
    display: flex;
    margin-bottom: 0;
}

.klima-tabs .tab {
    flex: 1;
    padding: 15px 20px;
    text-align: center;
    cursor: pointer;
    background: #e0e0e0;
    border-right: 1px solid #ccc;
}

.klima-tabs .tab:last-child {
    border-right: none;
}

.klima-tabs .tab.active {
    background: #4CC2FF;
    color: #000;
}

.klima-tabs .tab-title {
    display: block;
    font-size: 18px;
    font-weight: bold;
}

.klima-tabs .tab-subtitle {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.klima-filter-form {
    padding: 30px;
    background: #f5f5f5;
}

.filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.filter-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.filter-field select {
    width: 100%;
    padding: 8px!important;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
}

.filter-submit {
    margin-top: 30px;
    text-align: left;
}

.btn-pretrazi {
    background: #4CC2FF;
    color: #000;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-pretrazi:hover {
    background: #3B9CD1;
}

#filter-results {
    margin-top: 30px;
    padding: 0 15px;
}

.no-products-found {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border-radius: 4px;
    color: #666;
}

.no-products-found p {
    margin: 10px 0;
    font-size: 16px;
}

/* WooCommerce product grid styling */
#filter-results .products {
    margin: 0;
    padding: 0;
}

#filter-results ul.products {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

#filter-results ul.products li.product {
    margin: 0;
    padding: 0;
}

@media (max-width: 992px) {
    #filter-results ul.products {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .filter-row {
        grid-template-columns: 1fr;
    }
    
    .klima-tabs .tab-title {
        font-size: 14px;
    }
    
    #filter-results ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    #filter-results ul.products {
        grid-template-columns: 1fr;
    }
}