/* ============================================================
   Touvera — Redesign layer (design tokens + header/footer reskin
   + home page v1 components). Everything here is scoped under
   .th-header / .th-footer / .th-home so it never leaks onto the
   rest of the site.
   ============================================================ */
:root {
  --tv-teal-900: #06332C;
  --tv-teal-800: #074A3F;
  --tv-teal-700: #0A6153;
  --tv-teal-600: #0E7C6B;
  --tv-teal-500: #159E89;
  --tv-teal-100: #D9F0EB;
  --tv-teal-50: #EDF7F4;

  --tv-ink-900: #12211D;
  --tv-ink-700: #33453F;
  --tv-ink-500: #5B6E68;
  --tv-ink-400: #82918C;
  --tv-line: #E2EAE7;
  --tv-bg: #F8FAF9;
  --tv-surface: #FFFFFF;
  --tv-sand-50: #FAF7F0;

  --tv-success: #177E5C;
  --tv-warning: #B45309;
  --tv-gold: #E3A82B;

  --tv-radius-s: 10px;
  --tv-radius-m: 14px;
  --tv-radius-l: 20px;
  --tv-shadow-s: 0 1px 2px rgba(18,33,29,.05);
  --tv-shadow-m: 0 2px 6px rgba(18,33,29,.05), 0 12px 32px rgba(18,33,29,.08);
  --tv-shadow-l: 0 4px 12px rgba(18,33,29,.06), 0 24px 64px rgba(18,33,29,.12);
}

/* ===================== الفوتر (shared across all pages) ===================== */
/* Mirrors the redesign homepage footer: brand column + three link columns,
   then a legal bottom row. Markup lives in partials/footer/footer-v1. */
.site-footer {
  background: var(--tv-surface);
  border-top: 1px solid var(--tv-line);
  padding: 56px 0 28px;
  margin-top: 72px;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.site-footer .footer-logo { display: inline-block; }
.site-footer .footer-logo img { max-height: 48px; width: auto; }
.site-footer .footer-brand p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--tv-ink-500);
  margin: 14px 0 0;
  max-width: 38ch;
}
.site-footer .footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--tv-ink-900);
  margin-bottom: 16px;
}
.site-footer .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer .footer-col a {
  font-size: 14px;
  color: var(--tv-ink-500);
  transition: color .18s;
}
.site-footer .footer-col a:hover { color: var(--tv-teal-700); }

.site-footer .social-link { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.site-footer .social-link a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--tv-radius-m);
  background: var(--tv-teal-50);
  border: 1px solid var(--tv-teal-100);
  color: var(--tv-teal-700);
  transition: background .18s, color .18s, border-color .18s;
}
.site-footer .social-link a:hover {
  background: var(--tv-teal-600);
  border-color: var(--tv-teal-600);
  color: #fff;
}

.site-footer .footer-bottom {
  border-top: 1px solid var(--tv-line);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--tv-ink-400);
}
.site-footer .footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 20px; }
.site-footer .footer-bottom .legal a { color: var(--tv-ink-400); transition: color .18s; }
.site-footer .footer-bottom .legal a:hover { color: var(--tv-teal-700); }

@media (max-width: 1024px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .site-footer { margin-top: 48px; padding: 40px 0 24px; }
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
  .site-footer .footer-bottom { justify-content: flex-start; }
}

/* ============================================================
   صفحة الرئيسية المعاد تصميمها — .th-home
   ============================================================ */
.th-home {
  font-family: "IBM Plex Sans Arabic", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--tv-bg);
  color: var(--tv-ink-900);
  line-height: 1.7;
}
.th-home img { max-width: 100%; display: block; }
.th-home a { text-decoration: none; }
.th-home ul { list-style: none; margin: 0; padding: 0; }
.th-home .th-container { max-width: 1200px; margin-inline: auto; padding-inline: 24px; }

/* الهيرو */
.th-home .th-hero { padding: 48px 0 72px; position: relative; overflow: hidden; }
.th-home .th-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.th-home .th-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--tv-teal-50); color: var(--tv-teal-800);
  border: 1px solid var(--tv-teal-100);
  padding: 7px 14px; border-radius: 999px; font-size: 13.5px; font-weight: 600; margin-bottom: 20px;
}
.th-home .th-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--tv-teal-500); }
.th-home .th-hero h1 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 700; line-height: 1.35;
  color: var(--tv-ink-900); margin-bottom: 18px; letter-spacing: -.01em;
}
.th-home .th-hero h1 em { font-style: normal; color: var(--tv-teal-700); }
.th-home .th-hero-sub { font-size: 17px; color: var(--tv-ink-500); max-width: 52ch; margin-bottom: 28px; line-height: 1.9; }

.th-home .th-search-card {
  background: var(--tv-surface); border: 1px solid var(--tv-line); border-radius: var(--tv-radius-l);
  box-shadow: var(--tv-shadow-m); padding: 10px;
  display: grid; grid-template-columns: minmax(160px,1.1fr) minmax(150px,1fr) minmax(150px,1fr) auto;
  gap: 6px; align-items: stretch;
}
.th-home .th-search-field {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 14px;
  background: var(--tv-bg); border: 1.5px solid transparent; transition: border-color .18s, background .18s; min-width: 0;
}
.th-home .th-search-field:focus-within { border-color: var(--tv-teal-500); background: var(--tv-surface); }
.th-home .th-search-field i { color: var(--tv-teal-600); flex-shrink: 0; width: 18px; text-align: center; }
.th-home .th-search-field .field-body { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.th-home .th-search-field label { font-size: 12px; font-weight: 600; color: var(--tv-ink-400); }
.th-home .th-search-field select,
.th-home .th-search-field input {
  border: none; background: transparent; font-family: inherit; font-size: 14.5px; font-weight: 600;
  color: var(--tv-ink-900); padding: 2px 0; width: 100%;
}
.th-home .th-search-field select:focus,
.th-home .th-search-field input:focus { outline: none; box-shadow: none; }
.th-home .th-search-card .th-btn-primary { padding: 12px 20px; font-size: 15px; border-radius: 14px; height: 100%; white-space: nowrap; }
.th-home .th-search-field .current-location { background: transparent; border: none; color: var(--tv-teal-600); }

.th-home .th-trust-row { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 22px; }
.th-home .th-trust-item { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--tv-ink-700); }
.th-home .th-trust-item i { color: var(--tv-teal-600); }

.th-home .th-dual-path { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.th-home .th-path-link {
  flex: 1; min-width: 220px; display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: var(--tv-radius-m); border: 1.5px solid var(--tv-line);
  background: var(--tv-surface); transition: border-color .18s, box-shadow .18s; color: var(--tv-ink-900);
}
.th-home .th-path-link:hover { border-color: var(--tv-teal-500); box-shadow: var(--tv-shadow-s); }
.th-home .th-path-link .th-path-icon {
  width: 42px; height: 42px; border-radius: 12px; background: var(--tv-teal-50);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--tv-teal-700);
}
.th-home .th-path-link b { display: block; font-size: 15px; color: var(--tv-ink-900); }
.th-home .th-path-link small { font-size: 13px; color: var(--tv-ink-500); }
.th-home .th-path-link > i { margin-inline-start: auto; color: var(--tv-ink-400); }

.th-home .th-hero-visual { position: relative; }
.th-home .th-hero-visual .th-photo { border-radius: 28px; overflow: hidden; box-shadow: var(--tv-shadow-l); aspect-ratio: 4/3.4; background: var(--tv-teal-50); }
.th-home .th-hero-visual .th-photo img { width: 100%; height: 100%; object-fit: cover; }
.th-home .th-float-card {
  position: absolute; background: var(--tv-surface); border: 1px solid var(--tv-line);
  border-radius: var(--tv-radius-m); box-shadow: var(--tv-shadow-m); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.th-home .th-float-card .fc-icon { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.th-home .th-float-card b { display: block; font-size: 14px; }
.th-home .th-float-card small { font-size: 12.5px; color: var(--tv-ink-500); }
.th-home .fc-slot { bottom: 28px; inset-inline-end: -22px; }
.th-home .fc-slot .fc-icon { background: var(--tv-teal-50); color: var(--tv-teal-700); }
.th-home .fc-verified { top: 26px; inset-inline-start: -18px; }
.th-home .fc-verified .fc-icon { background: #F2FBF5; color: var(--tv-success); }

/* أقسام عامة */
.th-home .th-section { padding: 72px 0; }
.th-home .th-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.th-home .th-section-head h2 { font-size: clamp(22px,2.6vw,30px); font-weight: 700; line-height: 1.4; margin: 0; }
.th-home .th-section-head p { color: var(--tv-ink-500); margin-top: 8px; max-width: 56ch; }
.th-home .th-link-more { display: inline-flex; align-items: center; gap: 6px; font-size: 15px; font-weight: 600; color: var(--tv-teal-700); white-space: nowrap; }

/* التخصصات */
.th-home .th-specialties-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.th-home .th-specialty-card {
  display: flex; align-items: center; gap: 14px; padding: 18px; border-radius: var(--tv-radius-m);
  background: var(--tv-surface); border: 1.5px solid var(--tv-line); color: var(--tv-ink-900);
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.th-home .th-specialty-card:hover { border-color: var(--tv-teal-500); box-shadow: var(--tv-shadow-s); transform: translateY(-2px); }
.th-home .th-specialty-card .sp-icon {
  width: 48px; height: 48px; border-radius: 14px; background: var(--tv-teal-50); overflow: hidden;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.th-home .th-specialty-card .sp-icon img { width: 100%; height: 100%; object-fit: cover; }
.th-home .th-specialty-card b { font-size: 15px; display: block; }
.th-home .th-specialty-card small { font-size: 13px; color: var(--tv-ink-400); }

/* بطاقات العيادات */
.th-home .th-clinics-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.th-home .th-clinic-card {
  background: var(--tv-surface); border: 1px solid var(--tv-line); border-radius: var(--tv-radius-l);
  overflow: hidden; display: flex; flex-direction: column; color: var(--tv-ink-900);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.th-home .th-clinic-card:hover { box-shadow: var(--tv-shadow-m); transform: translateY(-3px); border-color: var(--tv-teal-100); }
.th-home .th-clinic-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--tv-teal-50); }
.th-home .th-clinic-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.th-home .th-clinic-card:hover .th-clinic-media img { transform: scale(1.04); }
.th-home .th-badge-featured {
  position: absolute; top: 12px; inset-inline-start: 12px; display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(6px); color: var(--tv-gold);
  font-size: 12.5px; font-weight: 700; padding: 6px 11px; border-radius: 999px; box-shadow: var(--tv-shadow-s);
}
.th-home .th-badge-new {
  position: absolute; top: 12px; inset-inline-start: 12px; display: inline-flex; align-items: center; gap: 5px;
  background: var(--tv-sand-50); color: var(--tv-warning); border: 1px solid #EFE6D2;
  font-size: 12.5px; font-weight: 700; padding: 5px 11px; border-radius: 999px;
}
.th-home .th-clinic-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.th-home .th-clinic-tag { font-size: 12.5px; font-weight: 700; color: var(--tv-teal-700); }
.th-home .th-clinic-name { font-size: 17px; font-weight: 700; line-height: 1.5; margin: 0; }
.th-home .th-clinic-name a { color: inherit; }
.th-home .th-clinic-meta { display: flex; flex-direction: column; gap: 4px; font-size: 13.5px; color: var(--tv-ink-500); }
.th-home .th-clinic-meta .th-clinic-meta-row { display: flex; align-items: center; gap: 6px; }
.th-home .th-clinic-meta i { color: var(--tv-ink-400); }
.th-home .th-clinic-rating { display: flex; align-items: center; gap: 6px; font-size: 13.5px; }
.th-home .th-clinic-rating i { color: var(--tv-gold); }
.th-home .th-clinic-rating b { color: var(--tv-ink-900); }
.th-home .th-clinic-rating span { color: var(--tv-ink-400); }
.th-home .th-clinic-feats { display: flex; flex-wrap: wrap; gap: 6px; }
.th-home .th-clinic-feats li { font-size: 12.5px; font-weight: 500; color: var(--tv-ink-700); background: var(--tv-bg); border: 1px solid var(--tv-line); padding: 4px 10px; border-radius: 8px; }
.th-home .th-clinic-foot {
  margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--tv-line);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.th-home .th-clinic-price small { display: block; font-size: 12px; color: var(--tv-ink-400); }
.th-home .th-clinic-price b { font-size: 17px; color: var(--tv-teal-800); }
.th-home .th-clinic-price b i { font-style: normal; font-size: 12.5px; font-weight: 600; color: var(--tv-ink-500); }
.th-home .th-clinic-cta { font-size: 13px; font-weight: 600; color: var(--tv-teal-700); background: var(--tv-teal-50); padding: 7px 14px; border-radius: 10px; white-space: nowrap; }
.th-home .th-clinic-empty { text-align: center; padding: 40px; color: var(--tv-ink-500); }

/* كيف تعمل */
.th-home .th-how { background: var(--tv-surface); border-block: 1px solid var(--tv-line); }
.th-home .th-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.th-home .th-step { position: relative; padding: 28px 24px; border-radius: var(--tv-radius-l); background: var(--tv-bg); border: 1px solid var(--tv-line); }
.th-home .th-step .num {
  font-size: 15px; font-weight: 700; color: var(--tv-teal-700); background: var(--tv-teal-50);
  border: 1.5px solid var(--tv-teal-100); width: 44px; height: 44px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.th-home .th-step h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; }
.th-home .th-step p { font-size: 14.5px; color: var(--tv-ink-500); line-height: 1.8; margin: 0; }

/* لماذا توفيرا */
.th-home .th-why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.th-home .th-why-card { display: flex; gap: 18px; padding: 26px; border-radius: var(--tv-radius-l); background: var(--tv-surface); border: 1px solid var(--tv-line); transition: box-shadow .2s, border-color .2s; }
.th-home .th-why-card:hover { box-shadow: var(--tv-shadow-s); border-color: var(--tv-teal-100); }
.th-home .th-why-card .w-icon { width: 52px; height: 52px; border-radius: 16px; background: var(--tv-teal-50); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--tv-teal-700); }
.th-home .th-why-card h3 { font-size: 17.5px; font-weight: 700; margin: 0 0 6px; }
.th-home .th-why-card p { font-size: 14.5px; color: var(--tv-ink-500); line-height: 1.85; margin: 0; }

/* شريط الثقة */
.th-home .th-trust-band { background: var(--tv-teal-900); color: #fff; border-radius: 32px; padding: 56px; position: relative; overflow: hidden; }
.th-home .th-trust-band::after {
  content: ""; position: absolute; inset-inline-start: -120px; top: -120px; width: 380px; height: 380px;
  border-radius: 50%; background: radial-gradient(circle, rgba(21,158,137,.25), transparent 65%);
}
.th-home .th-trust-band h2, .th-home .th-trust-band h3 {
  color: #fff;
}
.th-home .th-trust-band h2 { font-size: clamp(22px,2.6vw,30px); font-weight: 700; margin: 0 0 12px; }
.th-home .th-trust-band .band-sub { color: #B9D5CE; max-width: 60ch; margin-bottom: 36px; }
.th-home .th-trust-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; position: relative; z-index: 1; }
.th-home .th-trust-step .t-icon {
  width: 48px; height: 48px; border-radius: 14px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: #7BD9C8;
}
.th-home .th-trust-step h3 { font-size: 16.5px; font-weight: 700; margin: 0 0 6px; }
.th-home .th-trust-step p { font-size: 13.5px; color: #B9D5CE; line-height: 1.8; margin: 0; }
.th-home .th-pay-row { display: flex; align-items: center; gap: 14px; margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); flex-wrap: wrap; position: relative; z-index: 1; }
.th-home .th-pay-row span:first-child { font-size: 13.5px; color: #B9D5CE; }
.th-home .th-pay-chip { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: #fff; font-size: 13px; font-weight: 700; padding: 7px 16px; border-radius: 10px; }

/* قسم المراكز الطبية */
.th-home .th-centers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.th-home .th-centers-photo { border-radius: 28px; overflow: hidden; box-shadow: var(--tv-shadow-m); aspect-ratio: 4/3.2; background: var(--tv-teal-50); }
.th-home .th-centers-photo img { width: 100%; height: 100%; object-fit: cover; }
.th-home .th-centers-copy h2 { font-size: clamp(22px,2.6vw,30px); font-weight: 700; margin: 0 0 14px; line-height: 1.4; }
.th-home .th-centers-copy > p { color: var(--tv-ink-500); margin-bottom: 24px; max-width: 52ch; }
.th-home .th-center-perks { display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.th-home .th-center-perks li { display: flex; gap: 12px; align-items: flex-start; }
.th-home .th-center-perks .p-check { width: 26px; height: 26px; border-radius: 9px; background: var(--tv-teal-50); flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 2px; color: var(--tv-teal-700); }
.th-home .th-center-perks b { display: block; font-size: 15.5px; }
.th-home .th-center-perks small { font-size: 13.5px; color: var(--tv-ink-500); }
.th-home .th-centers-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* المدن */
.th-home .th-cities-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.th-home .th-city-card {
  display: flex; align-items: center; gap: 14px; padding: 20px 22px; border-radius: var(--tv-radius-m);
  background: var(--tv-surface); border: 1.5px solid var(--tv-line); transition: border-color .18s, box-shadow .18s; color: var(--tv-ink-900);
}
.th-home .th-city-card:hover { border-color: var(--tv-teal-500); box-shadow: var(--tv-shadow-s); }
.th-home .th-city-card .c-icon { width: 44px; height: 44px; border-radius: 13px; background: var(--tv-teal-50); flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.th-home .th-city-card .c-icon img { width: 100%; height: 100%; object-fit: cover; }
.th-home .th-city-card b { display: block; font-size: 16px; }
.th-home .th-city-card small { font-size: 13px; color: var(--tv-ink-400); }
.th-home .th-city-card .status { margin-inline-start: auto; font-size: 12.5px; font-weight: 700; padding: 4px 12px; border-radius: 999px; background: #F2FBF5; color: var(--tv-success); white-space: nowrap; }

/* قصص/آراء */
.th-home .th-stories-placeholder { border: 2px dashed var(--tv-line); border-radius: var(--tv-radius-l); padding: 44px 32px; text-align: center; background: var(--tv-surface); }
.th-home .th-stories-placeholder .sp-icon { width: 56px; height: 56px; border-radius: 18px; background: var(--tv-teal-50); margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; color: var(--tv-teal-700); }
.th-home .th-stories-placeholder h3 { font-size: 19px; font-weight: 700; margin: 0 0 8px; }
.th-home .th-stories-placeholder p { color: var(--tv-ink-500); max-width: 52ch; margin: 0 auto; font-size: 14.5px; }
.th-home .th-testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.th-home .th-testimonial-card { background: var(--tv-surface); border: 1px solid var(--tv-line); border-radius: var(--tv-radius-l); padding: 26px; }
.th-home .th-testimonial-card p.quote { color: var(--tv-ink-700); font-size: 14.5px; line-height: 1.9; margin: 0 0 18px; }
.th-home .th-testimonial-client { display: flex; align-items: center; gap: 12px; }
.th-home .th-testimonial-client img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.th-home .th-testimonial-client b { display: block; font-size: 14.5px; }
.th-home .th-testimonial-client span { font-size: 13px; color: var(--tv-ink-400); }

/* الأسئلة الشائعة */
.th-home .th-faq-wrap { max-width: 820px; margin-inline: auto; }
.th-home .th-faq-item { border: 1px solid var(--tv-line); border-radius: var(--tv-radius-m); background: var(--tv-surface); margin-bottom: 12px; overflow: hidden; transition: border-color .2s; }
.th-home .th-faq-item.open { border-color: var(--tv-teal-100); }
.th-home .th-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-size: 16px; font-weight: 600; color: var(--tv-ink-900); text-align: right; background: none; border: none; cursor: pointer; }
.th-home .th-faq-q .chev { width: 32px; height: 32px; border-radius: 10px; background: var(--tv-bg); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: transform .25s, background .25s; }
.th-home .th-faq-item.open .th-faq-q .chev { transform: rotate(180deg); background: var(--tv-teal-50); color: var(--tv-teal-700); }
.th-home .th-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.th-home .th-faq-a p { padding: 0 24px 22px; color: var(--tv-ink-500); font-size: 14.5px; line-height: 1.9; margin: 0; }

/* CTA النهائي */
.th-home .th-final-cta { background: linear-gradient(135deg, var(--tv-teal-800), var(--tv-teal-600)); border-radius: 32px; padding: 64px 48px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.th-home .th-final-cta h2 { color: #fff; }
.th-home .th-final-cta::before,
.th-home .th-final-cta::after { content: ""; position: absolute; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.14); }
.th-home .th-final-cta::before { width: 280px; height: 280px; top: -140px; inset-inline-end: -100px; }
.th-home .th-final-cta::after { width: 200px; height: 200px; bottom: -110px; inset-inline-start: -60px; }
.th-home .th-final-cta h2 { font-size: clamp(24px,3vw,34px); font-weight: 700; margin: 0 0 12px; position: relative; }
.th-home .th-final-cta p { color: #D4EBE6; margin-bottom: 32px; position: relative; }
.th-home .th-final-cta .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* أزرار مشتركة */
.th-home .th-btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 12px; font-size: 15px; font-weight: 600; color: #fff;
  background: var(--tv-teal-600); box-shadow: 0 6px 16px rgba(14,124,107,.25);
  transition: background .18s, transform .12s, box-shadow .18s; white-space: nowrap; border: none; cursor: pointer;
}
.th-home .th-btn-primary:hover { background: var(--tv-teal-700); color: #fff; box-shadow: 0 8px 22px rgba(14,124,107,.32); }
.th-home .th-btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 12px; font-size: 15px; font-weight: 600;
  color: var(--tv-teal-800); background: var(--tv-teal-50); border: 1.5px solid var(--tv-teal-100);
  transition: background .18s, border-color .18s;
}
.th-home .th-btn-ghost:hover { background: var(--tv-teal-100); color: var(--tv-teal-800); }
.th-home .th-btn-white {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 14px;
  background: #fff; color: var(--tv-teal-800); font-size: 16px; font-weight: 700;
  transition: transform .15s, box-shadow .2s; box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.th-home .th-btn-white:hover { transform: translateY(-2px); color: var(--tv-teal-800); }
.th-home .th-btn-outline-w {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 14px;
  border: 1.5px solid rgba(255,255,255,.5); color: #fff; font-size: 16px; font-weight: 600;
  transition: background .2s, border-color .2s;
}
.th-home .th-btn-outline-w:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

/* التجاوب */
@media (max-width: 1024px) {
  .th-home .th-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .th-home .th-hero-visual { max-width: 640px; }
  .th-home .fc-slot { inset-inline-end: 12px; }
  .th-home .fc-verified { inset-inline-start: 12px; }
  .th-home .th-specialties-grid { grid-template-columns: repeat(3,1fr); }
  .th-home .th-clinics-grid { grid-template-columns: repeat(2,1fr); }
  .th-home .th-trust-steps { grid-template-columns: repeat(2,1fr); }
  .th-home .th-centers-grid { grid-template-columns: 1fr; gap: 36px; }
  .th-home .th-cities-grid { grid-template-columns: repeat(2,1fr); }
  .th-home .th-testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .th-home .th-hero { padding: 36px 0 52px; }
  .th-home .th-search-card { grid-template-columns: 1fr; padding: 12px; }
  .th-home .th-search-card .th-btn-primary { padding: 15px; }
  .th-home .th-specialties-grid { grid-template-columns: repeat(2,1fr); }
  .th-home .th-clinics-grid { grid-template-columns: 1fr; }
  .th-home .th-steps { grid-template-columns: 1fr; }
  .th-home .th-why-grid { grid-template-columns: 1fr; }
  .th-home .th-trust-band { padding: 36px 24px; border-radius: 24px; }
  .th-home .th-trust-steps { grid-template-columns: 1fr; }
  .th-home .th-cities-grid { grid-template-columns: 1fr; }
  .th-home .th-testimonials-grid { grid-template-columns: 1fr; }
  .th-home .th-section { padding: 52px 0; }
  .th-home .th-section-head { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 26px; }
  .th-home .th-final-cta { padding: 44px 24px; border-radius: 24px; }
  .th-home .th-dual-path .th-path-link { min-width: 100%; }
}
@media (max-width: 420px) {
  .th-home .th-specialties-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .th-home .th-specialty-card { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px; }
}

/* ===================== صفحة تسجيل الدخول الموحّدة ===================== */
.th-home .th-login-card {
  max-width: 480px; margin-inline: auto; background: var(--tv-surface);
  border: 1px solid var(--tv-line); border-radius: var(--tv-radius-l); box-shadow: var(--tv-shadow-m);
  padding: 10px;
}
.th-home .th-login-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 6px; }
.th-home .th-login-tab {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 10px; border-radius: var(--tv-radius-m); border: none; background: var(--tv-bg);
  color: var(--tv-ink-500); font-size: 14px; font-weight: 600; cursor: pointer; transition: background .18s, color .18s;
}
.th-home .th-login-tab.active { background: var(--tv-teal-600); color: #fff; }
.th-home .th-login-panel { display: none; padding: 26px 20px 20px; }
.th-home .th-login-panel.active { display: block; }
.th-home .th-form-group { margin-bottom: 18px; }
.th-home .th-form-group label { display: block; font-size: 13.5px; font-weight: 600; color: var(--tv-ink-700); margin-bottom: 8px; }
.th-home .th-form-group label .req { color: var(--tv-warning); margin-inline-start: 2px; }
.th-home .th-form-group input {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--tv-line); border-radius: var(--tv-radius-s);
  font-size: 14.5px; font-family: inherit; color: var(--tv-ink-900); background: var(--tv-bg); transition: border-color .18s;
}
.th-home .th-form-group input:focus { outline: none; border-color: var(--tv-teal-500); background: var(--tv-surface); }
.th-home .th-form-error { color: #C2352B; font-size: 13px; margin-top: 6px; }
.th-home .th-login-submit { width: 100%; padding: 13px; }
.th-home .th-login-links { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--tv-line); font-size: 13.5px; }
.th-home .th-login-links a { color: var(--tv-teal-700); font-weight: 600; }
.th-home .th-login-links span { color: var(--tv-ink-500); }
@media (max-width: 480px) {
  .th-home .th-login-tab { font-size: 12.5px; padding: 10px 6px; }
  .th-home .th-login-links { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   مكوّنات مشتركة للصفحات الفرعية (من نحن / العيادات / التفاصيل)
   ============================================================ */
.th-home .th-page-hero { padding: 48px 0 40px; }
.th-home .th-page-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.th-home .th-page-hero h1 { font-size: clamp(28px, 4vw, 44px); font-weight: 700; line-height: 1.3; margin: 12px 0 16px; letter-spacing: -.01em; }
.th-home .th-page-hero h1 em { font-style: normal; color: var(--tv-teal-700); }
.th-home .th-page-hero p { font-size: 16px; color: var(--tv-ink-500); max-width: 620px; line-height: 1.85; margin: 0; }
.th-home .th-page-visual { height: 380px; border-radius: var(--tv-radius-l); overflow: hidden; border: 1px solid var(--tv-line); box-shadow: var(--tv-shadow-m); background: var(--tv-teal-50); }
.th-home .th-page-visual img { width: 100%; height: 100%; object-fit: cover; }

.th-home .th-pillars { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--tv-line); border-radius: var(--tv-radius-l); background: var(--tv-surface); overflow: hidden; }
.th-home .th-pillar { padding: 26px 24px; text-align: center; }
.th-home .th-pillar:not(:last-child) { border-inline-end: 1px solid var(--tv-line); }
.th-home .th-pillar i { width: 50px; height: 50px; margin: 0 auto 12px; border-radius: 15px; background: var(--tv-teal-50); color: var(--tv-teal-700); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.th-home .th-pillar b { display: block; margin-bottom: 6px; font-size: 15.5px; }
.th-home .th-pillar p { margin: 0; color: var(--tv-ink-500); font-size: 13.5px; }

.th-home .th-audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.th-home .th-audience-card { border: 1px solid var(--tv-line); border-radius: var(--tv-radius-l); padding: 28px; background: var(--tv-surface); }
.th-home .th-audience-card ul { list-style: none; margin: 0 0 20px; padding: 0; }
.th-home .th-audience-card li { padding: 8px 0; color: var(--tv-ink-700); display: flex; align-items: flex-start; gap: 8px; }
.th-home .th-audience-card li i { color: var(--tv-success); margin-top: 4px; flex-shrink: 0; }
.th-home .th-audience-card h3 { font-size: 20px; margin: 12px 0 16px; }

@media (max-width: 1024px) {
  .th-home .th-page-hero-grid { grid-template-columns: 1fr; }
  .th-home .th-page-visual { height: 300px; }
}
@media (max-width: 700px) {
  .th-home .th-pillars { grid-template-columns: 1fr; }
  .th-home .th-pillar:not(:last-child) { border-inline-end: 0; border-bottom: 1px solid var(--tv-line); }
  .th-home .th-audience-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   صفحة تصفح العيادات — .th-spaces
   يعيد تلوين عناصر الفلترة والبطاقات الحالية دون تغيير بنيتها
   (كل منطق JS للفلترة/الترقيم/الحجز يبقى كما هو)
   ============================================================ */
.th-spaces { background: var(--tv-bg); }
.th-spaces .widget-area { background: transparent; }
.th-spaces .widget { background: var(--tv-surface); border: 1px solid var(--tv-line); border-radius: var(--tv-radius-m); padding-inline: 18px; margin-bottom: 14px; }
.th-spaces .widget .title { margin: 0; }
.th-spaces .widget .accordion-button { color: var(--tv-ink-900); font-weight: 700; font-size: 15px; padding-inline: 0; }
.th-spaces .cat-item > a.category-search { color: var(--tv-ink-700); border-radius: var(--tv-radius-s); padding: 8px 10px; display: flex; align-items: center; gap: 6px; }
.th-spaces .cat-item > a.category-search:hover,
.th-spaces .cat-item > a.category-search.active { background: var(--tv-teal-50); color: var(--tv-teal-800); font-weight: 600; }
.th-spaces .widget-subcategories a.subcategory-search { color: var(--tv-ink-500); padding: 6px 10px; display: block; border-radius: var(--tv-radius-s); }
.th-spaces .widget-subcategories a.subcategory-search:hover,
.th-spaces .widget-subcategories a.subcategory-search.active { background: var(--tv-teal-50); color: var(--tv-teal-800); }
.th-spaces .form-control { border-radius: var(--tv-radius-s); border-color: var(--tv-line); background: var(--tv-bg); }
.th-spaces .form-control:focus { border-color: var(--tv-teal-500); box-shadow: none; }
.th-spaces .form-radio-label { border-radius: var(--tv-radius-s); }
.th-spaces .form-radio-label.active-radio,
.th-spaces .input-radio:checked + .form-radio-label { color: var(--tv-teal-800); }
.th-spaces .btn-primary,
.th-spaces .reset-space-search { background: var(--tv-teal-600); border-color: var(--tv-teal-600); }
.th-spaces .btn-primary:hover,
.th-spaces .reset-space-search:hover { background: var(--tv-teal-700); border-color: var(--tv-teal-700); }
.th-spaces .btn-outline { border-color: var(--tv-line); color: var(--tv-teal-800); }
.th-spaces .btn-outline:hover { border-color: var(--tv-teal-500); background: var(--tv-teal-50); }
.th-spaces .price-slider .noUi-connect { background: var(--tv-teal-600); }
.th-spaces .price-slider .noUi-handle { border-color: var(--tv-teal-600); }

.th-spaces .sort-area { background: var(--tv-surface); border: 1px solid var(--tv-line); border-radius: var(--tv-radius-m); padding: 14px 18px; margin-bottom: 20px; }

.th-spaces .product-default { border-color: var(--tv-line) !important; border-radius: var(--tv-radius-l) !important; overflow: hidden; transition: box-shadow .2s, transform .2s; }
.th-spaces .product-default:hover { box-shadow: var(--tv-shadow-m); transform: translateY(-3px); }
.th-spaces .product-default.featured { border-color: var(--tv-teal-500) !important; }
.th-spaces .product-default .space-category-title { color: var(--tv-teal-700); }
.th-spaces .product-default .title a { color: var(--tv-ink-900); }
.th-spaces .product-default .new-price { color: var(--tv-teal-800); }
.th-spaces .product-default .spaceWishlist.active { color: #C2352B; }

.th-spaces .space-search-pagination .page-link { border-radius: var(--tv-radius-s); border-color: var(--tv-line); color: var(--tv-ink-700); }
.th-spaces .space-search-pagination .page-item.active .page-link { background: var(--tv-teal-600); border-color: var(--tv-teal-600); color: #fff; }
.th-spaces .space-search-pagination .page-link:hover { background: var(--tv-teal-50); color: var(--tv-teal-800); }

/* ============================================================
   صفحة تفاصيل المساحة — .th-details
   إعادة تلوين فقط، بدون أي تغيير على منطق الحجز/JS
   ============================================================ */
.th-details .breadcrumb-area { background: var(--tv-teal-50) !important; }
.th-details .breadcrumb-area .breadcrumb-item a { color: var(--tv-teal-700); }
.th-details .product-slider-wrapper .swiper.product-slider-style-2 { border-radius: var(--tv-radius-l); overflow: hidden; border: 1px solid var(--tv-line); }
.th-details .product-slider-style-2-thump .swiper-slide { border-radius: var(--tv-radius-m); overflow: hidden; }
.th-details .product-title { color: var(--tv-ink-900); }
.th-details .tabs-navigation_v2 .nav-tabs .nav-link { border-radius: var(--tv-radius-s); color: var(--tv-ink-700); }
.th-details .tabs-navigation_v2 .nav-tabs .nav-link.active,
.th-details .tabs-navigation_v2 .nav-tabs .nav-item.active .nav-link { background: var(--tv-teal-600); color: #fff; }
.th-details .product-overview,
.th-details .product-location,
.th-details .product-review { color: var(--tv-ink-700); }
.th-details .amenities-list li { border-radius: var(--tv-radius-m) !important; border-color: var(--tv-line) !important; }
.th-details .amenities-list li .icon i { color: var(--tv-teal-700); }
.th-details .product-location #map iframe { border-radius: var(--tv-radius-m); }
.th-details .widget-booking { border-radius: var(--tv-radius-l) !important; border-color: var(--tv-line) !important; box-shadow: var(--tv-shadow-m); overflow: hidden; }
.th-details .widget-booking .widget-select.bg-primary-light { background: var(--tv-teal-50) !important; }
.th-details .widget-booking .btn-primary { background: var(--tv-teal-600); border-color: var(--tv-teal-600); }
.th-details .widget-booking .btn-primary:hover { background: var(--tv-teal-700); border-color: var(--tv-teal-700); }
.th-details .widget-booking .color-primary { color: var(--tv-teal-700) !important; }
.th-details .review-progresses,
.th-details .review-list { border-radius: var(--tv-radius-m) !important; border-color: var(--tv-line) !important; }
.th-details .review-progresses .progress-bar { background: var(--tv-teal-600) !important; }
.th-details .related-product .title { color: var(--tv-ink-900); }
.th-details .related-product .slider-btn { border-color: var(--tv-line); color: var(--tv-teal-700); }

/* ---------- عدد الساعات: counter stepper (design v1 .counter-row) ---------- */
.th-details .tv-hours-field > label {
  display: block;
  font-weight: 800;
  color: var(--tv-ink-900);
  margin-bottom: 0;
}
.th-details .tv-counter-row {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 6px;
  align-items: center;
  margin-top: 10px;
}
.th-details .tv-counter-btn {
  height: 42px;
  border: 1px solid var(--tv-line);
  background: var(--tv-surface);
  border-radius: 11px;
  color: var(--tv-teal-600);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.th-details .tv-counter-btn:hover {
  background: var(--tv-teal-50);
  border-color: var(--tv-teal-100);
  color: var(--tv-teal-700);
}
.th-details .tv-counter-btn:active { background: var(--tv-teal-100); }
.th-details .tv-counter-btn:focus-visible {
  outline: 2px solid var(--tv-teal-500);
  outline-offset: 2px;
}
.th-details .tv-counter-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}
.th-details .tv-counter-value .form-control {
  border: 0;
  background: transparent;
  padding: 0;
  height: auto;
  text-align: center;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--tv-ink-900);
  box-shadow: none;
  line-height: 1.2;
}
.th-details .tv-counter-value .form-control:focus {
  border: 0;
  box-shadow: none;
  background: transparent;
}
/* hide native number spinners — the ± buttons replace them */
.th-details .tv-counter-value .form-control::-webkit-outer-spin-button,
.th-details .tv-counter-value .form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.th-details .tv-counter-value .form-control[type=number] { -moz-appearance: textfield; }
.th-details .tv-counter-unit {
  color: var(--tv-ink-400);
  font-weight: 600;
  font-size: .78rem;
  line-height: 1.2;
}
/* validation messages injected by JS right after #hours */
.th-details .tv-counter-value > p,
.th-details .tv-counter-value > .text-danger {
  width: 100%;
  text-align: center;
  margin-top: 4px;
}

/* ============================================================
   صفحة تصفح العيادات — شريط الفلترة العلوي وشبكة البطاقات
   (design v1: .filters-shell / .filterbar / .results-head / .cards)
   الفلاتر الثانوية انتقلت إلى offcanvas بدل العمود الجانبي
   ============================================================ */
.th-spaces .listing-area { background: transparent; padding-bottom: 40px; }

/* ---------- شريط الفلترة العلوي ---------- */
.th-filters-shell { padding: 8px 0 28px; }
.th-filters-top {
  background: var(--tv-surface);
  border: 1px solid var(--tv-line);
  border-radius: var(--tv-radius-l);
  box-shadow: var(--tv-shadow-m);
  padding: 14px;
  display: grid;
  grid-template-columns: 1.1fr 1fr .9fr .8fr auto;
  gap: 9px;
  align-items: stretch;
}
.th-field {
  border: 1px solid var(--tv-line);
  border-radius: var(--tv-radius-m);
  background: var(--tv-bg);
  padding: 9px 12px;
  min-width: 0;
}
.th-field > label {
  display: block;
  color: var(--tv-ink-400);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 2px;
}
.th-field select,
.th-field input,
.th-field .form-control {
  border: 0;
  background: transparent;
  outline: none;
  box-shadow: none;
  width: 100%;
  padding: 0;
  height: auto;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--tv-ink-900);
  appearance: none;
  -webkit-appearance: none;
  text-overflow: ellipsis;
}
.th-field select:focus,
.th-field input:focus,
.th-field .form-control:focus { border: 0; box-shadow: none; background: transparent; }
.th-field .form-control::placeholder { color: var(--tv-ink-400); font-weight: 500; }
.th-field form { margin: 0; }
/* only one date picker variant is visible at a time (toggled by space-filtering.js) */
.th-field-date > div.d-none { display: none !important; }

.th-filters-actions { display: flex; align-items: stretch; gap: 8px; }
.th-filters-apply {
  min-width: 150px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.th-filters-reset {
  width: 48px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tv-line);
  border-radius: var(--tv-radius-m);
  color: var(--tv-ink-500);
  background: var(--tv-surface);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.th-filters-reset:hover { color: var(--tv-teal-700); border-color: var(--tv-teal-500); background: var(--tv-teal-50); }

/* ---------- رأس النتائج ---------- */
.th-results-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.th-results-count h2 { margin: 0; font-size: 24px; color: var(--tv-ink-900); }
.th-results-count small { color: var(--tv-ink-400); font-size: 13px; }
.th-results-sort { display: flex; align-items: center; gap: 8px; }
.th-results-sort-label { color: var(--tv-ink-500); font-size: 13.5px; margin: 0; }
.th-sort-select {
  border: 1px solid var(--tv-line);
  background: var(--tv-surface);
  border-radius: 12px;
  padding: 9px 12px;
  color: var(--tv-ink-700);
  font-weight: 600;
  font-size: 13.5px;
}
.th-sort-select:focus { outline: none; border-color: var(--tv-teal-500); }

/* ---------- بطاقة العيادة داخل صفحة التصفح ---------- */
.th-spaces .th-clinic-media { aspect-ratio: 16/11; }
.th-clinic-wishlist-form { position: absolute; top: 12px; inset-inline-end: 12px; margin: 0; }
.th-clinic-wishlist {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--tv-line);
  background: rgba(255,255,255,.92);
  color: var(--tv-ink-500);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s ease, background .15s ease;
}
.th-clinic-wishlist:hover { color: var(--tv-teal-700); background: #fff; }
.th-clinic-wishlist.active { color: var(--tv-teal-700); background: var(--tv-teal-50); border-color: var(--tv-teal-100); }

.th-spaces .space-search-pagination { display: flex; justify-content: center; margin-top: 34px; }
.th-spaces .pagination-nav { margin-bottom: 0; }

/* ---------- offcanvas الفلاتر الثانوية ---------- */
.th-filter-offcanvas { width: 340px; max-width: 88vw; }
.th-filter-offcanvas .offcanvas-header { border-bottom: 1px solid var(--tv-line); }

@media (max-width: 1020px) {
  .th-filters-top { grid-template-columns: 1fr 1fr; }
  .th-filters-actions { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  .th-filters-top { grid-template-columns: 1fr; }
  .th-results-head { align-items: center; }
  .th-results-count h2 { font-size: 20px; }
}
