/* ===== Product Filter Sidebar Widget ===== */
.pfilter {
    background: #fff;
    border: 1px solid #e3a8a8;
    border-radius: 12px;
    padding: 30px;
    width: 100%;
}

/* Search */
.pfilter__search {
    position: relative;
    margin: 0;
}

.pfilter__search input[type="search"] {
    width: 100%;
    height: 48px;
    padding: 0 18px;
    font-size: 15px;
    color: #333;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.pfilter__search input[type="search"]:focus {
    border-color: #c0522e;
    background: #fff;
}

.pfilter__search input[type="search"]::placeholder {
    color: #999;
}

/* Title */
.pfilter__title {
    margin: 30px 0 18px;
    font-size: 24px;
    font-weight: 700;
    color: #c0522e;
    line-height: 1.3;
}

/* Category list */
.pfilter__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pfilter__item {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.pfilter__item + .pfilter__item {
    margin-top: 14px;
}

.pfilter__item a {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.pfilter__item a:hover {
    color: #c0522e;
}

.pfilter__item.is-current > a,
.pfilter__item.is-current > .pfilter__name {
    color: #c0522e;
    font-weight: 600;
}

.pfilter__count {
    color: inherit;
    opacity: 0.75;
    margin-left: 2px;
}

.pfilter__empty {
    margin: 0;
    color: #888;
    font-size: 14px;
}
