.mc-fp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.mc-fp-overlay.is-active { opacity: 1; pointer-events: auto; }
body.mc-fp-open { overflow: hidden; }

.mc-fp-mobile-btn {
    align-items: center;
    justify-content: center;
    cursor: pointer;
    line-height: 1;
}
.mc-fp-btn-icon { display: inline-flex; align-items: center; }

.mc-fp-panel-inner { padding: 16px 0 40px; }

.mc-fp-panel-close {
    background: transparent;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.mc-fp-section { margin-bottom: 16px; }
.mc-fp-section-title {
    display: flex;
    align-items: center;
    font-weight: 700;
    text-transform: uppercase;
}

.mc-fp-cat-list { list-style: none; margin: 0; padding: 0; }
.mc-fp-cat-item { margin: 0; }
.mc-fp-cat-link { display: flex; align-items: center; text-decoration: none; }
.mc-fp-cat-bullet { flex-shrink: 0; }

.mc-fp-price-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 16px;
}
.mc-fp-price-label { font-size: 12px; font-weight: 600; white-space: nowrap; flex-shrink: 0; }
.mc-fp-price-input-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    flex: 1 1 0;
    min-width: 0;
}
.mc-fp-price-input {
    -webkit-appearance: none;
    appearance: none;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 6px 10px;
    width: 100%;
    min-width: 0;
    font-size: 14px;
    background: transparent;
    color: #252525;
}
.mc-fp-price-input:focus,
.mc-fp-price-input:active {
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
}
.mc-fp-price-input::placeholder { color: #AAAAAA; }

.mc-fp-attrs-section { padding: 0 16px; }
.mc-fp-attr-group { margin-bottom: 12px; }
.mc-fp-attr-list { list-style: none; margin: 4px 0 0; padding: 0; }
.mc-fp-attr-item { margin: 0; }
.mc-fp-attr-option { display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 3px 0; }
.mc-fp-attr-option input[type="checkbox"] { display: none; }
.mc-fp-attr-check {
    width: 16px; height: 16px; flex-shrink: 0;
    border: 2px solid #bbb; border-radius: 3px;
    background: #fff; position: relative; display: inline-block;
    transition: border-color .15s, background .15s;
}
.mc-fp-attr-option input:checked + .mc-fp-attr-check { border-color: #252525; background: #252525; }
.mc-fp-attr-option input:checked + .mc-fp-attr-check::after {
    content: ''; display: block;
    position: absolute; top: 2px; left: 4px;
    width: 5px; height: 8px;
    border: 2px solid #fff; border-top: none; border-left: none;
    transform: rotate(45deg);
}
.mc-fp-attr-name { font-size: 14px; }

.mc-active-filters-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 0;
    margin-bottom: 12px;
}
.mc-active-bar-label { font-size: 13px; font-weight: 600; white-space: nowrap; }
.mc-active-chips { display: flex; flex-wrap: wrap; gap: 6px; flex: 1; }
.mc-active-chip {
    display: inline-flex; align-items: center; gap: 4px;
    background: #f0f0f0; border-radius: 100px;
    padding: 2px 8px 2px 10px; font-size: 13px;
}
.mc-active-chip-remove {
    background: transparent; border: none; cursor: pointer;
    font-size: 16px; line-height: 1; padding: 0 2px; color: #555;
}
.mc-active-chip-remove:hover { color: #111; }
.mc-active-clear-all {
    background: transparent; border: 1px solid #bbb; border-radius: 4px;
    padding: 3px 10px; font-size: 12px; cursor: pointer; white-space: nowrap;
    color: #555;
}
.mc-active-clear-all:hover { border-color: #252525; color: #252525; }
