/* Fő konténer */
.hsz-filter-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    font-family: 'Inter', sans-serif;
    min-width: 100%;
}

.hsz-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #f8f8f8;
    padding-bottom: 15px;
}

.hsz-filter-header h3 {
    margin: 0;
    font-size: 18px;
    color: #133951;
}

.hsz-reset-link {
    font-size: 12px;
    color: #bd5c00;
    text-decoration: none;
    font-weight: 600;
}

/* Csoportok */
.filter-group {
    margin-bottom: 25px;
}

.group-title {
    display: block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

/* Görgethető doboz a sok elemhez */
.hsz-scroll-box {
    max-height: 160px; /* Itt állíthatod a magasságot */
    overflow-y: auto;
    padding-right: 10px;
}

/* Egyedi görgetősáv design */
.hsz-scroll-box::-webkit-scrollbar { width: 4px; }
.hsz-scroll-box::-webkit-scrollbar-track { background: #f1f1f1; }
.hsz-scroll-box::-webkit-scrollbar-thumb { background: #133951; border-radius: 10px; }

/* Modern Checkbox Design */
.hsz-custom-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    padding: 8px 0;
    cursor: pointer;
    font-size: 14px;
    color: #444;
    transition: 0.2s;
}

.hsz-custom-checkbox:hover { color: #bd5c00; }

.hsz-custom-checkbox input { display: none; }

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    margin-right: 12px;
    display: inline-block;
    position: relative;
    transition: 0.3s;
}

.hsz-custom-checkbox input:checked + .checkmark {
    background-color: #133951;
    border-color: #133951;
}

.hsz-custom-checkbox input:checked + .checkmark:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Modern Slider */
.hsz-modern-slider {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 10px;
    margin: 15px 0;
}

.hsz-modern-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #bd5c00;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Fő gomb */
.hsz-main-filter-btn {
    width: 100%;
    background: #133951;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(19, 57, 81, 0.2);
}

.hsz-main-filter-btn:hover {
    background: #bd5c00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(189, 92, 0, 0.3);
}

/* Keresőmező wrapper */
.hsz-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* Az ikon stílusa a mezőben */
.hsz-search-wrapper .search-icon {
    position: absolute;
    left: 15px;
    width: 20px;
    height: 20px;
    fill: #133951;
    opacity: 0.5;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Modern Input stílus */
.hsz-modern-input {
    width: 100%;
    padding: 14px 15px 14px 45px; /* Balról nagyobb padding az ikon miatt */
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    background-color: #f9f9f9;
    color: #133951;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

/* Fókusz állapot: ha beleüt a felhasználó */
.hsz-modern-input:focus {
    background-color: #ffffff;
    border-color: #bd5c00; /* A már használt narancssárga szín */
    box-shadow: 0 4px 12px rgba(189, 92, 0, 0.1);
}

/* Ha fókuszban van, az ikon színe is változzon */
.hsz-modern-input:focus + .search-icon,
.hsz-search-wrapper:focus-within .search-icon {
    fill: #bd5c00;
    opacity: 1;
}

/* Placeholder stílusa */
.hsz-modern-input::placeholder {
    color: #aaa;
    font-weight: 400;
}

/* Konténer, ami kezeli a sortörést */
.szallas-badge-container {
    display: flex;
    flex-wrap: wrap;    /* Ez töri meg a sort a div szélénél */
    gap: 8px;           /* Távolság a badge-ek között */
    margin: 15px 0;
}

/* Egyedi kategória badge design */
.szallas-badge {
    background-color: #f0f4f8;   /* Világos szürke/kék háttér */
    color: #133951;              /* Sötétebb szöveg a kontraszt miatt */
    padding: 6px 14px;
    border-radius: 50px;         /* Kapszula forma */
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #d1d9e0;
    transition: all 0.2s ease;
    white-space: nowrap;         /* Egy badge-en belül ne törjön meg a szó */
}

/* Hover effekt */
.szallas-badge:hover {
    background-color: #133951;   /* WordPress kék vagy a saját márkaszíned */
    color: #ffffff;
    border-color: #133951;
}