  
    /* ─── LISTING HERO ─── */
    .listing-hero {
      background: #F5F0E8;
      border-bottom: 1px solid var(--c-border);
      padding: 104px 0 var(--sp-10);
      position: relative;
      overflow: hidden;
    }
    .listing-hero::before {
      content: '';
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 45%;
      background-image: url('../images/unsplash-1507525428034-b723cf961d3e-w900-q60.jpg');
      background-size: cover;
      background-position: center;
      opacity: 0.25;
      mask-image: linear-gradient(to left, rgba(0,0,0,0.6), transparent);
      -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.6), transparent);
    }
    .listing-hero__inner { position: relative; }
    .listing-hero__breadcrumb {
      display: flex;
      align-items: center;
      gap: var(--sp-2);
      font-size: var(--t-sm);
      color: var(--c-muted);
      margin-bottom: var(--sp-4);
      min-width: 0;
      flex-wrap: wrap;
    }
    .listing-hero__breadcrumb a { color: var(--c-muted); transition: color var(--dur-fast); }
    .listing-hero__breadcrumb a:hover { color: var(--c-gold); }
    .listing-hero__breadcrumb span { color: var(--c-placeholder); }
    .listing-hero__title {
      font-family: var(--font-display);
      font-size: var(--t-h1);
      font-weight: 700;
      color: var(--c-midnight);
      margin-bottom: var(--sp-2);
      line-height: 1.1;
      overflow-wrap: anywhere;
      word-break: normal;
    }
    .listing-hero__meta {
      font-size: var(--t-sm);
      color: var(--c-muted);
      display: flex;
      align-items: center;
      gap: var(--sp-4);
      flex-wrap: wrap;
    }
    .listing-hero__count { color: var(--c-navy); font-weight: 700; }

    /* ─── TYPE TABS ─── */
    .type-tabs {
      background: white;
      border-bottom: 1px solid var(--c-border);
      position: sticky;
      top: 76px;
      z-index: var(--z-sticky);
    }
    .type-tabs__inner {
      display: flex;
      gap: 0;
      overflow-x: auto;
      scrollbar-width: none;
    }
    .type-tabs__inner::-webkit-scrollbar { display: none; }
    .type-tab {
      display: flex;
      align-items: center;
      gap: var(--sp-2);
      padding: var(--sp-4) var(--sp-6);
      font-size: var(--t-sm);
      font-weight: 600;
      color: var(--c-muted);
      border-bottom: 3px solid transparent;
      white-space: nowrap;
      cursor: pointer;
      transition: all var(--dur-fast);
      margin-bottom: -1px;
      background: none;
      border-left: none;
      border-right: none;
      border-top: none;
    }
    .type-tab.active { color: var(--c-midnight); border-bottom-color: var(--c-gold); }
    .type-tab:hover:not(.active) { color: var(--c-text); background: var(--c-bg); }
    .type-tab__count {
      background: var(--c-bg);
      border-radius: var(--r-full);
      padding: 2px 8px;
      font-size: var(--t-xs);
      font-weight: 700;
    }
    .type-tab.active .type-tab__count { background: var(--c-gold-pale); color: var(--c-gold); }

    /* ─── LAYOUT ─── */
    .listing-layout {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: var(--sp-8);
      padding: var(--sp-8) 0 var(--sp-20);
      align-items: start;
    }

    /* ─── SIDEBAR ─── */
    .listing__sidebar {
      position: sticky;
      top: 140px;
      background: white;
      border-radius: var(--r-xl);
      border: 1px solid var(--c-border);
      overflow: hidden;
    }
    .sidebar__header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: var(--sp-5) var(--sp-6);
      border-bottom: 1px solid var(--c-border);
    }
    .sidebar__title { font-weight: 700; font-size: 0.9375rem; }
    .sidebar__clear {
      font-size: var(--t-xs);
      font-weight: 600;
      color: var(--c-gold);
      cursor: pointer;
      background: none;
      border: none;
    }
    .sidebar__clear:hover { color: var(--c-gold-light); }
    .filter-section { padding: var(--sp-5) var(--sp-6); border-bottom: 1px solid var(--c-border); }
    .filter-section:last-child { border-bottom: none; }
    .filter-section__title {
      font-size: var(--t-sm);
      font-weight: 700;
      color: var(--c-midnight);
      margin-bottom: var(--sp-4);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .filter-section__toggle { cursor: pointer; font-size: 0.75rem; color: var(--c-muted); }

    /* Date range — stack vertically (sidebar too narrow for side-by-side date inputs) */
    .date-input-grid { display: flex; flex-direction: column; gap: var(--sp-3); }
    .date-input-field { display: flex; flex-direction: column; gap: 4px; }
    .date-input-field > label, .date-input-field > .date-label {
      font-size: 0.6875rem;
      font-weight: 700;
      color: var(--c-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .date-input {
      height: 40px;
      border: 1.5px solid var(--c-border);
      border-radius: var(--r-md);
      padding: 0 var(--sp-3);
      font-size: var(--t-sm);
      width: 100%;
      color: var(--c-text);
      font-family: inherit;
      background: white;
    }
    .date-input:focus { border-color: var(--c-gold); outline: none; box-shadow: 0 0 0 3px rgba(184,134,11,0.10); }

    /* Guest filter (Adults / Children / Infants) */
    .guest-filter { display: flex; flex-direction: column; gap: var(--sp-1); }
    .guest-filter-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--sp-2);
      padding: var(--sp-3) 0;
      border-bottom: 1px solid var(--c-border);
    }
    .guest-filter-row:last-child { border-bottom: none; }
    .guest-filter-row__label { display: flex; flex-direction: column; }
    .guest-filter-row__label strong { font-weight: 700; font-size: var(--t-sm); color: var(--c-text); }
    .guest-filter-row__label span { font-size: var(--t-xs); color: var(--c-muted); margin-top: 2px; }

    /* Checkboxes */
    .filter-options { display: flex; flex-direction: column; gap: var(--sp-3); }
    .filter-option {
      display: flex;
      align-items: center;
      gap: var(--sp-3);
      cursor: pointer;
      font-size: var(--t-sm);
      color: var(--c-text);
    }
    .filter-checkbox {
      width: 18px;
      height: 18px;
      border: 2px solid var(--c-border);
      border-radius: 4px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all var(--dur-fast);
      background: white;
      cursor: pointer;
    }
    .filter-option input[type="checkbox"] { display: none; }
    .filter-option input[type="checkbox"]:checked + .filter-checkbox {
      background: var(--c-gold);
      border-color: var(--c-gold);
    }
    .filter-option input[type="checkbox"]:checked + .filter-checkbox::after {
      content: '✓';
      color: white;
      font-size: 11px;
      font-weight: 900;
    }
    .filter-option.is-disabled {
      opacity: 0.45;
      cursor: not-allowed;
    }
    .filter-option.is-disabled .filter-checkbox {
      cursor: not-allowed;
      background: var(--c-bg);
    }
    .filter-count { margin-left: auto; font-size: var(--t-xs); color: var(--c-placeholder); }

    /* Price range */
    .price-range { padding: var(--sp-2) 0; }
    .price-range-display {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: var(--sp-3);
      margin-bottom: var(--sp-3);
      font-size: var(--t-sm);
      font-weight: 700;
      color: var(--c-midnight);
      line-height: 1.25;
    }
    .price-range-display__min,
    .price-range-display__max {
      min-width: 0;
      overflow-wrap: anywhere;
    }
    .price-range-display__max {
      color: var(--c-gold);
      text-align: right;
    }
    .price-slider { width: 100%; height: 4px; background: var(--c-border); border-radius: var(--r-full); appearance: none; cursor: pointer; }
    .price-slider::-webkit-slider-thumb { width: 18px; height: 18px; background: var(--c-gold); border-radius: 50%; appearance: none; box-shadow: var(--shadow-md); }

    /* Stars filter */
    .star-options { display: flex; flex-direction: column; gap: var(--sp-2); }
    .star-option {
      display: flex;
      align-items: center;
      gap: var(--sp-3);
      cursor: pointer;
      padding: var(--sp-2) var(--sp-3);
      border-radius: var(--r-md);
      transition: background var(--dur-fast);
    }
    .star-option:hover, .star-option.active { background: var(--c-gold-pale); }
    .star-option.active { border: 1.5px solid rgba(202,138,4,0.3); }
    .star-option.is-disabled {
      opacity: 0.45;
      cursor: not-allowed;
      background: transparent;
    }
    .star-option.is-disabled:hover { background: transparent; }

    /* Apply btn */
    .sidebar__apply {
      padding: var(--sp-4) var(--sp-6);
      background: var(--c-bg);
    }
    .sidebar__apply .btn { width: 100%; }

    /* ─── MAIN CONTENT ─── */
    .listing__main {}
    .listing-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: var(--sp-5);
      flex-wrap: wrap;
      gap: var(--sp-4);
    }
    .listing-topbar__result {
      font-size: var(--t-sm);
      color: var(--c-muted);
    }
    .listing-topbar__result strong { color: var(--c-midnight); font-weight: 700; }
    .listing-topbar__right {
      display: flex;
      align-items: center;
      gap: var(--sp-3);
    }
    .sort-select {
      height: 40px;
      border: 1.5px solid var(--c-border);
      border-radius: var(--r-md);
      padding: 0 var(--sp-8) 0 var(--sp-4);
      font-size: var(--t-sm);
      color: var(--c-text);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 10px center;
      appearance: none;
      cursor: pointer;
    }
    .view-btns { display: flex; border: 1.5px solid var(--c-border); border-radius: var(--r-md); overflow: hidden; }
    .view-btn {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.875rem;
      color: var(--c-muted);
      cursor: pointer;
      border: none;
      background: white;
      transition: all var(--dur-fast);
    }
    .view-btn.active, .view-btn:hover { background: var(--c-gold-pale); color: var(--c-gold); }

    /* Active filters */
    .active-filters {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sp-2);
      margin-bottom: var(--sp-5);
    }
    .active-filter {
      display: flex;
      align-items: center;
      gap: var(--sp-1);
      padding: 4px 12px;
      background: var(--c-gold-pale);
      border: 1.5px solid rgba(202,138,4,0.3);
      border-radius: var(--r-full);
      font-size: var(--t-xs);
      font-weight: 600;
      color: var(--c-gold);
      text-decoration: none;
    }
    .active-filter--clear { background: white; border-color: var(--c-border); color: var(--c-muted); }
    .active-filter__remove { cursor: pointer; margin-left: 2px; color: var(--c-muted); font-weight: 400; }
    .active-filter__remove:hover { color: var(--c-error); }
    .clear-all-btn {
      font-size: var(--t-xs);
      font-weight: 600;
      color: var(--c-muted);
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px var(--sp-3);
    }
    .clear-all-btn:hover { color: var(--c-error); }

    /* Compare bar */
    .compare-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--c-midnight);
      border-top: 2px solid var(--c-gold);
      padding: var(--sp-4) var(--sp-6);
      display: none;
      align-items: center;
      justify-content: space-between;
      z-index: var(--z-sticky);
      gap: var(--sp-4);
    }
    .compare-bar__text { color: white; font-size: var(--t-sm); }
    .compare-bar__count { color: var(--c-gold); font-weight: 700; }

    /* Tour grid */
    .tour-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--sp-5);
    }
    .tour-grid--list {
      grid-template-columns: 1fr;
    }
    .tour-grid--list .tour-card {
      display: grid;
      grid-template-columns: 280px 1fr;
    }
    .tour-grid--list .tour-card__img { height: auto; min-height: 200px; }

    /* Pagination */
    .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--sp-2);
      margin-top: var(--sp-10);
    }
    .page-btn {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--r-md);
      font-size: var(--t-sm);
      font-weight: 600;
      cursor: pointer;
      border: 1.5px solid var(--c-border);
      background: white;
      color: var(--c-muted);
      transition: all var(--dur-fast);
    }
    .page-btn.active { background: var(--c-gold); border-color: var(--c-gold); color: #0C0A09; }
    .page-btn:hover:not(.active):not(.page-btn--nav) { border-color: var(--c-gold); color: var(--c-gold); }
    .page-btn--nav { width: auto; padding: 0 var(--sp-4); gap: var(--sp-1); }

    /* Promo strip */
    .promo-strip {
      background: linear-gradient(135deg, var(--c-midnight), var(--c-navy));
      border-radius: var(--r-lg);
      padding: var(--sp-5) var(--sp-6);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--sp-4);
      margin-bottom: var(--sp-5);
    }
    .promo-strip__text { color: rgba(255,255,255,0.85); font-size: var(--t-sm); }
    .promo-strip__text strong { color: var(--c-gold); }

    /* Mobile filter toggle */
    .filter-toggle-btn {
      display: none;
      align-items: center;
      gap: var(--sp-2);
      height: 44px;
      padding: 0 var(--sp-5);
      border: 1.5px solid var(--c-border);
      border-radius: var(--r-full);
      font-size: var(--t-sm);
      font-weight: 600;
      color: var(--c-text);
      background: white;
      cursor: pointer;
      white-space: nowrap;
    }

    /* Mobile overlay for sidebar */
    .sidebar-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 299;
    }

    @media (max-width: 1180px) {
      .listing-hero__title {
        font-size: clamp(2rem, 4.8vw, 2.75rem);
        line-height: 1.1;
        overflow-wrap: normal;
      }
    }
    @media (max-width: 1024px) {
      .listing-layout { grid-template-columns: 1fr; }
      .listing__sidebar {
        position: fixed;
        left: -100%;
        top: 0;
        bottom: 0;
        width: 320px;
        max-width: 90vw;
        overflow-y: auto;
        z-index: 300;
        transition: left var(--dur-slow) var(--ease-out);
        border-radius: 0;
      }
      .listing__sidebar.is-open { left: 0; }
      .filter-toggle-btn { display: flex; }
      .tour-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .listing-hero { padding: 86px 0 var(--sp-6); }
      .listing-hero__breadcrumb,
      .listing-hero__meta {
        gap: var(--sp-2);
        overflow-wrap: anywhere;
      }
      .listing-hero__title {
        font-size: clamp(1.75rem, 8vw, 2.15rem);
        line-height: 1.08;
        overflow-wrap: normal;
        max-width: 100%;
      }
      .listing-hero__inner,
      .listing-toolbar,
      .listing-results__header {
        min-width: 0;
        overflow: hidden;
      }
      .type-tabs {
        top: 64px;
      }
      .type-tab {
        padding: var(--sp-3) var(--sp-4);
      }
      .tour-grid { grid-template-columns: 1fr; }
      .tour-grid--list .tour-card { grid-template-columns: 1fr; }
      .listing-layout {
        padding-top: var(--sp-5);
      }
    }
  
