.entry-header {
    display: none;
}
/* ===============================
   GŁÓWNY WRAPPER
================================ */
#wpsl-wrap {
    max-width: 1650px;
    margin: 0 auto;
    padding: 20px 15px;
    font-family: Arial, sans-serif;
}

/* ===============================
   SEKCJA WYSZUKIWARKI
================================ */
.wpsl-search {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 30px;
}

#wpsl-search-wrap form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

/* ===============================
   PRZYCISK "ZNJDŹ MOJĄ LOKALIZACJĘ"
================================ */
.wpsl-input-location-btn {
    flex: 0 0 30%;
    display: flex;
}

.wpsl-location-btn {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2e8f57;
    color: #fff !important;
    padding: 10px 14px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.wpsl-location-btn:hover {
    background-color: #3d2517;
}

/* ===============================
   INPUT TEXT
================================ */
.wpsl-input {
    flex: 0 0 40%;
    display: flex;
    width: 100%;
}

#wpsl-search-input {
    width: 100%;
    flex: 1 1 auto;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 16px;
}

#wpsl-search-input:focus {
    border-color: #35a869;
    outline: none;
}

/* ===============================
   SELECTY (promień + ilość wyników)
================================ */
.wpsl-select-wrap select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #3d2517;
    background-color: #3d2517;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    z-index: 2; /* Dodany z-index */
}

/* ===============================
   PRZYCISK SZUKAJ
================================ */
.wpsl-search-btn-wrap {
    flex: 0 0 20%;
    display: flex;
}

#wpsl-search-btn {
    width: 100%;
    height: 100%;
    padding: 16px;
    background-color: #3d2517 !important;
    color: #fff !important;
    border-radius: 12px;
    border: 0 !important;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#wpsl-search-btn:hover {
    background-color: #2e8f57 !important;
}

/* ===============================
   MAPA + LISTA WYNIKÓW
================================ */
#wpsl-map-results-wrap {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    align-items: stretch;
}

#wpsl-gmap {
    flex: 2 1 auto;
    min-width: 300px;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

#wpsl-result-list {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid #ebcea3;
    border-radius: 20px;
    padding: 25px 20px;
    color: #3d2517;
    height: 600px;
    overflow-y: auto;
}

/* Lista sklepów */
#wpsl-stores ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#wpsl-stores ul li {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 12px;
    border-left: 6px solid #3d2517;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.2s;
}

#wpsl-stores ul li:hover {
    transform: translateX(2px);
}

/* ===============================
   WERSJA DLA STOPKI
================================ */
.wpsl-provided-by {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #3d2517;
}

.wpsl-provided-by a {
    color: #3d2517;
    text-decoration: none;
    font-weight: 600;
}

.wpsl-provided-by a:hover {
    text-decoration: underline;
}

/* ===============================
   WERSJA MOBILNA
================================ */
@media (max-width: 1024px) {
    #wpsl-map-results-wrap {
        flex-direction: column;
    }

    #wpsl-gmap,
    #wpsl-result-list {
        height: auto;
    }
}

@media (max-width: 768px) {
    #wpsl-search-wrap form {
        flex-direction: column;
    }

    .wpsl-input-location-btn,
    .wpsl-input,
    .wpsl-select-wrap,
    .wpsl-search-btn-wrap {
        flex: 0 0 100%;
    }

    #wpsl-gmap {
        height: 350px;
    }
}

@media (max-width: 570px) {
    #wpsl-search-btn {
        width: 100%;
    }

    .wpsl-search {
        padding: 4%;
    }

    #wpsl-search-wrap form {
        flex-direction: column;
    }

    #wpsl-search-input {
        width: 100%;
    }
}

@media (max-width: 420px) {
    #wpsl-checkbox-filter li {
        margin: 0;
    }

    #wpsl-checkbox-filter.wpsl-checkbox-1-columns li,
    #wpsl-checkbox-filter.wpsl-checkbox-2-columns li,
    #wpsl-checkbox-filter.wpsl-checkbox-3-columns li,
    #wpsl-checkbox-filter.wpsl-checkbox-4-columns li {
        width: 100%;
    }
}
