.search-results-page {
    padding-top: 68px;
    background: var(--gray-100);
    min-height: 100vh;
}

/* Top Search Bar */
.srp-search-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 10px 0;
    position: sticky;
    top: 58px;
    z-index: 100;
}

.srp-search-inner {
    display: flex;
    align-items: stretch;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    overflow: visible;
}

.srp-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 20px;
    border-right: 1px solid var(--gray-200);
    cursor: pointer;
    transition: background var(--transition);
    position: relative;
}

.srp-field:hover {
    background: var(--gray-100);
}

.srp-field-dest { flex: 1.5; }
.srp-field-dates { flex: 1; }
.srp-field-guests { flex: 1; border-right: none; }

.srp-field-label {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.srp-field-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.srp-field-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    font-size: 0.85rem;
    padding: 4px;
}

.srp-field-clear:hover { color: var(--gray-700); }

/* Input variants inside srp-field */
input.srp-field-value {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    padding: 0;
    margin: 0;
    font-family: inherit;
    line-height: 1.4;
    cursor: pointer;
}
input.srp-field-value::placeholder {
    color: var(--gray-500);
    font-weight: 500;
}

/* Guests trigger (div used as button) */
.srp-field-guests .form-input {
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
}
.srp-field-guests .form-input label {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
    margin: 0;
}
.srp-field-guests .form-input p#triggerLabel {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.srp-field-guests .form-input p#triggerLabel:empty::before {
    content: '2 Yetiskin, 1 Oda';
    color: var(--gray-900);
}

/* Guests dropdown panel */
.srp-field-guests .dropdown { position: static; }
.srp-field-guests .dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 320px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 14px;
    z-index: 200;
    display: none;
}
.srp-field-guests .dropdown-menu.show { display: block; }

.srp-search-btn {
    width: 52px;
    flex-shrink: 0;
    background: #dd2825;
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background var(--transition);
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.srp-search-btn:hover { background: #b82220; }

/* Filter Chips Bar */
.srp-filter-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 10px 0;
    position: sticky;
    top: calc(68px + 78px);
    z-index: 99;
}

.srp-filter-chips {
    display: flex;
    align-items: center;
    gap: 8px;
    /* overflow-x: auto; */
    scrollbar-width: none;
    overflow-y: visible;
}

.srp-filter-chips::-webkit-scrollbar { display: none; }

.filter-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--gray-300);
    border-radius: 24px;
    background: var(--white);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--transition);
    font-family: inherit;
}

.filter-chip:hover {
    border-color: var(--gray-500);
    background: var(--gray-100);
}

.filter-chip.active {
    border-color: #dd2825;
    color: #dd2825;
    background: rgba(221,40,37,0.05);
}

.filter-chip i { font-size: 0.75rem; }

.filter-chip-dropdown-wrap { position: relative; }

.chip-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 12px 16px;
    min-width: 200px;
    z-index: 110;
}

.chip-dropdown.open { display: block; }

.chip-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.85rem;
    cursor: pointer;
    color: var(--gray-700);
}

.chip-radio input { accent-color: #dd2825; }

.chip-dropdown label { font-size: 0.82rem; color: var(--gray-600); }

.chip-dropdown input[type="range"] {
    width: 100%;
    margin-top: 8px;
    accent-color: #dd2825;
}

.srp-filter-right { margin-left: auto; }

.srp-map-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 2px solid var(--gray-800);
    border-radius: 24px;
    background: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition: all var(--transition);
}

.srp-map-btn:hover {
    background: var(--gray-900);
    color: var(--white);
}

/* Results Info */
.srp-results-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 8px;
}

.srp-results-count { font-size: 0.88rem; font-weight: 600; color: var(--gray-800); }
.srp-results-note { font-size: 0.78rem; color: var(--gray-500); cursor: pointer; }
.srp-results-note i { margin-left: 2px; }

/* Layout */
.srp-layout { display: flex; gap: 20px; padding-bottom: 40px; }

/* Sidebar */
.srp-sidebar { width: 260px; flex-shrink: 0; display: none; }
.srp-sidebar.open { display: block; }

.srp-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.srp-sidebar-header h3 { font-size: 1.05rem; font-weight: 700; }

.srp-clear-btn {
    background: none;
    border: none;
    color: #dd2825;
    font-size: 0.82rem;
    cursor: pointer;
    font-weight: 500;
    font-family: inherit;
}

.srp-sidebar-close {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--gray-600);
}

.srp-filter-group {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 12px;
}

.srp-filter-group h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--gray-800);
}

.srp-price-slider input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    height: 4px;
    border-radius: 2px;
    background: var(--gray-300);
    outline: none;
}

.srp-price-slider input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #dd2825;
    cursor: pointer;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.srp-price-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--gray-600);
    margin-top: 6px;
}

.srp-check {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--gray-700);
}

.srp-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #dd2825;
    cursor: pointer;
}

.srp-check i { color: var(--gray-500); width: 16px; text-align: center; font-size: 0.8rem; }

.stars-row { color: var(--warning); font-size: 0.75rem; }
.stars-row i { color: var(--warning); margin-right: 1px; }

/* Results */
.srp-results { flex: 1; min-width: 0; }

/* Hotel Card - Trivago Style */
.htl-card {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--gray-200);
    transition: box-shadow 0.3s ease;
    max-height: 250px;
}

.htl-card:hover { box-shadow: var(--shadow-lg); }

.htl-img {
    position: relative;
    width: 260px;
    min-height: 240px;
    flex-shrink: 0;
    overflow: hidden;
}

.htl-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.htl-card:hover .htl-img img { transform: scale(1.05); }

.htl-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
}

.htl-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition);
    font-size: 0.95rem;
}

.htl-fav:hover, .htl-fav.active { color: var(--danger); }

.htl-img-counter {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.6);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 500;
}

/* Middle: Info */
.htl-info {
    flex: 1;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.htl-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2px;
    text-decoration: none;
    display: block;
}

.htl-name:hover { color: #dd2825; }

.htl-stars { color: var(--warning); font-size: 0.7rem; margin-bottom: 8px; }

.htl-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.htl-rating-badge {
    background: #00800a;
    color: var(--white);
    padding: 4px 8px;
    border-radius: 6px 6px 6px 0;
    font-size: 0.9rem;
    font-weight: 700;
    min-width: 32px;
    text-align: center;
}

.htl-rating-label { font-size: 0.85rem; font-weight: 600; color: var(--gray-800); }
.htl-review-count { font-size: 0.8rem; color: var(--gray-500); }

.htl-location {
    font-size: 0.82rem;
    color: var(--gray-600);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.htl-location i { color: var(--gray-400); font-size: 0.75rem; }

.htl-highlights {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: auto;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.htl-highlights i { color: var(--warning); font-size: 0.7rem; margin-top: 3px; }

/* Right: Price Panel */
.htl-price-panel {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--gray-200);
}

.htl-best-deal {
    flex: 1;
    padding: 14px 16px;
    background: rgba(0,128,10,0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.htl-provider-name { font-size: 0.82rem; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }

.htl-deal-perks { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }

.htl-perk {
    font-size: 0.72rem;
    color: #00800a;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 3px;
}

.htl-perk i { font-size: 0.65rem; }

.htl-price-row { display: flex; align-items: center; gap: 10px; }

.htl-price { font-size: 1.5rem; font-weight: 500; color: var(--gray-900); }

.htl-btn-show {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #00800a;
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    font-size: 0.90rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: background var(--transition);
    margin-left: auto;
}

.htl-btn-show:hover { background: #006b08; }

.htl-total-price { font-size: 0.72rem; color: var(--gray-500); margin-top: 2px; }
.htl-total-price s { margin-right: 4px; }

.htl-provider-logo {
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    color: var(--gray-500);
}

/* Other providers */
.htl-other-deals {
    border-top: 1px solid var(--gray-200);
    padding: 8px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.htl-other-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; }
.htl-other-price { font-weight: 700; color: var(--gray-800); }
.htl-other-name { color: var(--gray-500); font-size: 0.75rem; }

.htl-more-toggle {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    font-size: 0.75rem;
    padding: 2px 0;
    text-align: right;
    font-family: inherit;
}

/* Skeleton Loading */
.srp-loading { display: block; }
.srp-loading.hidden { display: none; }

.srp-skeleton-card {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--gray-200);
}

.srp-skel-img {
    width: 260px;
    min-height: 220px;
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.srp-skel-body { flex: 1; padding: 20px; }

.srp-skel-price {
    width: 220px;
    padding: 20px;
    border-left: 1px solid var(--gray-200);
}

.skel-line {
    height: 14px;
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 14px;
}

.skel-line.w70 { width: 70%; }
.skel-line.w40 { width: 40%; height: 12px; }
.skel-line.w90 { width: 90%; }
.skel-line.w50 { width: 50%; }
.skel-line.w30 { width: 30%; height: 12px; }

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* No Results */
.srp-no-results { text-align: center; padding: 80px 20px; color: var(--gray-500); }
.srp-no-results i { font-size: 3rem; margin-bottom: 16px; }
.srp-no-results h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--gray-700); }

.srp-field-value, .trigger-area-custom{
    max-height: 30px;
}