/**
 * Hanna Advanced Filters - Frontend Styles
 */

/* Filter Widget Container */
.haf-filter-widget {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.haf-filter-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c5282;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #2c5282;
}

/* Discount Filter Styles */
.haf-discount-filter {
    max-width: 100%;
}

.haf-discount-slider-container {
    padding: 10px 0;
}

.haf-discount-values {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #2c5282;
}

.haf-discount-separator {
    color: #999;
}

.haf-discount-slider-wrapper {
    position: relative;
    height: 50px;
    margin-bottom: 20px;
}

.haf-discount-slider {
    position: absolute;
    width: 100%;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    outline: none;
}

.haf-discount-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2c5282;
    cursor: pointer;
    pointer-events: auto;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.haf-discount-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2c5282;
    cursor: pointer;
    pointer-events: auto;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.haf-discount-track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
}

.haf-discount-range {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, #4299e1, #2c5282);
    border-radius: 3px;
}

.haf-apply-discount-filter,
.haf-reset-discount-filter {
    margin-top: 10px;
    margin-right: 10px;
    padding: 10px 20px;
    background: #2c5282;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.haf-apply-discount-filter:hover {
    background: #1a365d;
}

.haf-reset-discount-filter {
    background: #e53e3e;
}

.haf-reset-discount-filter:hover {
    background: #c53030;
}

/* Brand Filter Styles */
.haf-brand-filter {
    max-width: 100%;
}

.haf-brand-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.haf-brand-item {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.haf-brand-item:hover {
    background: #f7fafc;
}

.haf-brand-radio {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #2c5282;
}

.haf-brand-label {
    flex: 1;
    margin-left: 10px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.haf-brand-count {
    font-size: 12px;
    color: #999;
    margin-left: auto;
}

.haf-clear-brand-filter {
    margin-top: 15px;
    padding: 8px 16px;
    background: #e53e3e;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.3s ease;
    width: 100%;
}

.haf-clear-brand-filter:hover {
    background: #c53030;
}

/* All Filters Container */
.haf-filters-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .haf-filters-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

/* Active Filters */
.haf-active-filters {
    background: #f7fafc;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.haf-active-filters h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
}

.haf-active-filters-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.haf-active-filter {
    display: inline-block;
    padding: 6px 12px;
    background: #2c5282;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.haf-clear-all-filters {
    padding: 8px 16px;
    background: #e53e3e;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.haf-clear-all-filters:hover {
    background: #c53030;
}

/* Responsive */
@media (max-width: 767px) {
    .haf-filter-widget {
        padding: 15px;
    }
    
    .haf-discount-values {
        font-size: 16px;
    }
    
    .haf-brand-item {
        padding: 10px;
    }
}
