/* =========================================================
   ACKE FILTER - Wildy/Hunter WooCommerce sidebar
========================================================= */

.acke-shop-filter,
.acke-shop-filter * {
    box-sizing: border-box;
}

.acke-shop-filter {
    width: 100%;
    color: #111;
    font-family: "Quicksand", Arial, sans-serif;
}

.acke-filter-notice {
    padding: 14px 16px;
    background: #fff4f4;
    border: 1px solid #f0b8b8;
    color: #8a1f1f;
}

.acke-shop-filter .acke-filter-widget {
    margin: 0 0 34px 0;
    padding: 0 0 34px 0;
    border-bottom: 6px solid #e8e3d8;
}

.acke-shop-filter .acke-filter-widget:last-child {
    border-bottom: none;
}

/* Naslovi: Blinker */
.acke-shop-filter .acke-filter-title {
    width: 100%;
    padding: 0;
    margin: 0 0 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: transparent !important;
    border: none !important;
    color: #070707 !important;
    font-family: "Blinker", Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0;
    cursor: pointer;
    box-shadow: none !important;
}


.acke-shop-filter .acke-filter-title:hover,
.acke-shop-filter .acke-filter-title:focus,
.acke-shop-filter .acke-filter-title:active {
    color: #070707 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.acke-shop-filter .acke-filter-arrow {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(225deg);
    transition: transform .2s ease;
}

.acke-shop-filter .acke-filter-widget.is-closed .acke-filter-arrow {
    transform: rotate(45deg);
}

.acke-shop-filter .acke-filter-widget.is-closed > *:not(.acke-filter-title) {
    display: none !important;
}

/* Kategorije i atributi: Quicksand */
.acke-shop-filter ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.acke-shop-filter li {
    margin: 0 0 14px 0;
    padding: 0;
    color: #111;
    font-family: "Quicksand", Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
}

.acke-shop-filter li a {
    color: #111;
    text-decoration: none;
    transition: color .2s ease;
}

.acke-shop-filter li a:hover,
.acke-shop-filter li.is-active > a {
    color: #f5821f;
}

.acke-shop-filter .count {
    color: #667083;
    font-size: 14px;
    font-weight: 400;
}

.acke-shop-filter .acke-attribute-list li a {
    display: inline-flex;
    align-items: center;
    gap: 11px;
}

.acke-shop-filter .acke-attribute-list li a::before {
    content: "";
    width: 15px;
    height: 15px;
    display: inline-block;
    border: 2px solid #d9d3c7;
    background: #fff;
    transition: .2s ease;
}

.acke-shop-filter .acke-attribute-list li.is-active a::before {
    border-color: #f5821f;
    background: #f5821f;
    box-shadow: inset 0 0 0 3px #fff;
}

/* Price */
.acke-shop-filter .acke-price-form {
    margin: 0;
    font-family: "Quicksand", Arial, sans-serif;
}

.acke-shop-filter .acke-price-range {
    position: relative;
    height: 24px;
    margin: 8px 0 18px;
}

.acke-shop-filter .acke-price-track {
    position: absolute;
    left: 7px;
    right: 7px;
    top: 50%;
    height: 4px;
    transform: translateY(-50%);
    background: #e8e3d8;
    border-radius: 30px;
    overflow: hidden;
}

.acke-shop-filter .acke-price-track span {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--min-percent, 0%);
    right: calc(100% - var(--max-percent, 100%));
    background: #f5821f;
    border-radius: inherit;
}

.acke-shop-filter .acke-price-range input[type="range"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 24px;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    pointer-events: none;
}

.acke-shop-filter .acke-price-range input[type="range"]::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
    border: 0;
}

.acke-shop-filter .acke-price-range input[type="range"]::-webkit-slider-thumb {
    width: 15px;
    height: 15px;
    margin-top: -5.5px;
    border: 4px solid #f5821f;
    background: #fff;
    border-radius: 50%;
    appearance: none;
    -webkit-appearance: none;
    pointer-events: auto;
    cursor: grab;
}

.acke-shop-filter .acke-price-range input[type="range"]::-webkit-slider-thumb:active {
    cursor: grabbing;
}

.acke-shop-filter .acke-price-range input[type="range"]::-moz-range-track {
    height: 4px;
    background: transparent;
    border: 0;
}

.acke-shop-filter .acke-price-range input[type="range"]::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border: 4px solid #f5821f;
    background: #fff;
    border-radius: 50%;
    pointer-events: auto;
    cursor: grab;
}

.acke-shop-filter .acke-range-min {
    z-index: 3;
}

.acke-shop-filter .acke-range-max {
    z-index: 4;
}

.acke-shop-filter .acke-price-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.acke-shop-filter .acke-price-inputs label {
    color: #555;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.acke-shop-filter .acke-price-inputs input {
    width: 100%;
    margin-top: 5px;
    padding: 10px 12px;
    border: 1px solid #e8e3d8;
    background: #fff;
    color: #111;
    font-family: "Quicksand", Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    outline: none;
}

.acke-shop-filter .acke-price-inputs input:focus {
    border-color: #f5821f;
}

.acke-shop-filter .acke-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 15px;
    line-height: 1.4;
}

.acke-shop-filter .price_label {
    color: #555;
    font-size: 15px;
    font-weight: 600;
}

.acke-shop-filter .price_label strong {
    color: #111;
    font-weight: 900;
}

.acke-shop-filter .acke-filter-button {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    color: #f5821f !important;
    font-family: "Blinker", Arial, sans-serif;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: none !important;
    cursor: pointer;
}

.acke-shop-filter .acke-filter-button:hover {
    color: #111 !important;
}

/* Ocjena se više ne koristi */
.acke-shop-filter .acke-rating-list,
.acke-shop-filter .acke-stars {
    display: none !important;
}

@media (max-width: 767px) {
    .acke-shop-filter {
        padding: 22px;
        background: #fff;
        border: 1px solid #eee7dc;
    }

    .acke-shop-filter .acke-filter-title {
        font-size: 18px;
    }

    .acke-shop-filter li {
        font-size: 15px;
    }
}


/* Fine tuning 1.0.6 */
.acke-shop-filter .acke-filter-title {
    font-weight: 500 !important;
    color: #070707 !important;
}

.acke-shop-filter .acke-filter-title:hover,
.acke-shop-filter .acke-filter-title:focus,
.acke-shop-filter .acke-filter-title:active {
    color: #070707 !important;
    background-color: transparent !important;
}

.acke-shop-filter li,
.acke-shop-filter li a {
    font-size: 16px;
    font-weight: 500;
}

.acke-shop-filter .count {
    font-size: 14px;
    font-weight: 400;
}
