  .pl-page {
    padding: 28px 0 52px;
    background:
      radial-gradient(circle at top left, rgba(0,132,137,0.04), transparent 26%),
      linear-gradient(180deg, #f8fafc 0%, #f3f6fa 100%);
    overflow: visible;
  }

  .pl-container {
    width: 100%;
    max-width: var(--pb-container);
    margin: 0 auto;
    padding: 0 var(--pb-spacing-lg);
    overflow: visible;
  }

  .pl-hero {
    position: relative;
    z-index: 20;
    overflow: visible;
    margin-bottom: 22px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(226,232,240,.9);
    box-shadow: 0 12px 30px rgba(15,23,42,.05);
    backdrop-filter: blur(10px);
  }

  .pl-hero__content,
  .pl-hero--search-only,
  .pl-hero__content--search-only {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .pl-featured-section {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
  }

  .pl-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
  }

  .pl-section-head__left {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .pl-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pb-accent);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
  }

  .pl-section-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--pb-text);
    letter-spacing: -0.02em;
  }

  .pl-section-title i {
    color: #f5b042;
  }

  .pl-section-subtitle {
    margin: 0;
    color: var(--pb-text-soft);
    font-size: 13px;
    line-height: 1.6;
  }

  .pl-featured-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .pl-featured-mini {
    position: relative;
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(226,232,240,.9);
    box-shadow: 0 8px 24px rgba(15,23,42,.04);
    text-decoration: none;
    color: inherit;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    overflow: hidden;
  }

  .pl-featured-mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(15,23,42,.07);
    border-color: rgba(0,132,137,.16);
  }

  .pl-featured-mini__media {
    position: relative;
    width: 100%;
    height: 96px;
    border-radius: 14px;
    overflow: hidden;
    background: #e2e8f0;
  }

  .pl-featured-mini__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .pl-featured-mini__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
  }

  .pl-featured-mini__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .pl-featured-mini__type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(0,132,137,.07);
    color: var(--pb-accent-dark);
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
  }

  .pl-featured-mini__rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #0f172a;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
  }

  .pl-featured-mini__title {
    margin: 0;
    font-size: .97rem;
    font-weight: 800;
    color: var(--pb-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .pl-featured-mini__location {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--pb-text-soft);
    font-size: 12px;
    min-width: 0;
  }

  .pl-featured-mini__location span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .pl-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
    position: relative;
  }

  .pl-main-content {
    min-width: 0;
  }

  .pl-sidebar {
    position: sticky;
    top: 88px;
    min-width: 0;
  }

  .pl-filter-card {
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(15,23,42,.045);
    overflow: hidden;
    backdrop-filter: blur(10px);
  }

  .pl-filter-card--head {
    padding: 0;
  }

  .pl-filter-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 18px 16px;
    border-bottom: 1px solid rgba(226,232,240,.72);
  }

  .pl-filter-head__title {
    margin: 0 0 5px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 1rem;
    font-weight: 800;
    color: #162033;
  }

  .pl-filter-head__desc {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.55;
    color: #6b7a90;
  }

  .pl-mobile-drawer-close {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid #dbe4ee;
    border-radius: 12px;
    background: #fff;
    color: #20314d;
    flex: 0 0 auto;
    cursor: pointer;
  }

  .pl-filter-scroll {
    padding: 18px;
  }

  .pl-filter-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 18px;
  }

  .pl-filter-group {
    padding-top: 16px;
    margin-top: 16px;
    border-top: 1px solid rgba(226,232,240,.72);
  }

  .pl-filter-group:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .pl-filter-title {
    margin: 0 0 12px;
    font-size: .92rem;
    font-weight: 800;
    color: #1c2536;
    letter-spacing: -0.01em;
  }

  .pl-filter-input,
  .pl-price-range input,
  .pl-sort-select {
    width: 100%;
    min-height: 44px;
    border: 1px solid #dbe4ee;
    border-radius: 13px;
    padding: 0 14px;
    background: #fff;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
  }

  .pl-filter-input:focus,
  .pl-price-range input:focus,
  .pl-sort-select:focus {
    border-color: rgba(0,132,137,.42);
    box-shadow: 0 0 0 3px rgba(0,132,137,.08);
    background: #fff;
  }

  .pl-filter-option {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 38px;
    padding: 4px 0;
    font-size: 13.5px;
    color: #52627a;
    cursor: pointer;
  }

  .pl-filter-option + .pl-filter-option {
    margin-top: 4px;
  }

  .pl-filter-option input[type="radio"],
  .pl-filter-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #1f3555;
    flex: 0 0 auto;
  }

  .pl-filter-option i {
    width: 15px;
    text-align: center;
    color: #71839d;
    flex: 0 0 auto;
    font-size: 12px;
  }

  .pl-price-range {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 8px;
    align-items: center;
  }

  .pl-price-range span {
    font-weight: 700;
    color: #7b8ba4;
    font-size: 12px;
  }

  .pl-btn-sm,
  .pl-btn-ghost {
    min-height: 44px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: .18s ease;
  }

  .pl-btn-sm {
    border: none;
    background: linear-gradient(135deg, #1f3555 0%, #2c4d76 100%);
    color: #fff;
    box-shadow: 0 8px 18px rgba(31,53,85,.14);
    cursor: pointer;
  }

  .pl-btn-sm:hover {
    transform: translateY(-1px);
    filter: brightness(1.02);
    color: #fff;
  }

  .pl-btn-ghost {
    border: 1px solid #dde5ef;
    background: #fff;
    color: #64748b;
  }

  .pl-btn-ghost:hover {
    border-color: #cad6e4;
    background: #f8fbff;
    color: #334155;
  }

  .pl-filter-mobile-footer {
    display: none;
  }

  .pl-mobile-filter-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .24s ease, visibility .24s ease;
    z-index: 9997;
  }

  .pl-content-top {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
  }

  .pl-sort-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    padding: 14px 16px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(15,23,42,.04);
    backdrop-filter: blur(10px);
  }

  .pl-results-count {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 13px;
    min-height: 44px;
  }

  .pl-results-count i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(0,132,137,.08);
    color: var(--pb-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .pl-results-count strong {
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 800;
  }

  .pl-sort-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-left: auto;
  }

  .pl-sort-select-wrap {
    position: relative;
    min-width: 230px;
  }

  .pl-sort-select-wrap::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: #64748b;
    pointer-events: none;
  }

  .pl-sort-select {
    min-width: 230px;
    padding: 0 38px 0 14px;
    appearance: none;
    cursor: pointer;
    background: linear-gradient(180deg, #fff, #fbfcfd);
  }

  .pl-view-options {
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }

  .pl-view-btn,
  .pl-mobile-filter-btn {
    min-width: 42px;
    height: 42px;
    border-radius: 13px;
    border: 1px solid #dbe4ee;
    background: #fff;
    color: #61748d;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .18s ease;
  }

  .pl-view-btn:hover,
  .pl-mobile-filter-btn:hover {
    border-color: rgba(0,132,137,.24);
    color: var(--pb-accent);
    background: rgba(0,132,137,.04);
  }

  .pl-view-btn.active {
    background: #1f3555;
    border-color: #1f3555;
    color: #fff;
  }

  .pl-mobile-filter-btn {
    display: none;
    gap: 8px;
    width: auto;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 800;
    color: #1f3555;
  }

  .pl-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .pl-chip {
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(226,232,240,.9);
    color: #52627a;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(15,23,42,.03);
  }

  .pl-chip i {
    color: #1f3555;
  }

  .pl-chip--clear {
    text-decoration: none;
  }

  .pl-chip--clear:hover {
    background: #f8fbff;
    color: #1f3555;
  }

  .pl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 18px;
    align-items: stretch;
  }

  .pl-grid > * {
    min-width: 0;
    height: 100%;
  }

  .pl-grid.pl-list-view {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .pl-grid.pl-list-view > * {
    width: 100%;
  }

  .pl-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(226,232,240,.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(15,23,42,.045);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  }

  .pl-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0,132,137,.16);
    box-shadow: 0 16px 30px rgba(15,23,42,.08);
  }

  .pl-card__media-link {
    display: block;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
  }

  .pl-card__media {
    position: relative;
    height: 214px;
    background: #e2e8f0;
    overflow: hidden;
  }

  .pl-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .32s ease;
  }

  .pl-card:hover .pl-card__media img {
    transform: scale(1.03);
  }

  .pl-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,.02) 0%, rgba(15,23,42,.12) 100%);
    pointer-events: none;
    z-index: 1;
  }

  .pl-card__topbar {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
  }

  .pl-card__badges-left,
  .pl-card__badges-right {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .pl-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 27px;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    backdrop-filter: blur(10px);
  }

  .pl-card__badge--featured,
  .pl-card__badge--type {
    background: rgba(255,255,255,.94);
    color: #0f172a;
    border: 1px solid rgba(255,255,255,.82);
  }

  .pl-card__badge--direct {
    background: rgba(0,132,137,.95);
    color: #fff;
    border: 1px solid rgba(0,132,137,.95);
  }

  .pl-card__bottommeta {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 3;
  }

  .pl-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 27px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.96);
    color: #0f172a;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 5px 12px rgba(15,23,42,.07);
  }

  .pl-card__rating i {
    color: #f5b042;
    font-size: 10px;
  }

  .pl-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 0;
    padding: 15px 16px 16px;
  }

  .pl-card__title-link {
    text-decoration: none;
    color: inherit;
  }

  .pl-card__title {
    margin: 0 0 5px;
    color: #0f172a;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: color .18s ease;
    overflow-wrap: anywhere;
  }

  .pl-card__title-link:hover .pl-card__title {
    color: #008489;
  }

  .pl-card__location {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: #64748b;
    font-size: 12.5px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .pl-card__location i {
    color: #008489;
    font-size: 10px;
    flex-shrink: 0;
  }

  .pl-card__micro-highlights,
  .pl-card__signature-features,
  .pl-card__amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    min-width: 0;
  }

  .pl-card__micro-highlights {
    margin-bottom: 9px;
    max-height: 66px;
    overflow: hidden;
  }

  .pl-card__signature-features {
    margin-bottom: 9px;
    max-height: 66px;
    overflow: hidden;
  }

  .pl-card__amenities {
    margin-bottom: 10px;
    max-height: 66px;
    overflow: hidden;
  }

  .pl-card__micro-pill,
  .pl-card__feature-badge,
  .pl-card__amenity {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 26px;
    max-width: 100%;
    padding: 5px 8px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1;
    overflow-wrap: anywhere;
  }

  .pl-card__micro-pill {
    background: #f8fafc;
    border: 1px solid #e8edf4;
    color: #5b6e8c;
  }

  .pl-card__feature-badge {
    background: #eefaf3;
    border: 1px solid #d7efe1;
    color: #166534;
  }

  .pl-card__amenity {
    background: #f8fafc;
    border: 1px solid #e8edf4;
    color: #5b6e8c;
  }

  .pl-card__micro-pill i,
  .pl-card__feature-badge i,
  .pl-card__amenity i {
    font-size: 9px;
    flex-shrink: 0;
  }

  .pl-card__amenity i {
    color: #008489;
  }

  .pl-card__amenity span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .pl-card__amenity--count {
    min-width: 32px;
    justify-content: center;
    background: #e6f7f5;
    border-color: #bfe7e3;
    color: #008489;
  }

  .pl-card__desc {
    margin-bottom: 10px;
    color: #5f6f86;
    font-size: 12px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 37px;
    overflow-wrap: anywhere;
  }

  .pl-card__distance-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 11px;
    color: #64748b;
    font-size: 10.5px;
    font-weight: 700;
  }

  .pl-card__distance-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
  }

  .pl-card__distance-meta i {
    color: #008489;
    font-size: 9px;
  }

  .pl-card__footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #edf2f7;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
  }

  .pl-card__pricebox {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
  }

  .pl-card__price-label {
    color: #94a3b8;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .pl-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
    line-height: 1;
  }

  .pl-card__currency {
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
  }

  .pl-card__amount {
    color: #0f172a;
    font-size: 1.22rem;
    font-weight: 900;
    letter-spacing: -0.03em;
  }

  .pl-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1f3555 0%, #2c4d76 100%);
    color: #fff;
    font-size: 12.5px;
    font-weight: 800;
    text-decoration: none;
    border: 0;
    box-shadow: 0 8px 18px rgba(31,53,85,.14);
    transition: transform .18s ease, filter .18s ease;
  }

  .pl-card__link:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    color: #fff;
  }

  .pl-grid.pl-list-view .pl-card {
    display: grid;
    grid-template-columns: minmax(290px, 340px) minmax(0, 1fr);
    align-items: stretch;
    min-height: 300px;
  }

  .pl-grid.pl-list-view .pl-card__media-link {
    height: 100%;
  }

  .pl-grid.pl-list-view .pl-card__media {
    height: 100%;
    min-height: 300px;
  }

  .pl-grid.pl-list-view .pl-card__body {
    height: 100%;
    padding: 18px 18px 16px;
  }

  .pl-grid.pl-list-view .pl-card__desc {
    -webkit-line-clamp: 3;
    min-height: 56px;
  }

  .pl-grid.pl-list-view .pl-card__amenities {
    margin-top: auto;
  }

  .pl-grid.pl-list-view .pl-card__footer {
    margin-top: 12px;
  }

  .pl-empty {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    min-height: 280px;
    padding: 28px 24px;
    border: 1px solid rgba(226,232,240,.9);
    border-radius: 20px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 10px 24px rgba(15,23,42,.04);
  }

  .pl-empty i {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,132,137,.08);
    color: var(--pb-accent);
    font-size: 18px;
  }

  .pl-empty h3 {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.2;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
  }

  .pl-empty p {
    margin: 0;
    max-width: 520px;
    color: #64748b;
    font-size: 14px;
    line-height: 1.65;
  }

  .pl-empty__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
  }

  .pl-empty__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 15px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1f3555 0%, #2c4d76 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border: 0;
    box-shadow: 0 8px 18px rgba(31,53,85,.14);
    transition: transform .18s ease, filter .18s ease;
  }

  .pl-empty__actions a:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    color: #fff;
  }

  .pl-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.56);
    backdrop-filter: blur(8px);
  }

  .pl-modal.active {
    display: flex;
  }

  .pl-modal-content {
    position: relative;
    width: min(1120px, 100%);
    max-height: calc(100dvh - 40px);
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 28px 72px rgba(15, 23, 42, 0.24);
  }

  #quickViewContent {
    max-height: calc(100dvh - 40px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pl-modal *,
  .pl-modal *::before,
  .pl-modal *::after {
    box-sizing: border-box;
  }

  @media (max-width: 1200px) {
    .pl-featured-strip {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 1100px) {
    .pl-layout {
      grid-template-columns: 1fr;
    }

    .pl-sidebar {
      position: static;
    }
  }

  @media (max-width: 991.98px) {
    .pl-layout {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .pl-sidebar {
      position: fixed;
      inset: 0 auto 0 0;
      width: min(92vw, 390px);
      height: 100dvh;
      z-index: 9998;
      transform: translateX(-100%);
      transition: transform .28s ease;
      display: block;
      padding: 0;
      overflow: hidden;
      top: 0;
    }

    .pl-sidebar.is-open {
      transform: translateX(0);
    }

    .pl-sidebar .pl-filter-card {
      height: 100dvh;
      max-height: 100dvh;
      border-radius: 0 20px 20px 0;
      box-shadow: 20px 0 56px rgba(15, 23, 42, 0.16);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .pl-mobile-drawer-close {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .pl-filter-head {
      padding: 18px 18px 14px;
      flex: 0 0 auto;
    }

    .pl-filter-scroll {
      flex: 1 1 auto;
      min-height: 0;
      height: auto;
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
      padding: 18px;
    }

    .pl-filter-actions {
      display: none;
    }

    .pl-filter-mobile-footer {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
      border-top: 1px solid #edf2f7;
      background: rgba(255,255,255,.96);
      backdrop-filter: blur(10px);
      flex: 0 0 auto;
    }

    .pl-mobile-filter-backdrop.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .pl-mobile-filter-btn {
      display: inline-flex;
    }

    .pl-grid.pl-list-view .pl-card {
      grid-template-columns: 1fr;
      min-height: auto;
    }

    .pl-grid.pl-list-view .pl-card__media {
      min-height: 230px;
      height: 230px;
    }

    .pl-grid.pl-list-view .pl-card__body {
      padding: 16px;
    }
  }

  @media (max-width: 768px) {
    .pl-page {
      padding: 18px 0 36px;
      overflow: visible;
    }

    .pl-container {
      padding: 0 var(--pb-spacing-md);
      overflow: visible;
    }

    .pl-hero,
    .pl-hero--search-only {
      margin-bottom: 18px;
      padding: 0;
      border-radius: 0;
      background: transparent;
      border: 0;
      box-shadow: none;
      backdrop-filter: none;
      overflow: visible;
    }

    .pl-hero__content,
    .pl-hero__content--search-only {
      position: static;
      z-index: auto;
      overflow: visible;
    }

    .pl-section-head {
      align-items: flex-start;
      flex-direction: column;
    }

    .pl-featured-strip {
      display: flex;
      gap: 12px;
      overflow-x: auto;
      padding-bottom: 4px;
      scroll-snap-type: x mandatory;
    }

    .pl-featured-mini {
      min-width: 300px;
      scroll-snap-align: start;
    }

    .pl-sort-bar {
      padding: 14px;
      border-radius: 18px;
    }

    .pl-sort-controls {
      width: 100%;
      margin-left: 0;
    }

    .pl-sort-select-wrap,
    .pl-sort-select {
      width: 100%;
      min-width: 0;
    }

    .pl-mobile-filter-btn {
      display: inline-flex;
    }

    .pl-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .pl-sidebar {
      width: 100vw;
      max-width: 100vw;
    }

    .pl-sidebar .pl-filter-card {
      border-radius: 0;
    }

    .pl-active-filters {
      overflow-x: auto;
      flex-wrap: nowrap;
      padding-bottom: 2px;
      scrollbar-width: none;
    }

    .pl-active-filters::-webkit-scrollbar {
      display: none;
    }

    .pl-chip {
      white-space: nowrap;
    }

    .pl-modal {
      padding: 0;
      align-items: stretch;
      justify-content: stretch;
    }

    .pl-modal-content {
      width: 100vw;
      max-width: 100vw;
      height: 100dvh;
      max-height: 100dvh;
      border-radius: 0;
    }

    #quickViewContent {
      height: 100dvh;
      max-height: 100dvh;
    }

    .pl-empty {
      min-height: 240px;
      padding: 24px 18px;
      border-radius: 18px;
    }

    .pl-empty h3 {
      font-size: 1.25rem;
    }

    .pl-empty p {
      font-size: 13.5px;
    }
  }

  @media (max-width: 575.98px) {
    .pl-sort-controls {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
      align-items: stretch;
      width: 100%;
    }

    .pl-view-options {
      justify-content: flex-start;
    }

    .pl-filter-mobile-footer {
      grid-template-columns: 1fr 1fr;
    }
  }

  html.pl-drawer-open,
  body.pl-drawer-open {
    overflow: hidden;
    height: 100dvh;
    touch-action: none;
  }

/* =========================
   LIST VIEW FIX
   ========================= */

.pl-grid.pl-list-view {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pl-grid.pl-list-view > * {
  width: 100%;
  min-width: 0;
}

.pl-grid.pl-list-view .pl-card {
  display: grid !important;
  grid-template-columns: 340px minmax(0, 1fr);
  align-items: stretch;
  min-height: 300px;
  height: auto;
  overflow: hidden;
}

.pl-grid.pl-list-view .pl-card__media-link {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
}

.pl-grid.pl-list-view .pl-card__media {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.pl-grid.pl-list-view .pl-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  width: 100%;
  height: 100%;
  padding: 18px 18px 16px;
  overflow: hidden;
}

.pl-grid.pl-list-view .pl-card__header,
.pl-grid.pl-list-view .pl-card__micro-highlights,
.pl-grid.pl-list-view .pl-card__signature-features,
.pl-grid.pl-list-view .pl-card__distance-meta,
.pl-grid.pl-list-view .pl-card__amenities,
.pl-grid.pl-list-view .pl-card__desc,
.pl-grid.pl-list-view .pl-card__footer {
  min-width: 0;
  width: 100%;
}

.pl-grid.pl-list-view .pl-card__title,
.pl-grid.pl-list-view .pl-card__desc,
.pl-grid.pl-list-view .pl-card__location,
.pl-grid.pl-list-view .pl-card__amenity span {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.pl-grid.pl-list-view .pl-card__desc {
  -webkit-line-clamp: 3;
  min-height: 58px;
}

.pl-grid.pl-list-view .pl-card__amenities {
  margin-top: auto;
}

.pl-grid.pl-list-view .pl-card__footer {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #edf2f7;
}

/* kartı saran dış wrapper varsa onu da güvene al */
.pl-grid.pl-list-view .pl-card-wrap,
.pl-grid.pl-list-view .pl-property-card,
.pl-grid.pl-list-view .pl-grid-item {
  width: 100%;
  min-width: 0;
}

/* tablet altı yine tek kolona düşsün */
@media (max-width: 991.98px) {
  .pl-grid.pl-list-view .pl-card {
    grid-template-columns: 1fr !important;
    min-height: auto;
  }

  .pl-grid.pl-list-view .pl-card__media-link {
    height: auto;
  }

  .pl-grid.pl-list-view .pl-card__media {
    min-height: 240px;
    height: 240px;
  }

  .pl-grid.pl-list-view .pl-card__body {
    height: auto;
    padding: 16px;
  }
}


a.pl-card {
  text-decoration: none;
  color: inherit;
}

a.pl-card * {
  text-decoration: none !important;
}


/* =========================================
   DESKTOP ONLY: search dropdown > card labels
   MOBILE: filter drawer stays above search
   ========================================= */

/* kart label katmanları düşük kalsın */
.pl-card__overlay {
  z-index: 1 !important;
}

.pl-card__topbar,
.pl-card__bottommeta,
.pl-card__badge,
.pl-card__rating,
.pl-featured-mini__type,
.pl-featured-mini__rating {
  position: relative;
  z-index: 2 !important;
}

/* SADECE desktopta search dropdown öne gelsin */
@media (min-width: 992px) {
  .pl-hero,
  .pl-hero--search-only,
  .pl-hero__content,
  .pl-hero__content--search-only,
  .pl-search-scope {
    position: relative;
    z-index: 10;
    overflow: visible;
  }

  .pl-search-scope .search-container,
  .pl-search-scope .search-container--pro {
    position: relative;
    z-index: 20;
    overflow: visible;
  }

  .pl-search-scope .input-group {
    position: relative;
    z-index: 1;
  }

  .pl-search-scope .input-group.is-open {
    z-index: 3000 !important;
  }

  .pl-search-scope .dropdown,
  .pl-search-scope .destination-dropdown,
  .pl-search-scope .calendar-dropdown,
  .pl-search-scope .guest-dropdown,
  .pl-search-scope .staytype-dropdown {
    z-index: 3100 !important;
  }
}

/* mobilde search form normal katmana dönsün */
@media (max-width: 991.98px) {
  .pl-hero,
  .pl-hero--search-only,
  .pl-hero__content,
  .pl-hero__content--search-only,
  .pl-search-scope,
  .pl-search-scope .search-container,
  .pl-search-scope .search-container--pro,
  .pl-search-scope .input-group,
  .pl-search-scope .input-group.is-open,
  .pl-search-scope .dropdown,
  .pl-search-scope .destination-dropdown,
  .pl-search-scope .calendar-dropdown,
  .pl-search-scope .guest-dropdown,
  .pl-search-scope .staytype-dropdown {
    z-index: auto !important;
  }

  .pl-sidebar {
    z-index: 12000 !important;
  }

  .pl-mobile-filter-backdrop {
    z-index: 11990 !important;
  }
}


/* -----------------------------------
  PAGINATION
----------------------------------- */
.pl-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 34px 0 6px;
  padding: 18px;
}

.pl-pagination a,
.pl-pagination span {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--pb-border);
  background: #fff;
  color: var(--pb-text);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: var(--pb-shadow-sm);
  transition: all 0.18s ease;
}

.pl-pagination a:hover {
  transform: translateY(-1px);
  border-color: var(--pb-accent);
  background: var(--pb-accent-light);
  color: var(--pb-accent-dark);
  box-shadow: var(--pb-shadow-md);
}

.pl-pagination .active {
  border-color: var(--pb-accent);
  background: var(--pb-accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

@media (max-width: 768px) {
  .pl-pagination {
    gap: 6px;
    padding: 12px 4px;
    margin-top: 26px;
  }

  .pl-pagination a,
  .pl-pagination span {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }
}