.listing-hero--cities { background: linear-gradient(155deg, #eff6ff 0%, #f8fafc 55%, #faf5ff 100%); }

/* ── Cities directory grid ── */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.dest-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: #fff; border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  cursor: pointer; text-decoration: none; display: block; color: inherit;
  transition: transform .22s, box-shadow .22s;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.dest-card-img-wrap { position: relative; overflow: hidden; }
.dest-card-img-wrap img {
  width: 100%; height: 148px; object-fit: cover; display: block;
  transition: transform .35s ease;
}
.dest-card:hover .dest-card-img-wrap img { transform: scale(1.05); }

/* placeholder shown when a city has no uploaded photo — cycles through a few
   gradients so a page full of unset images doesn't look like one broken repeat */
.dest-card-img-ph {
  height: 148px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 40px; font-weight: 800; letter-spacing: 1px;
  transition: transform .35s ease;
}
.dest-card:hover .dest-card-img-ph { transform: scale(1.05); }
.dest-card-img-ph svg { width: 34px; height: 34px; opacity: .55; margin-inline-end: 4px; }

.dest-grid .dest-card:nth-of-type(6n+1) .dest-card-img-ph { background: linear-gradient(135deg, #208ee5, #6dd5fa); }
.dest-grid .dest-card:nth-of-type(6n+2) .dest-card-img-ph { background: linear-gradient(135deg, #7c3aed, #c084fc); }
.dest-grid .dest-card:nth-of-type(6n+3) .dest-card-img-ph { background: linear-gradient(135deg, #16a34a, #86efac); }
.dest-grid .dest-card:nth-of-type(6n+4) .dest-card-img-ph { background: linear-gradient(135deg, #f59e0b, #fcd34d); }
.dest-grid .dest-card:nth-of-type(6n+5) .dest-card-img-ph { background: linear-gradient(135deg, #ef4444, #fca5a5); }
.dest-grid .dest-card:nth-of-type(6n+6) .dest-card-img-ph { background: linear-gradient(135deg, #0891b2, #67e8f9); }

.dest-card-pin {
  position: absolute; top: 10px; right: 10px;
  background: rgba(245,158,11,.9); color: #1a1a2e;
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
}

.dest-card-body { padding: 14px 16px; }
.dest-card-top  { display: flex; align-items: center; justify-content: space-between; margin-bottom: 5px; gap: 6px; }
.dest-card-name { font-size: 15px; font-weight: 800; color: var(--text); }
.dest-card-ctry { font-size: 11px; color: var(--text-muted); font-weight: 600; white-space: nowrap; }
.dest-card-meta { display: flex; align-items: center; gap: 10px; font-size: 12px; flex-wrap: wrap; }
.dest-card-pgm  { color: var(--primary); font-weight: 700; }
.dest-card-price{ color: var(--green); font-weight: 700; }
.dest-card-sep  { color: var(--border); }

/* stats strip */
.cities-stats {
  display: flex; justify-content: center;
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.cities-stat { text-align: center; padding: 0 32px; border-left: 1px solid var(--border); }
.cities-stat:last-child { border-left: none; }
.cities-stat-num { font-size: 22px; font-weight: 800; color: var(--primary); line-height: 1.2; }
.cities-stat-lbl { font-size: 11px; color: var(--text-muted); font-weight: 600; margin-top: 2px; }

/* section row header */
.cities-section-hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.cities-section-hd h2 { font-size: 20px; font-weight: 800; color: var(--text); display: flex; align-items: center; gap: 8px; }
.cities-section-hd .cnt {
  font-size: 12px; color: var(--text-muted); font-weight: 600;
  background: var(--bg-gray); border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 20px;
}

/* country select */
.cities-country-select {
  padding: 7px 14px; font-size: 13px; font-weight: 600;
  color: var(--text); border-radius: 20px; border: 1.5px solid #e2e8f0;
  background: #fff; cursor: pointer; font-family: 'IBM Plex Sans Arabic', sans-serif;
}

.pagination-row { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 32px 0 0; }

/* no-results */
.no-results { text-align: center; padding: 64px 20px; }
.no-results-ico { font-size: 52px; margin-bottom: 12px; }
.no-results-ttl { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.no-results-sub { font-size: 13px; color: var(--text-muted); }

/* responsive */
@media (max-width: 900px) {
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cities-stats { flex-wrap: wrap; }
  .cities-stat  { padding: 10px 16px; border-bottom: 1px solid var(--border); width: 50%; }
  .cities-stat:nth-child(odd) { border-left: none; }
}
