/* ============================================================
   city-list-styles.css — Page ville (liste produits) v2
   Basé sur la maquette Page_liste (5).html
   ============================================================ */

:root {
  --red: #D01F3C;
  --red-bg: #fff0f2;
  --ink: #1a1a2e;
  --muted: #74748a;
  --border: #eaeaf2;
  --white: #fff;
  --off: #f6f6fa;
  --gold: #f5a623;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--ink); -webkit-font-smoothing: antialiased; }

/* ── TOPBAR ── */
.cl-topbar {
  background: var(--ink); color: rgba(255,255,255,.45);
  font-size: 11.5px; padding: 6px 48px;
  display: flex; justify-content: space-between; align-items: center;
}
.cl-topbar a { color: inherit; text-decoration: none; transition: color .15s; }
.cl-topbar a:hover { color: #fff; }
.cl-topbar strong { color: rgba(255,255,255,.85); }

/* ── NAV ── */
.cl-nav {
  background: var(--white); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  position: sticky; top: 0; z-index: 300; gap: 28px;
}
.cl-logo { display: flex; align-items: center; gap: 9px; text-decoration: none; flex-shrink: 0; }
.cl-logo-mark {
  width: 32px; height: 32px; background: var(--red);
  border-radius: 50% 50% 50% 0; display: grid; place-items: center;
  color: #fff; font-size: 14px;
}
.cl-logo-name { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 17px; color: var(--ink); line-height: 1; }
.cl-logo-name em { color: var(--red); font-style: normal; }
.cl-logo-sub { font-size: 9px; color: var(--muted); letter-spacing: 1.6px; text-transform: uppercase; margin-top: 2px; }
.cl-nav-search { flex: 1; max-width: 380px; position: relative; }
.cl-nav-search input {
  width: 100%; padding: 9px 40px 9px 14px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 13px; font-family: 'Inter', sans-serif;
  color: var(--ink); background: var(--off); outline: none; transition: border-color .2s;
}
.cl-nav-search input:focus { border-color: var(--red); background: #fff; }
.cl-nav-search button { position: absolute; right: 0; top: 0; bottom: 0; width: 40px; background: none; border: none; cursor: pointer; color: var(--muted); font-size: 15px; }
.cl-nav-links { display: flex; gap: 2px; list-style: none; align-items: center; flex-shrink: 0; }
.cl-nav-links a {
  color: var(--muted); font-size: 13px; font-weight: 500; text-decoration: none;
  padding: 7px 10px; border-radius: 8px; transition: color .18s, background .18s; white-space: nowrap;
}
.cl-nav-links a:hover { color: var(--ink); background: var(--off); }
.cl-nav-links .cl-cart { background: var(--red); color: #fff !important; padding: 8px 15px; border-radius: 9px; font-weight: 600; }
.cl-nav-links .cl-cart:hover { background: #b01830 !important; }

/* ── HERO ── */
.cl-hero {
  position: relative; height: 240px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.cl-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.cl-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,15,30,.80) 0%, rgba(15,15,30,.2) 60%, transparent 100%);
}
.cl-hero-content { position: relative; z-index: 2; padding: 0 56px 28px; }
.cl-breadcrumb { font-size: 11px; color: rgba(255,255,255,.45); margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.cl-breadcrumb a { color: rgba(255,255,255,.45); text-decoration: none; }
.cl-breadcrumb a:hover { color: rgba(255,255,255,.8); }
.cl-breadcrumb span { color: rgba(255,255,255,.22); }
.cl-hero-title { font-family: 'DM Serif Display', serif; font-weight: 400; font-size: 48px; color: #fff; line-height: 1; letter-spacing: -1.5px; margin-bottom: 10px; }
.cl-hero-stats { display: flex; gap: 20px; }
.cl-hero-stat { font-size: 12.5px; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 5px; }
.cl-hero-stat strong { color: #fff; font-weight: 600; }
.cl-hero-sep { color: rgba(255,255,255,.2); }

/* ── TABS ── */
.cl-tabs-row {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 0 56px; display: flex; align-items: center;
}
.cl-tab-btn {
  padding: 14px 22px; font-size: 13.5px; font-weight: 500;
  color: var(--muted); cursor: pointer; border: none; background: none;
  font-family: 'Inter', sans-serif; border-bottom: 2.5px solid transparent;
  transition: color .18s, border-color .18s; white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
}
.cl-tab-btn.active { color: var(--red); border-bottom-color: var(--red); font-weight: 600; }
.cl-tab-btn:hover:not(.active) { color: var(--ink); }
.cl-tab-count { font-size: 11px; color: var(--muted); font-weight: 400; }

/* ── FILTERS TOP (sticky chips bar) ── */
.cl-filters-top {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 64px; z-index: 200;
  padding: 14px 56px;
  display: flex; flex-direction: column; gap: 10px;
}
.cl-filters-topline {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.cl-results-title-top {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: 22px; color: var(--ink); letter-spacing: -.5px;
}
.cl-results-count-top { font-size: 12.5px; color: var(--muted); margin-left: 10px; font-weight: 400; }
.cl-filters-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cl-email-btn {
  display: flex; align-items: center; gap: 6px; padding: 8px 16px;
  border: 1.5px solid var(--border); border-radius: 9px;
  font-size: 12.5px; font-family: 'Inter', sans-serif; font-weight: 500;
  cursor: pointer; color: var(--ink); background: #fff; transition: all .18s;
}
.cl-email-btn:hover { border-color: var(--red); color: var(--red); }
.cl-price-toggle {
  display: flex; background: var(--off); border: 1.5px solid var(--border);
  border-radius: 100px; overflow: hidden;
}
.cl-price-toggle button {
  padding: 7px 16px; font-size: 12px; font-family: 'Inter', sans-serif;
  font-weight: 500; border: none; background: none; cursor: pointer;
  color: var(--muted); transition: all .15s; white-space: nowrap;
}
.cl-price-toggle button.active { background: var(--red); color: #fff; border-radius: 100px; }

/* ── PAGE LAYOUT : sidebar gauche + contenu ── */
.cl-page {
  display: grid;
  grid-template-columns: 252px 1fr;
  max-width: 1480px; margin: 0 auto;
  padding: 0 40px 100px;
  gap: 44px;
}

/* ══ SIDEBAR sticky ══ */
.cl-sidebar {
  padding: 20px 0 28px;
  position: sticky;
  top: 130px;
  height: fit-content;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  scrollbar-width: none;
}
.cl-sidebar::-webkit-scrollbar { display: none; }

/* Keyword search in sidebar */
.cl-sb-search {
  display: flex; gap: 0; margin-bottom: 16px;
  border: 1.5px solid var(--border); border-radius: 10px; overflow: hidden;
}
.cl-sb-search input {
  flex: 1; padding: 9px 12px; border: none; font-size: 13px;
  font-family: 'Inter', sans-serif; color: var(--ink); background: var(--off);
  outline: none;
}
.cl-sb-search input:focus { background: #fff; }
.cl-sb-search button {
  padding: 0 14px; background: var(--red); border: none; cursor: pointer;
  color: #fff; font-size: 14px; display: flex; align-items: center;
}

.cl-sb-section { margin-bottom: 0; }
.cl-sb-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 0 10px; border-top: 1px solid var(--border);
  cursor: default; user-select: none;
}
.cl-sb-head h3 {
  font-size: 11px; font-weight: 700; letter-spacing: 1.3px;
  text-transform: uppercase; color: var(--ink);
}
.cl-sb-arrow { font-size: 9px; color: var(--muted); transition: transform .2s; }
.cl-sb-head.collapsed .cl-sb-arrow { transform: rotate(-90deg); }
.cl-sb-body { overflow: hidden; }
.cl-sb-body.collapsed { display: none; }

.cl-fi {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 10px 9px 0; border-radius: 0;
  cursor: pointer; transition: background .15s; gap: 8px;
}
.cl-fi:hover .cl-fi-label { color: var(--ink); }
.cl-fi.active .cl-fi-label { color: var(--ink); font-weight: 600; }
.cl-fi-label {
  font-size: 11px; font-weight: 600; letter-spacing: .8px;
  text-transform: uppercase; color: var(--ink); flex: 1;
}
.cl-fi-label-code {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 18px; background: var(--border); border-radius: 4px;
  font-size: 10px; font-weight: 700; color: var(--ink);
  margin-right: 4px; flex-shrink: 0;
}
.cl-fi-count { font-size: 11px; color: #bbbbd0; font-weight: 500; }
.cl-fi-expand { font-size: 9px; color: var(--muted); transition: transform .2s; }
.cl-fi.open .cl-fi-expand { transform: rotate(90deg); }

.cl-sub-list { display: none; }
.cl-sub-list.open { display: block; padding-bottom: 6px; }
.cl-sub-fi {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 10px 7px 12px; border-radius: 8px;
  cursor: pointer; transition: background .15s; gap: 8px;
}
.cl-sub-fi:hover .cl-fi-label { color: var(--ink); }
.cl-sub-fi.active { background: var(--off); }
.cl-sub-fi.active .cl-fi-label { color: var(--ink); font-weight: 600; }
.cl-sub-fi .cl-fi-label { font-size: 13px; color: #55556a; font-weight: 400; letter-spacing: 0; text-transform: none; }

.cl-price-pills { display: flex; flex-direction: column; gap: 2px; }
.cl-price-pill {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 10px; border-radius: 8px; cursor: pointer; transition: background .15s;
}
.cl-price-pill:hover .cl-pp-label { color: var(--ink); }
.cl-price-pill.active { background: var(--off); }
.cl-price-pill.active .cl-pp-label { color: var(--ink); font-weight: 600; }
.cl-pp-label { font-size: 13.5px; color: #3a3a4a; flex: 1; }
.cl-pp-count { font-size: 11px; color: #bbbbd0; }

.cl-support-card {
  background: var(--ink); border-radius: 14px;
  padding: 20px 18px; color: #fff; margin-top: 20px;
}
.cl-support-card .cl-s-ico { font-size: 20px; margin-bottom: 10px; }
.cl-support-card h4 { font-weight: 600; font-size: 13px; margin-bottom: 6px; }
.cl-support-card p { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.75; }
.cl-support-card a { color: #ff6680; text-decoration: none; font-weight: 500; }

/* ── MAIN ── */
.cl-main { padding-top: 28px; }
.cl-main-heading { padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--border); }
.cl-main-title {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: 28px; color: var(--ink); letter-spacing: -.5px; line-height: 1.15; margin: 0;
}
.cl-main-count { font-size: 13px; color: var(--muted); margin-top: 5px; }

.cl-results-bar {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
  flex-wrap: wrap; gap: 12px;
}
.cl-results-info { display: flex; flex-direction: column; gap: 4px; }
.cl-results-title {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: 32px; color: var(--ink); letter-spacing: -.3px; line-height: 1;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.cl-results-count-txt { font-size: 12.5px; color: var(--muted); font-weight: 400; }
.cl-results-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.cl-active-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 100px;
  border: 1.5px solid var(--ink); background: var(--off);
  font-size: 12.5px; font-weight: 500; color: var(--ink);
  white-space: nowrap;
}
.cl-active-chip button {
  font-size: 13px; color: var(--red); cursor: pointer;
  line-height: 1; font-weight: 700; transition: opacity .15s;
  background: none; border: none; padding: 0;
}

/* ── CARDS — 4 colonnes ── */
.cl-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

/* ── CARD ── */
.cl-card {
  background: #fff; border-radius: 16px;
  border: 1px solid var(--border); overflow: hidden;
  cursor: pointer; transition: box-shadow .25s, transform .25s;
  display: flex; flex-direction: column;
  text-decoration: none;
}
.cl-card:hover { box-shadow: 0 14px 44px rgba(0,0,0,.10); transform: translateY(-5px); }

/* Photo */
.cl-card-photo {
  position: relative; height: 210px; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(140deg, #1a1a2e, #2a2a4e);
}
.cl-card-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.cl-card:hover .cl-card-photo img { transform: scale(1.08); }
.cl-card-photo-fallback {
  width: 100%; height: 100%;
  display: grid; place-items: center; font-size: 44px; opacity: .3;
}

/* Favori */
.cl-card-fav {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px; background: rgba(255,255,255,.92);
  border-radius: 50%; display: grid; place-items: center;
  font-size: 14px; cursor: pointer; border: none;
  box-shadow: 0 1px 6px rgba(0,0,0,.1);
  transition: transform .15s; z-index: 2;
}
.cl-card-fav:hover { transform: scale(1.1); }

/* Card body */
.cl-card-body {
  padding: 14px 16px 12px; flex: 1;
  display: flex; flex-direction: column; gap: 0;
}

/* Titre produit */
.cl-card-title {
  font-weight: 700; font-size: 14px; color: var(--ink);
  line-height: 1.45; margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Durée + langues */
.cl-card-meta-row {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 0;
}
.cl-card-duration { font-size: 12.5px; color: var(--muted); }
.cl-meta-sep { color: var(--border); font-size: 11px; }
.cl-card-langs { display: flex; gap: 4px; flex-wrap: wrap; }
.cl-lang-tag {
  font-size: 10.5px; font-weight: 600; color: var(--muted);
  background: var(--off); border: 1px solid var(--border);
  padding: 2px 8px; border-radius: 20px; letter-spacing: .2px;
}

/* Prix */
.cl-card-price-section {
  display: flex; align-items: baseline; gap: 6px;
  padding: 10px 16px 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.cl-card-price-label {
  font-size: 11px; color: var(--muted);
  font-weight: 400; letter-spacing: .1px; white-space: nowrap;
}
.cl-card-price-value { display: flex; align-items: baseline; gap: 1px; }
.cl-card-price-num {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; font-weight: 400; color: var(--red); line-height: 1;
}
.cl-card-price-sym {
  font-family: 'DM Serif Display', serif;
  font-size: 14px; font-weight: 400; color: var(--red);
}

/* Prix net agence (caché par défaut) */
.cl-price-net { display: none; }

/* ── LOAD MORE ── */
.cl-pager-wrap { margin-top: 40px; }
.cl-show-more-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cl-show-more-btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  padding: 14px 32px; border: 2px solid var(--ink); border-radius: 40px;
  background: #fff; color: var(--ink); font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 600; transition: background .2s;
}
.cl-show-more-btn:hover { background: var(--off); }
.cl-show-more-badge {
  background: var(--red); color: #fff;
  border-radius: 20px; padding: 3px 11px;
  font-size: 13px; font-weight: 700;
}
.cl-show-more-count { color: var(--muted); font-size: 13px; text-align: center; }

/* ── ANIMATIONS ── */
@keyframes cl-fadeUp { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:translateY(0); } }
.cl-card { animation: cl-fadeUp .38s ease both; }
.cl-card:nth-child(1){ animation-delay:.04s; }
.cl-card:nth-child(2){ animation-delay:.08s; }
.cl-card:nth-child(3){ animation-delay:.12s; }
.cl-card:nth-child(4){ animation-delay:.16s; }
.cl-card:nth-child(5){ animation-delay:.20s; }
.cl-card:nth-child(6){ animation-delay:.24s; }
.cl-card:nth-child(7){ animation-delay:.28s; }
.cl-card:nth-child(8){ animation-delay:.32s; }

/* ── FOOTER ── */
.cl-footer { background: var(--ink); padding: 48px 56px 28px; }
.cl-footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px;
  padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.cl-f-logo { font-family: 'DM Serif Display', serif; font-size: 19px; font-weight: 800; color: #fff; margin-bottom: 9px; }
.cl-f-logo em { color: var(--red); font-style: normal; }
.cl-f-desc { font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.7; margin-bottom: 16px; }
.cl-f-contact { font-size: 12px; color: rgba(255,255,255,.45); line-height: 2; }
.cl-f-contact a { color: rgba(255,255,255,.6); text-decoration: none; }
.cl-f-heading { font-size: 10px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 12px; }
.cl-f-links { display: flex; flex-direction: column; gap: 8px; }
.cl-f-links a { font-size: 12.5px; color: rgba(255,255,255,.5); text-decoration: none; transition: color .18s; }
.cl-f-links a:hover { color: #fff; }
.cl-footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,.25); }

/* ── HAMBURGER + DRAWER MOBILE ── */
.cl-hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: transparent; border: none; cursor: pointer;
  padding: 4px; border-radius: 8px; flex-shrink: 0;
}
.cl-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s, opacity .3s; transform-origin: center;
}
.cl-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cl-hamburger.open span:nth-child(2) { opacity: 0; }
.cl-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.cl-drawer {
  position: fixed; top: 0; right: -100%;
  width: 80%; max-width: 320px; height: 100%;
  background: #fff; z-index: 500;
  transition: right .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 32px rgba(0,0,0,.15);
  display: flex; flex-direction: column;
}
.cl-drawer.open { right: 0; }
.cl-drawer-inner { display: flex; flex-direction: column; height: 100%; padding-top: 80px; overflow-y: auto; }
.cl-drawer-links { list-style: none; padding: 0 0 16px; border-bottom: 1px solid var(--border); margin: 0 0 16px; }
.cl-drawer-links li a { display: block; padding: 14px 24px; font-size: 15px; font-weight: 500; color: var(--ink); text-decoration: none; transition: background .15s; }
.cl-drawer-links li a:hover { background: var(--off); color: var(--red); }
.cl-drawer-cart { color: var(--red) !important; font-weight: 600 !important; }
.cl-drawer-footer { display: flex; flex-direction: column; padding: 0 24px 32px; gap: 10px; }
.cl-drawer-footer a { font-size: 13px; color: var(--muted); text-decoration: none; }
.cl-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 499; opacity: 0; pointer-events: none; transition: opacity .3s; }
.cl-overlay.open { opacity: 1; pointer-events: auto; }

/* ── TOPBAR MOBILE ── */
.cl-topbar-mobile { display: none; background: var(--ink); padding: 8px 16px; flex-direction: column; gap: 4px; }
.cl-topbar-mobile-line1 { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.85); }
.cl-topbar-mobile-line1 strong { color: #fff; }
.cl-topbar-mobile-line2 { display: flex; gap: 12px; font-size: 11px; color: rgba(255,255,255,.45); }
.cl-topbar-mobile-line2 a, .cl-topbar-mobile-line1 a { color: inherit; text-decoration: none; }
.cl-topbar-logout { color: rgba(255,255,255,.65) !important; font-weight: 500; }

/* ── HIDDEN CONFIG DIVS ── */
.cl-hide { display: none !important; }

/* ══════════════════════════
   RESPONSIVE ≤1440px
══════════════════════════ */
@media (max-width: 1440px) {
  .cl-page { max-width: 100%; padding: 0 32px 100px; }
  .cl-cards { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}

/* ══════════════════════════
   RESPONSIVE ≤1200px
══════════════════════════ */
@media (max-width: 1200px) {
  .cl-topbar { padding: 6px 24px; }
  .cl-nav { padding: 0 24px; }
  .cl-hero-content { padding: 0 24px 24px; }
  .cl-tabs-row { padding: 0 24px; }
  .cl-filters-top { padding: 12px 24px; }
  .cl-page { padding: 0 24px 80px; gap: 28px; grid-template-columns: 220px 1fr; }
  .cl-cards { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .cl-footer { padding: 48px 24px 28px; }
}

/* ══════════════════════════
   RESPONSIVE ≤1024px
══════════════════════════ */
@media (max-width: 1024px) {
  .cl-page { grid-template-columns: 200px 1fr; gap: 20px; }
  .cl-cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cl-card-photo { height: 190px; }
  .cl-hero-title { font-size: 40px; }
}

/* ══════════════════════════
   RESPONSIVE ≤900px — sidebar disparaît
══════════════════════════ */
@media (max-width: 900px) {
  .cl-topbar { display: none; }
  .cl-topbar-mobile { display: flex; }
  .cl-nav { padding: 0 16px; height: 56px; }
  .cl-nav-links { display: none; }
  .cl-nav-search { max-width: none; flex: 1; }
  .cl-hamburger { display: flex; }
  .cl-filters-top { top: 56px; padding: 10px 16px; }
  .cl-hero { height: 200px; }
  .cl-hero-content { padding: 0 16px 20px; }
  .cl-hero-title { font-size: 34px; }
  .cl-tabs-row { padding: 0 16px; }
  .cl-page { grid-template-columns: 1fr; padding: 0 16px 60px; gap: 0; }
  .cl-sidebar { display: none; }
  .cl-main { padding-top: 20px; }
  .cl-cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cl-results-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cl-footer { padding: 36px 16px 24px; }
  .cl-footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ══════════════════════════
   RESPONSIVE ≤640px
══════════════════════════ */
@media (max-width: 640px) {
  .cl-hero { height: 180px; }
  .cl-hero-title { font-size: 28px; letter-spacing: -.5px; }
  .cl-hero-stats { gap: 12px; }
  .cl-hero-stat { font-size: 12px; }
  .cl-results-title { font-size: 20px; }
  .cl-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cl-card-photo { height: 160px; }
  .cl-card-title { font-size: 13px; }
  .cl-card-price-num { font-size: 20px; }
  .cl-card-price-sym { font-size: 13px; }
  .cl-footer-top { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* ══════════════════════════
   RESPONSIVE ≤480px
══════════════════════════ */
@media (max-width: 480px) {
  .cl-nav { height: 52px; }
  .cl-logo-name { font-size: 15px; }
  .cl-logo-sub { display: none; }
  .cl-hero { height: 160px; }
  .cl-hero-title { font-size: 24px; }
  .cl-breadcrumb { font-size: 10px; }
  .cl-hero-stats { gap: 8px; flex-wrap: wrap; }
  .cl-tab-btn { padding: 12px 14px; font-size: 13px; }
  .cl-filters-top { padding: 8px 12px; gap: 8px; }
  .cl-page { padding: 0 12px 48px; }
  .cl-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cl-card-photo { height: 140px; }
  .cl-card-body { padding: 10px 12px 10px; }
  .cl-card-title { font-size: 12.5px; -webkit-line-clamp: 3; }
  .cl-card-duration { font-size: 11.5px; }
  .cl-lang-tag { font-size: 9.5px; padding: 1px 6px; }
  .cl-card-price-section { padding: 8px 12px 11px; gap: 4px; }
  .cl-card-price-label { font-size: 10px; }
  .cl-card-price-num { font-size: 18px; }
  .cl-card-price-sym { font-size: 12px; }
  .cl-footer-top { grid-template-columns: 1fr; gap: 20px; }
  .cl-footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .cl-footer { padding: 28px 12px 20px; }
}

/* ══════════════════════════
   RESPONSIVE ≤360px
══════════════════════════ */
@media (max-width: 360px) {
  .cl-hero-title { font-size: 21px; }
  .cl-cards { grid-template-columns: 1fr; gap: 12px; }
  .cl-card-photo { height: 180px; }
  .cl-card-price-num { font-size: 20px; }
}
