.mf-floater {
        position: fixed;
        bottom: 24px;
        left: 12px;
        transform: none;
        z-index: 9000;
        background: #E74816;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 14px 28px;
        border-radius: 30px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.25);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 10px;
        white-space: nowrap;
    }

    .mf-floater-badge {
        background: #000000;
        color: #ffffff;
        border-radius: 50%;
        width: 22px;
        height: 22px;
        font-size: 12px;
        display: none;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .mf-floater-badge.visible { display: inline-flex; }

    .mf-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 9001;
    }
    .mf-overlay.open { display: block; }

    .mf-panel {
        position: fixed;
        bottom: 0; left: 0; right: 0;
        background: #fff;
        z-index: 9002;
        border-radius: 16px 16px 0 0;
        max-height: 88vh;
        display: flex;
        flex-direction: column;
        transform: translateY(100%);
        transition: transform 300ms ease-out;
        will-change: transform;
        contain: layout;
    }
    .mf-panel.open { transform: translateY(0); }

    .mf-panel-header {
        padding: 18px 20px 12px;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        flex-shrink: 0;
    }
    .mf-panel-header-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 12px;
    }
    .mf-panel-header-top h3 { margin: 0; font-size: 16px; font-weight: 700; }

    .mf-panel-close {
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
        background: none;
        border: none;
        color: #0D0D0D;
        padding: 0;
        -webkit-appearance: none;
    }

    .mf-active-filters { display: flex; flex-wrap: wrap; gap: 8px; }
    .mf-active-filters:empty { display: none; }

    .mf-active-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: #f0f0f0;
        border-radius: 20px;
        padding: 6px 12px;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
        border: none;
        color: #0D0D0D;
        -webkit-appearance: none;
    }
    .mf-active-tag .mf-tag-x { font-size: 14px; color: #777; }

    .mf-panel-body {
        flex: 1;
        overflow-y: auto;
        padding: 0 20px;
        -webkit-overflow-scrolling: touch;
        position: relative;
    }

    .mf-loading {
        display: none;
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,0.82);
        align-items: center;
        justify-content: center;
        z-index: 10;
    }
    .mf-loading.visible { display: flex; }

    .mf-filter-group { border-bottom: 1px solid rgba(0,0,0,0.06); }

    .mf-filter-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 0;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        user-select: none;
        color: #0D0D0D;
    }

    .mf-filter-options { display: none; padding-bottom: 12px; }
    .mf-filter-group.open .mf-filter-options { display: block; }

    .mf-filter-option {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0,0,0,0.04);
        cursor: pointer;
    }
    .mf-filter-option:last-child { border-bottom: none; }

    .mf-filter-checkbox {
        width: 20px;
        height: 20px;
        border: 2px solid rgba(0,0,0,0.2);
        border-radius: 4px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 200ms, border-color 200ms;
    }
    .mf-filter-option.selected .mf-filter-checkbox {
        background: #E74816;
        border-color: #E74816;
    }
    .mf-filter-option.selected .mf-filter-checkbox::after {
        content: '✓';
        color: #fff;
        font-size: 12px;
        font-weight: 700;
    }

    .mf-filter-label { font-size: 14px; color: #0D0D0D; flex: 1; }
    .mf-filter-count { font-size: 12px; color: #777; }

    .mf-panel-footer {
        padding: 16px 20px;
        border-top: 1px solid rgba(0,0,0,0.08);
        display: flex;
        gap: 10px;
        flex-shrink: 0;
        background: #fff;
    }

    .mf-btn-clear {
        flex: 0 0 auto;
        padding: 14px 20px;
        border: 1px solid rgba(0,0,0,0.15);
        border-radius: 8px;
        font-size: 14px;
        font-weight: 700;
        background: #fff;
        cursor: pointer;
        color: #0D0D0D;
        -webkit-appearance: none;
    }

    .mf-btn-show {
        flex: 1;
        padding: 14px;
        background: #E74816;
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        cursor: pointer;
        -webkit-appearance: none;
    }
    .mf-btn-show:disabled { opacity: 0.6; }



/* stara avtokozmetika filter */
.btn_vsiIzdelki {
    display:flex;
    align-items:center;
    gap:10px;
    border-radius:12px;
    padding:12px 18px;
    font-size:14px;
    font-weight:500;
    width:100%;
    text-decoration:none;
    margin-bottom:10px;
    box-sizing:border-box;
    box-shadow:0 1px 4px rgba(0,0,0,0.08);
  }
  .btn_ostali {
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:6px;
    border-radius:12px;
    padding:16px 12px 12px;
    font-size:13px;
    font-weight:500;
    text-decoration:none;
    text-align:center;
    box-sizing:border-box;
    box-shadow:0 1px 4px rgba(0,0,0,0.08);
  }
  .btn_active {
    background: #e74816;
    color: #ffffff;
    border: 1px solid #000000;
  }
  .btn_inactive {
    background: #f5f5f5;
    color: #444;
    border: 1px solid #e74816;
  }