.ajxwoofiltr-container {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.ajxwoofiltr-sidebar {
    flex: 0 0 280px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ajxwoofiltr-filter-section {
    margin-bottom: 15px;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}
.ajxwoofiltr-toggle {
    margin: 0;
    padding: 10px;
    background: #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.ajxwoofiltr-toggle:hover {
    background: #dee2e6;
}

.ajxwoofiltr-content {
    padding: 10px 0;
    display: block;
}

.ajxwoofiltr-content input[type="text"],
.ajxwoofiltr-content input[type="number"] {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.ajxwoofiltr-content label {
    display: block;
    padding: 5px 5px;
    font-size: 15px;
    cursor: pointer;
    margin-bottom: 3px !important;
    border-radius: 5px;
}
.ajxwoofiltr-content label input {
    margin-right: 5px;
}
.ajxwoofiltr-apply-price{
    margin-top:8px;
    width:100%;
    padding:6px;
    background:#0073aa;
    color:white;
    border:none;
    border-radius:4px;
    cursor:pointer;
}
.ajxwoofiltr-products-wrap {
    flex: 1;
    min-width: 280px;
    padding: 5px;
    border-radius: 5px;
}
.ajxrow {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x));
}
.ajxrow > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-top: var(--bs-gutter-y);
}

.ajxfiltrfrwo-products {
    display: grid;
    grid-template-columns: repeat(var(--columns, 4), 1fr);
    gap: 3px;
}

.ajxfiltrfrwo-product {
    border: 1px solid;
    padding: 15px;
    border-radius: 8px;
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-content: stretch;
    align-items: flex-start;
}

.ajxfiltrfrwo-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ajxfiltrfrwo-product img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 6px !important;
}

.ajxfiltrfrwo-product h3 {
    margin: 10px 0 5px;
    font-size: 18px;
    line-height: 1.4;
}

.ajxfiltrfrwo-product .price {
    font-size: 14px;
    color: #333;
    margin: 5px 0;
}

span.ajxfiltrfrwo-price {
    padding: 10px 0;
}
.ajxfiltrfrwo-pagination {
    padding: 5px 0;
    margin: 15px 0;
}
span.page-numbers.current {
    background: #1676d9 !important;
}
a.page-numbers:hover {
    background: #2781dd !important;
}
.ajxfiltrfrwo-button {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: #0073aa;
    color: #fff !important;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 10px;
}

.ajxfiltrfrwo-button:hover {
    background: #005a87;
}

.ajxwoofiltr-pagination button {
    padding: 8px 12px;
    margin: 0 4px;
    border: 1px solid #ddd;
    background: #f8f8f8;
    cursor: pointer;
    border-radius: 4px;
    min-width: 36px;
}

.ajxwoofiltr-pagination button.active {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

.ajxwoofiltr-pagination button:hover:not(.active) {
    background: #e0e0e0;
}

.ajxfiltrfrwo-no-products {
    width: 100%;
    text-align: center;
    padding: 10% 0;
}

div#ajxwoofiltr-products {
    padding-bottom: 10px;
}
label{
    margin-bottom: 0 !important;
}

.ajxrow.proarchead {
    padding: 15px 25px;
    border-bottom: 0.1px solid #ededed;
    margin-bottom: 15px;
    width: 100%;
    background: #e9ecef;
    color: #262525;
    border-radius: 15px;
}
h3.ajxwoofiltr-category-title {
    font-weight: 700;
    color: #262525;
}

/* Responsive */
@media (max-width: 768px) {
    .ajxwoofiltr-container {
        flex-direction: column;
    }
    .ajxwoofiltr-sidebar {
        flex: auto;
        width: 100%;
    }
    .ajxfiltrfrwo-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ajxfiltrfrwo-products {
        grid-template-columns: 1fr;
    }
    .ajxwoofiltr-sidebar {
        padding: 15px;
    }
}