.lpre-search-page {
    font-family: inherit;
    color: #1f1f1f;
}

.lpre-search-breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px 0;
    font-size: 14px;
    color: #5a5a5a;
}

.lpre-search-breadcrumb ol {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.lpre-search-breadcrumb li {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lpre-search-breadcrumb li::after {
    content: "›";
    color: #9b9b9b;
}

.lpre-search-breadcrumb li:last-child::after {
    display: none;
}

.lpre-search-hero {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 64, 175, 0.75));
    color: #fff;
    padding: 60px 20px;
    margin: 20px auto 40px;
    max-width: 1200px;
    border-radius: 16px;
    overflow: hidden;
}

.lpre-search-hero-inner {
    max-width: 960px;
    margin: 0 auto;
}

.lpre-search-hero h1 {
    font-size: 32px;
    margin-bottom: 8px;
}

.lpre-search-hero p {
    font-size: 18px;
    margin-bottom: 24px;
}

.lpre-search-hero-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    padding: 20px;
    border-radius: 12px;
    display: grid;
    gap: 16px;
}

.lpre-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.lpre-form-field {
    flex: 1;
    min-width: 140px;
}

.lpre-form-field label {
    font-size: 13px;
    display: block;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.8);
}

.lpre-form-field input,
.lpre-form-field select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
}

.lpre-form-actions {
    display: flex;
    align-items: flex-end;
}

.lpre-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.lpre-btn-primary {
    background: #f97316;
    color: #fff;
}

.lpre-btn-primary:hover {
    background: #ea580c;
}

.lpre-btn-secondary {
    background: #e2e8f0;
    color: #1f2937;
}

.lpre-search-layout {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 260px minmax(0, 540px) minmax(320px, 1fr);
    gap: 24px;
    padding: 0 20px;
    align-items: start;
}

.lpre-search-sidebar {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
    padding: 24px;
    position: sticky;
    top: 120px;
    align-self: start;
}

.lpre-filters {
    display: grid;
    gap: 24px;
}

.lpre-filter-group h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.lpre-filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #475569;
}

.lpre-filter-checkbox.is-hidden {
    display: none;
}

.lpre-filter-checkbox.is-hidden.is-visible {
    display: flex;
}

.lpre-filter-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.lpre-filter-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.lpre-price-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lpre-price-btn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #cbd5f5;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
}

.lpre-price-btn.is-active,
.lpre-price-btn:hover {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
}

.lpre-filter-more {
    background: none;
    border: none;
    color: #1f2937;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 0 0;
}

.lpre-filter-more:hover {
    text-decoration: underline;
}

.lpre-filter-actions {
    display: flex;
    gap: 12px;
}

.lpre-search-results {
    display: grid;
    gap: 24px;
}

.lpre-category-slider {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
    padding: 20px;
    width: 100%;
    min-width: 220px;
    margin: 0 auto;
}

.lpre-category-slider-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 16px;
}

.lpre-category-slider-header h2 {
    margin: 0;
    font-size: 18px;
}

.lpre-category-slider-body {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lpre-category-track-wrapper {
    flex: 1;
    overflow: hidden;
}

.lpre-category-nav {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #cbd5f5;
    background: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.2s ease;
    color: #1f2937;
}

.lpre-category-nav:hover {
    background: #1f2937;
    color: #fff;
}

.lpre-category-nav svg {
    pointer-events: none;
}

.lpre-category-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(33.333% - 8px);
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: thin;
    scroll-behavior: smooth;
    padding-bottom: 4px;
}

.lpre-category-chip {
    display: inline-flex;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid #cbd5f5;
    color: #1f2937;
    text-decoration: none;
    font-size: 14px;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    min-height: 42px;
}

.lpre-category-chip.is-selected {
    background: #1f2937;
    color: #fff;
    border-color: #1f2937;
}

.lpre-results-section {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
    padding: 20px;
}

.lpre-results-section.is-loading {
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.lpre-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: #475569;
}

.lpre-results-grid {
    display: grid;
    gap: 18px;
}

.lpre-result-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 18px;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
}

.lpre-card-media img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
}

.lpre-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.lpre-card-header h3 {
    margin: 0;
    font-size: 18px;
}

.lpre-card-price {
    font-weight: 600;
    background: #f1f5f9;
    color: #1f2937;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 13px;
}

.lpre-card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}

.lpre-stars {
    display: inline-flex;
    gap: 2px;
    font-size: 16px;
    color: #f59e0b;
}

.lpre-rating-number {
    margin-left: 6px;
    color: #475569;
    font-size: 14px;
}

.lpre-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: #64748b;
    font-size: 14px;
}

.lpre-card-location svg {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    stroke: currentColor;
    fill: none;
}

.lpre-card-insights {
    margin: 10px 0;
    font-size: 13px;
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 6px;
}

.lpre-card-insights svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
}

.lpre-card-times {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lpre-time-slot {
    border: 1px solid #cbd5f5;
    border-radius: 999px;
    padding: 6px 12px;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
}

.lpre-time-slot:hover {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.lpre-pagination {
    margin-top: 24px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.lpre-page-link a,
.lpre-page-link span {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #cbd5f5;
    color: #1f2937;
    text-decoration: none;
}

.lpre-page-link .current {
    background: #1f2937;
    color: #fff;
}

.lpre-results-empty {
    text-align: center;
    padding: 40px 20px;
}

.lpre-search-map-column {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
    padding: 16px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

#lpre-search-map {
    width: 100%;
    height: 520px;
    border-radius: 12px;
}

.lpre-search-testimonials {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

@media (max-width: 1100px) {
    .lpre-search-layout {
        grid-template-columns: 240px 1fr;
    }

    .lpre-category-track {
        grid-auto-columns: calc(50% - 8px);
    }

    .lpre-search-map-column {
        position: static;
        height: 400px;
    }
}

@media (max-width: 900px) {
    .lpre-search-layout {
        grid-template-columns: 1fr;
    }

    .lpre-search-sidebar,
    .lpre-search-map-column {
        position: static;
    }

    .lpre-result-card {
        grid-template-columns: 1fr;
    }
}

