  [x-cloak] { display: none !important; }

  /* ===== PAGE LAYOUT ===== */
  .pd-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 28px 32px 80px;
  }

  /* ===== BREADCRUMB ===== */
  .pd-breadcrumb { margin-bottom: 24px; overflow-x: auto; }
  .pd-breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: max-content;
    font-size: 13.5px;
  }
  .pd-breadcrumb a { color: var(--muted); transition: color .15s ease; }
  .pd-breadcrumb a:hover { color: var(--teal-deep); }
  .pd-bc-sep { color: var(--muted-2); display: inline-flex; }
  .pd-bc-current { color: #1B2A33; font-weight: 600; }

  /* ===== INTRO ===== */
  .pd-intro { margin-bottom: 28px; }
  .pd-admin-edit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1B2A33;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
    transition: opacity .15s ease;
  }
  .pd-admin-edit:hover { opacity: .85; }
  .pd-intro-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }
  .pd-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -.01em;
    color: #1B2A33;
    margin: 0 0 10px;
    line-height: 1.2;
  }
  .pd-loc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 15px;
  }
  .pd-loc svg { color: var(--teal); flex-shrink: 0; }
  .pd-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }
  .pd-badges .badge-reco,
  .pd-badges .badge-redus,
  .pd-badges .badge-reducere { position: static; }
  .pd-badge-type {
    background: var(--teal-soft);
    color: var(--teal-deep);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    border-radius: 999px;
    text-transform: uppercase;
  }

  /* ===== LAYOUT GRID ===== */
  .pd-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    gap: 28px;
    align-items: start;
    margin-bottom: 48px;
  }
  .pd-sidebar {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /* ===== GALLERY ===== */
  .pd-gallery { display: flex; flex-direction: column; gap: 12px; }
  .pd-gallery-main {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 18px;
    overflow: hidden;
    background: #d0d5d8;
    box-shadow: var(--shadow-card);
  }
  .pd-gallery-main img,
  .pd-gallery-main video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .pd-video-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--teal);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 6px 14px;
    border-radius: 999px;
  }
  .pd-gal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,.92);
    border: 1px solid var(--line);
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px -8px rgba(0,0,0,.25);
    transition: all .15s ease;
  }
  .pd-gal-arrow:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
  .pd-gal-prev { left: 16px; }
  .pd-gal-next { right: 16px; }
  .pd-gal-counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0,0,0,.45);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
  }
  .pd-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
  }
  .pd-thumb {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    border: 2px solid transparent;
    background: #d0d5d8;
    transition: border-color .15s ease;
  }
  .pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .pd-thumb:hover { border-color: var(--line); }
  .pd-thumb.is-active { border-color: var(--teal); }

  /* ===== CARDS ===== */
  .pd-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    padding: 26px;
  }
  .pd-card-heading {
    font-size: 17px;
    font-weight: 700;
    color: #1B2A33;
    margin-bottom: 16px;
  }

  /* ===== PRICE CARD ===== */
  .pd-price-wrap { text-align: center; margin-bottom: 22px; }
  .pd-price {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -.01em;
    color: var(--teal-deep);
  }
  .pd-price-old {
    color: var(--muted-2);
    text-decoration: line-through;
    font-size: 17px;
    margin-top: 2px;
  }
  .pd-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 18px 0;
    border-top: 1px solid var(--line-2);
    border-bottom: 1px solid var(--line-2);
    margin-bottom: 22px;
    text-align: center;
  }
  .pd-stat svg { color: var(--teal); margin-bottom: 6px; }
  .pd-stat-val { font-size: 17px; font-weight: 700; color: #1B2A33; }
  .pd-stat-lbl { font-size: 12px; color: var(--muted); }

  /* ===== BUTTONS ===== */
  .pd-actions { display: flex; flex-direction: column; gap: 10px; }
  .pd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: all .15s ease;
    border: 1px solid transparent;
  }
  .pd-btn:disabled { opacity: .5; cursor: not-allowed; }
  .pd-btn-sm { padding: 9px 18px; font-size: 13px; }
  .pd-btn-primary {
    background: var(--teal);
    color: #fff;
  }
  .pd-btn-primary:hover:not(:disabled) { background: var(--teal-deep); }
  .pd-btn-outline {
    background: #fff;
    border-color: var(--line);
    color: var(--ink-2);
  }
  .pd-btn-outline:hover:not(:disabled) { border-color: var(--teal); color: var(--teal-deep); }
  .pd-btn-fav svg { color: var(--teal); }
  .pd-btn-fav.is-saved svg { color: #F43F5E; }

  /* ===== AGENT CARD ===== */
  .pd-agent-row { display: flex; align-items: center; gap: 14px; }
  .pd-agent-photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
  }
  .pd-agent-name { font-weight: 700; color: #1B2A33; }
  .pd-agent-meta { font-size: 13px; color: var(--muted); }
  .pd-agent-position { font-size: 12px; color: var(--muted-2); }
  .pd-agent-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 14px;
    color: var(--ink-2);
  }
  .pd-agent-contact svg { color: var(--teal); }
  .pd-agent-bio { margin: 12px 0 0; font-size: 13.5px; color: var(--muted); line-height: 1.55; }

  /* ===== TABS ===== */
  .pd-tabs {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    margin-bottom: 48px;
  }
  .pd-tabs-nav {
    display: flex;
    gap: 6px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line-2);
    overflow-x: auto;
  }
  .pd-tabs-nav button {
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    white-space: nowrap;
    transition: all .15s ease;
  }
  .pd-tabs-nav button:hover { color: var(--teal-deep); }
  .pd-tabs-nav button.is-active {
    background: var(--teal-soft);
    color: var(--teal-deep);
  }
  .pd-tabs-body { padding: 28px; }
  .pd-tab-pane { display: flex; flex-direction: column; gap: 26px; }

  .pd-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1B2A33;
    margin: 0;
  }
  .pd-description {
    margin: 0;
    color: var(--ink-2);
    line-height: 1.7;
    white-space: pre-line;
  }

  /* ===== SPECIFICATIONS ===== */
  .pd-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
  }
  .pd-spec-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line-2);
    font-size: 14px;
  }
  .pd-spec-key { color: var(--muted); font-weight: 500; }
  .pd-spec-val { color: #1B2A33; font-weight: 600; text-align: right; }

  /* ===== FEATURES ===== */
  .pd-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .pd-feature {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 13px 16px;
    background: var(--bg-top);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #1B2A33;
  }
  .pd-feature svg { color: var(--teal); flex-shrink: 0; }

  /* ===== FLOORPLANS & DOCS ===== */
  .pd-pdf-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    background: var(--teal-soft);
    border-radius: 16px;
    padding: 26px 28px;
  }
  .pd-pdf-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1B2A33;
    margin: 0 0 8px;
  }
  .pd-pdf-info p { margin: 0 0 18px; color: var(--ink-2); font-size: 14px; max-width: 560px; }
  .pd-pdf-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .pd-pdf-icon { color: var(--teal); opacity: .45; flex-shrink: 0; }

  .pd-floorplans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .pd-floorplan {
    background: var(--bg-top);
    border-radius: 14px;
    padding: 14px;
  }
  .pd-floorplan img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
    display: block;
  }
  .pd-floorplan h4 { margin: 0 0 8px; font-size: 15px; color: #1B2A33; }
  .pd-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--teal-deep);
    font-size: 13.5px;
    font-weight: 600;
  }
  .pd-link:hover { text-decoration: underline; }

  .pd-docs { display: flex; flex-direction: column; gap: 12px; }
  .pd-doc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 15px 18px;
    background: var(--bg-top);
    border-radius: 12px;
  }
  .pd-doc-info { display: flex; align-items: center; gap: 13px; }
  .pd-doc-info svg { color: var(--teal); flex-shrink: 0; }
  .pd-doc-title { font-weight: 600; color: #1B2A33; font-size: 14px; }
  .pd-doc-meta { font-size: 12.5px; color: var(--muted); }

  /* ===== REVIEWS ===== */
  .pd-rating-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    background: var(--bg-top);
    border-radius: 16px;
    padding: 24px 28px;
  }
  .pd-rating-score {
    font-size: 42px;
    font-weight: 800;
    color: #1B2A33;
    line-height: 1;
    margin-bottom: 8px;
  }
  .pd-stars { display: inline-flex; gap: 2px; margin-bottom: 6px; }
  .pd-star { color: #D1D5DB; font-size: 18px; line-height: 1; }
  .pd-star.is-full { color: #FBBF24; }
  .pd-star.is-half {
    background: linear-gradient(90deg, #FBBF24 50%, #D1D5DB 50%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .pd-rating-count { font-size: 13.5px; color: var(--muted); }
  .pd-rating-bars { display: flex; flex-direction: column; gap: 7px; min-width: 260px; }
  .pd-rating-bar-row { display: flex; align-items: center; gap: 10px; font-size: 13px; }
  .pd-bar-lbl { width: 28px; color: var(--ink-2); }
  .pd-bar-track {
    flex: 1;
    height: 8px;
    background: var(--line);
    border-radius: 999px;
    overflow: hidden;
  }
  .pd-bar-fill { height: 100%; background: #FBBF24; border-radius: 999px; }
  .pd-bar-count { width: 24px; color: var(--muted); text-align: right; }

  .pd-review-form {
    background: var(--bg-top);
    border-radius: 16px;
    padding: 24px 28px;
  }
  .pd-star-picker { display: flex; align-items: center; gap: 4px; }
  .pd-star-picker button {
    font-size: 26px;
    color: #D1D5DB;
    padding: 0 2px;
    transition: color .12s ease;
    line-height: 1;
  }
  .pd-star-picker button:hover,
  .pd-star-picker button.is-on { color: #FBBF24; }
  .pd-star-lbl { margin-left: 8px; font-size: 13px; color: var(--muted); }

  .pd-reviews-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 6px;
  }
  .pd-reviews-toolbar .pd-card-heading { margin-bottom: 0; }
  .pd-select {
    font-family: inherit;
    font-size: 13.5px;
    color: var(--ink-2);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 9px 12px;
    background: #fff;
  }
  .pd-review {
    padding: 20px 0;
    border-bottom: 1px solid var(--line-2);
  }
  .pd-review:last-child { border-bottom: none; }
  .pd-review-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
  }
  .pd-review-author { display: flex; gap: 12px; }
  .pd-review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .pd-review-name { font-weight: 700; color: #1B2A33; font-size: 14.5px; }
  .pd-review-stars { display: inline-flex; align-items: center; gap: 2px; }
  .pd-review-stars .pd-star { font-size: 14px; }
  .pd-badge-verified {
    margin-left: 8px;
    background: #D1FAE5;
    color: #065F46;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
  }
  .pd-review-date { font-size: 12.5px; color: var(--muted-2); white-space: nowrap; }
  .pd-review-text { margin: 0; color: var(--ink-2); font-size: 14px; line-height: 1.65; }
  .pd-load-more { text-align: center; margin-top: 18px; }

  /* ===== EMPTY STATES ===== */
  .pd-empty { text-align: center; padding: 40px 20px; color: var(--muted); }
  .pd-empty-icon { font-size: 38px; margin-bottom: 12px; }
  .pd-empty p { margin: 0; }
  .pd-empty-sub { font-size: 13px; color: var(--muted-2); margin-top: 6px !important; }

  /* ===== FORMS ===== */
  .pd-form { display: flex; flex-direction: column; gap: 16px; }
  .pd-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .pd-field { display: flex; flex-direction: column; gap: 5px; }
  .pd-label { font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
  .pd-field input,
  .pd-field select,
  .pd-field textarea {
    font-family: inherit;
    font-size: 14px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 14px;
    background: #fff;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
    width: 100%;
  }
  .pd-field input:focus,
  .pd-field select:focus,
  .pd-field textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(24,200,248,.15);
  }
  .pd-field .has-error { border-color: #F87171; }
  .pd-field-error { margin: 0; font-size: 12.5px; color: #DC2626; }
  .pd-field textarea { resize: vertical; }

  /* ===== ALERTS ===== */
  .pd-alert {
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
  }
  .pd-alert-success {
    background: #ECFDF5;
    border: 1px solid #A7F3D0;
    color: #065F46;
  }
  .pd-alert-error {
    background: #FEF2F2;
    border: 1px solid #FECACA;
    color: #991B1B;
  }
  .pd-alert-detail { margin: 10px 0 14px; font-size: 13.5px; }
  .pd-alert-detail p { margin: 3px 0; }

  /* ===== MAP ===== */
  .pd-map {
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow-card);
    overflow: hidden;
  }
  .pd-map-head { padding: 24px 28px; border-bottom: 1px solid var(--line-2); }
  .pd-map-address { margin: 6px 0 0; color: var(--muted); font-size: 14px; }
  .pd-map-frame { height: 380px; }

  /* ===== MODAL ===== */
  .pd-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,40,55,.55);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(3px);
  }
  .pd-modal {
    background: #fff;
    border-radius: 18px;
    max-width: 460px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 26px;
  }
  .pd-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .pd-modal-head h3 { margin: 0; font-size: 19px; font-weight: 700; color: #1B2A33; }
  .pd-modal-close { color: var(--muted-2); display: inline-flex; transition: color .15s ease; }
  .pd-modal-close:hover { color: var(--ink); }
  .pd-modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* ===== TOASTS ===== */
  .pd-toasts {
    position: fixed;
    top: 90px;
    right: 16px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .pd-toast {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 13.5px;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 12px 28px -10px rgba(0,0,0,.35);
    max-width: 340px;
    transform: translateX(120%);
    transition: transform .3s ease;
  }
  .pd-toast.is-visible { transform: translateX(0); }
  .pd-toast button { color: rgba(255,255,255,.8); display: inline-flex; }
  .pd-toast button:hover { color: #fff; }
  .pd-toast-success { background: #10B981; }
  .pd-toast-error { background: #EF4444; }
  .pd-toast-warning { background: #F59E0B; }
  .pd-toast-info { background: var(--teal-deep); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1024px) {
    .pd-layout { grid-template-columns: 1fr; }
    .pd-sidebar { position: static; }
    .pd-features-grid,
    .pd-floorplans-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 640px) {
    .pd-main { padding: 20px 18px 60px; }
    .pd-title { font-size: 26px; }
    .pd-thumbs { grid-template-columns: repeat(4, 1fr); }
    .pd-specs-grid,
    .pd-features-grid,
    .pd-floorplans-grid,
    .pd-form-row { grid-template-columns: 1fr; }
    .pd-tabs-body { padding: 20px 18px; }
    .pd-pdf-banner { flex-direction: column; align-items: flex-start; }
    .pd-pdf-icon { display: none; }
    .pd-rating-summary { flex-direction: column; align-items: flex-start; }
    .pd-rating-bars { min-width: 100%; }
    .pd-gal-arrow { width: 38px; height: 38px; }
  }

/* ===== PROPERTY LISTINGS NEW (pln-*) ===== */

.pln-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 32px 80px;
  background: #f7f8fa;
  min-height: 100vh;
}

.pln-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 20px;
}
.pln-breadcrumb a { color: #6b7280; text-decoration: none; }
.pln-breadcrumb a:hover { color: var(--teal, #18C8F8); }
.pln-breadcrumb span { color: #374151; font-weight: 600; }

.pln-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}
.pln-title {
  font-size: 32px;
  font-weight: 700;
  color: #1B2A33;
  margin: 0;
}
.pln-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.pln-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

/* SIDEBAR */
.pln-sidebar-inner {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8ecf0;
  padding: 24px;
  position: sticky;
  top: 24px;
}

.pln-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f2f5;
}
.pln-sidebar-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: #1B2A33;
}
.pln-clear-btn {
  background: none;
  border: none;
  color: var(--teal, #18C8F8);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
}
.pln-clear-btn:hover { text-decoration: underline; }

.pln-filter-group {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f2f5;
}
.pln-filter-group:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

.pln-filter-label {
  display: block;
  font-weight: 600;
  font-size: 13.5px;
  color: #1B2A33;
  margin-bottom: 12px;
}

/* Select */
.pln-select-wrap {
  position: relative;
}
.pln-select {
  width: 100%;
  appearance: none;
  background: #f7f8fa;
  border: 1px solid #e4e7eb;
  border-radius: 10px;
  padding: 10px 36px 10px 14px;
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  outline: none;
  transition: border-color .15s;
}
.pln-select:focus { border-color: var(--teal, #18C8F8); }
.pln-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #9ca3af;
}

/* Price inputs */
.pln-price-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.pln-price-input-wrap {
  position: relative;
}
.pln-price-currency {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: #9ca3af;
}
.pln-price-input {
  width: 100%;
  padding: 9px 8px 9px 22px;
  border: 1px solid #e4e7eb;
  border-radius: 10px;
  font-size: 13px;
  color: #374151;
  background: #f7f8fa;
  outline: none;
  transition: border-color .15s;
}
.pln-price-input:focus { border-color: var(--teal, #18C8F8); }

/* Range slider */
.pln-range-wrap {
  position: relative;
  height: 32px;
  margin-bottom: 6px;
}
.pln-range-track {
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 4px;
  background: #e4e7eb;
  border-radius: 2px;
}
.pln-range-fill {
  position: absolute;
  top: 0;
  height: 100%;
  background: var(--teal, #18C8F8);
  border-radius: 2px;
}
.pln-range {
  position: absolute;
  top: 6px;
  width: 100%;
  height: 20px;
  background: transparent;
  appearance: none;
  pointer-events: none;
}
.pln-range::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--teal, #18C8F8);
  cursor: pointer;
  pointer-events: all;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.pln-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

/* Checkboxes */
.pln-checkboxes { display: flex; flex-direction: column; gap: 10px; }
.pln-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: #374151;
  cursor: pointer;
}
.pln-checkbox {
  width: 16px;
  height: 16px;
  accent-color: var(--teal, #18C8F8);
  cursor: pointer;
  flex-shrink: 0;
}
.pln-count { color: #9ca3af; font-size: 12px; }
.pln-reset-rooms {
  background: none;
  border: none;
  color: var(--teal, #18C8F8);
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  margin-top: 4px;
}

/* CONTENT */
.pln-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8ecf0;
  padding: 14px 20px;
  margin-bottom: 20px;
}
.pln-results-count { font-size: 14px; color: #6b7280; }
.pln-sort-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pln-sort-label { font-size: 14px; color: #6b7280; white-space: nowrap; }
.pln-sort-select-wrap { width: 200px; }
.pln-sort-select { padding: 8px 36px 8px 12px; }

/* Grid */
.pln-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  transition: opacity .2s;
}
.pln-loading { opacity: .5; }

/* Card */
.pln-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8ecf0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.pln-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.10);
  transform: translateY(-2px);
  border-color: var(--teal, #18C8F8);
}

.pln-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f0f2f5;
}
.pln-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.pln-card:hover .pln-card-image img { transform: scale(1.04); }
.pln-card-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8ecf0 0%, #d1d9e0 100%);
}

/* Badges */
.pln-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 5px 12px;
  border-radius: 20px;
  color: #fff;
}
.pln-badge-recommended { background: #f97316; }
.pln-badge-new { background: #16a34a; }

.pln-photo-count {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
}

.pln-price-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #fff;
  color: #1B2A33;
  font-size: 17px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

/* Card body */
.pln-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pln-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #1B2A33;
  margin: 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pln-card-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}
.pln-card-stats {
  display: flex;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid #f0f2f5;
  border-bottom: 1px solid #f0f2f5;
  margin: 4px 0;
}
.pln-stat {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #374151;
  font-weight: 500;
}
.pln-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.pln-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: #1B2A33;
  background: #f7f8fa;
  border: 1px solid #e4e7eb;
  border-radius: 8px;
  padding: 8px 16px;
  transition: background .15s, border-color .15s;
}
.pln-card:hover .pln-card-btn {
  background: var(--teal, #18C8F8);
  border-color: var(--teal, #18C8F8);
  color: #fff;
}
.pln-heart {
  background: none;
  border: 1px solid #e4e7eb;
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  color: #9ca3af;
  display: flex;
  align-items: center;
  transition: border-color .15s, color .15s;
}
.pln-heart:hover { border-color: #ef4444; color: #ef4444; }

/* Empty / load more */
.pln-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: #6b7280;
}
.pln-clear-btn-lg {
  margin-top: 16px;
  background: var(--teal, #18C8F8);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.pln-load-more {
  text-align: center;
  margin-top: 40px;
}
.pln-load-more-btn {
  background: #fff;
  border: 1.5px solid #e4e7eb;
  border-radius: 12px;
  padding: 12px 40px;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.pln-load-more-btn:hover { border-color: var(--teal, #18C8F8); color: var(--teal, #18C8F8); }

/* Responsive */
@media (max-width: 1024px) {
  .pln-layout { grid-template-columns: 240px 1fr; }
  .pln-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pln-wrap { padding: 16px 16px 60px; }
  .pln-layout { grid-template-columns: 1fr; }
  .pln-sidebar-inner { position: static; }
  .pln-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pln-heading { flex-direction: column; gap: 4px; }
}
@media (max-width: 480px) {
  .pln-grid { grid-template-columns: 1fr; }
}
