#awf-przycisk-otworz {
    margin-bottom: 20px;
    position: fixed;
    left: 0;
    text-transform: uppercase;
    height: auto;
    z-index: 99;
    width: 44px;
    font-size: 20px;
    font-weight: 700;
    padding: 14px;
}

.h3 {
    font-size: 2rem;
    font-weight: 500 !important;
    color: var(--contrast);
    line-height: 1.2;
    margin-bottom: 5px;
}

.h4 {
    font-size: 1.5rem;
    font-weight: 500 !important;
    color: var(--contrast);
    line-height: 1.2;
    margin-bottom: 5px;
}

#awf-panel-tlo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#awf-panel-kontener {
    position: fixed;
    top: 0;
    left: -320px; 
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 1001;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
}

body.awf-panel-otwarty #awf-panel-tlo {
    opacity: 1;
    visibility: visible;
}
body.awf-panel-otwarty #awf-panel-kontener {
    left: 0;
}

#awf-panel-naglowek {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}
#awf-panel-naglowek h3 {
    margin: 0;
}
#awf-przycisk-zamknij {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #000;
}

#awf-panel-cialo {
    flex-grow: 1;
    overflow-y: auto;
    padding: 15px;
}

#awf-panel-stopka {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.awf-filtr-blok {
    margin-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}
.awf-filtr-blok h4 {
    margin-top: 0;
    margin-bottom: 10px;
}
.awf-pola-ceny {
    display: flex;
    gap: 10px;
}
.awf-pola-ceny input {
    width: 100%;
}
ul.awf-lista-opcji {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 200px; 
    overflow-y: auto;
    scrollbar-width: auto;
    background: scroll;
}
ul.awf-lista-opcji li label {
    display: block;
    margin-bottom: 5px;
    cursor: pointer;
}
ul.awf-lista-opcji li .count {
    color: #888;
    font-size: 0.9em;
}