/* City home page */
:root{
  --cb-home-text:#0f172a;
  --cb-home-muted:#64748b;
  --cb-home-line:#e2e8f0;
  --cb-home-ink:#111827;
  --cb-home-accent:#0b84ff;
  --cb-home-accent-dark:#006fe6;
  --cb-home-shadow:0 16px 40px rgba(15,23,42,.08);
}

.cb-main.cb-main--home{padding:0 18px 48px}

.cb-home{
  display:grid;
  gap:32px;
  padding-bottom:48px;
}

/* Hero */
.cb-home-hero{
  position:relative;
  overflow:hidden;
  display:grid;
  justify-items:center;
  border-radius:28px;
  padding:clamp(28px,4vw,48px);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(11,132,255,.16) 0%, transparent 55%),
    radial-gradient(90% 90% at 0% 100%, rgba(16,185,129,.12) 0%, transparent 50%),
    linear-gradient(180deg,#f8fbff 0%,#eef4ff 52%,#f8fafc 100%);
  border:1px solid rgba(148,163,184,.22);
  min-height:360px;
}
.cb-home-hero--photo{
  background:linear-gradient(180deg,#f8fbff 0%,#eef4ff 100%);
  border-color:rgba(148,163,184,.18);
}
.cb-home-hero__backdrop{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(115deg, rgba(248,251,255,.94) 0%, rgba(248,251,255,.82) 34%, rgba(248,251,255,.42) 58%, rgba(248,251,255,.12) 100%);
}
.cb-home-hero--photo .cb-home-hero__backdrop{
  background:
    linear-gradient(115deg, rgba(248,251,255,.95) 0%, rgba(248,251,255,.84) 32%, rgba(248,251,255,.48) 56%, rgba(15,23,42,.08) 100%),
    var(--cb-home-hero-photo) right center/cover no-repeat;
}
.cb-home-hero__glow{
  position:absolute;
  inset:auto -80px -120px auto;
  width:320px;
  height:320px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(11,132,255,.18) 0%, transparent 70%);
  pointer-events:none;
}
.cb-home-hero--photo .cb-home-hero__glow{display:none}
.cb-home-hero__content{
  position:relative;
  z-index:1;
  display:grid;
  gap:18px;
  justify-items:center;
  width:min(860px,100%);
  text-align:center;
}
.cb-home-hero__eyebrow{
  margin:0;
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#64748b;
}
.cb-home-hero__title{
  margin:0;
  font-size:clamp(32px,5vw,48px);
  line-height:1.06;
  letter-spacing:-.03em;
  color:var(--cb-home-text);
}
.cb-home-hero__lead{
  margin:0;
  max-width:640px;
  font-size:clamp(16px,2vw,18px);
  line-height:1.55;
  color:#475569;
}
.cb-home-hero__search{
  width:min(760px,100%);
}
.cb-home-hero__search-bar{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:8px;
  align-items:end;
  padding:8px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(148,163,184,.24);
  box-shadow:0 14px 34px rgba(15,23,42,.08);
}
.cb-home-hero__search-field{
  display:grid;
  gap:6px;
  min-width:0;
}
.cb-home-hero__search-label{
  padding-left:6px;
  font-size:12px;
  font-weight:800;
  color:#64748b;
  text-align:left;
}
.cb-home-hero__search-icon{
  display:block;
  width:18px;
  height:18px;
  flex-shrink:0;
  background:center/18px 18px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath stroke-linecap='round' d='M20 20l-3.5-3.5'/%3E%3C/svg%3E");
  pointer-events:none;
}
.cb-home-hero__search input{
  width:100%;
  min-height:52px;
  border:0;
  border-radius:14px;
  padding:0;
  font:inherit;
  font-size:17px;
  font-weight:600;
  color:var(--cb-home-text);
  background:transparent;
  box-shadow:none;
}
.cb-home-hero__search-btn{
  min-height:52px;
  margin:0 0 0 6px;
  padding:0 24px;
  border:0;
  border-radius:14px;
  background:var(--cb-home-accent);
  color:#fff;
  font:inherit;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(11,132,255,.24);
  transition:transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.cb-home-hero__search-btn:hover{
  transform:translateY(-1px);
  background:var(--cb-home-accent-dark);
  box-shadow:0 14px 28px rgba(11,132,255,.28);
}
.cb-home-hero__geo{
  width:min(760px,100%);
}
.cb-home-hero__geo-tabs{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
}
.cb-home-hero__geo-tab{
  min-height:38px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid #dbeafe;
  background:#fff;
  color:#334155;
  font:inherit;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
  transition:transform .15s ease, border-color .15s ease, background-color .15s ease, color .15s ease;
}
.cb-home-hero__geo-tab:hover{
  transform:translateY(-1px);
  border-color:#94a3b8;
}
.cb-home-hero__geo-tab.is-active{
  border-color:var(--cb-home-accent);
  background:var(--cb-home-accent);
  color:#fff;
}
.cb-home-hero__geo-tab--picker{
  color:var(--cb-home-accent-dark);
  background:#eff6ff;
  border-color:#bfdbfe;
}
.cb-home-hero__geo-tab--picker.is-active{
  border-color:var(--cb-home-accent);
  background:var(--cb-home-accent);
  color:#fff;
}
.cb-home-hero__scenarios{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  width:min(860px,100%);
}
.cb-home-hero__scenario{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:40px;
  padding:0 16px;
  border-radius:999px;
  border:1px solid var(--cb-home-line);
  background:#fff;
  color:var(--cb-home-text);
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  box-shadow:0 8px 20px rgba(15,23,42,.04);
  transition:transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.cb-home-hero__scenario::before{
  content:"";
  width:18px;
  height:18px;
  flex-shrink:0;
  background:center/18px 18px no-repeat;
  opacity:.9;
}
.cb-home-hero__scenario--listings::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230b84ff' stroke-width='2'%3E%3Cpath stroke-linecap='round' d='M4 7h16M4 12h10M4 17h7'/%3E%3C/svg%3E")}
.cb-home-hero__scenario--shops::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230b84ff' stroke-width='2'%3E%3Cpath stroke-linecap='round' d='M3 9l1-4h16l1 4M5 9v11h14V9'/%3E%3C/svg%3E")}
.cb-home-hero__scenario--masters::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230b84ff' stroke-width='2'%3E%3Cpath stroke-linecap='round' d='M12 3l2.2 4.5 5 .7-3.6 3.5.9 5-4.5-2.4-4.5 2.4.9-5L4.8 8.2l5-.7L12 3z'/%3E%3C/svg%3E")}
.cb-home-hero__scenario--demand::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230b84ff' stroke-width='2'%3E%3Cpath stroke-linecap='round' d='M12 8v8m-4-4h8M21 12a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E")}
.cb-home-hero__scenario--products::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230b84ff' stroke-width='2'%3E%3Cpath stroke-linecap='round' d='M20 7l-8-4-8 4m16 0l-8 4m8-4v10l-8 4m0-10L4 7m8 4v10M4 7v10l8 4'/%3E%3C/svg%3E")}
.cb-home-hero__scenario--services::before{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230b84ff' stroke-width='2'%3E%3Cpath stroke-linecap='round' d='M4 6h16M4 12h16M4 18h10'/%3E%3C/svg%3E")}
.cb-home-hero__scenario:hover{
  transform:translateY(-1px);
  border-color:#94a3b8;
  box-shadow:0 10px 24px rgba(15,23,42,.08);
}
.cb-home-hero__ai{
  width:min(760px,100%);
  text-align:left;
}
.cb-home-hero__ai[hidden]{display:none!important}

.cb-home-trending{display:flex;flex-wrap:wrap;gap:10px}
.cb-home-trending--cards{
  flex-wrap:wrap;
  align-items:stretch;
  overflow:visible;
  gap:10px;
  padding-bottom:0;
}
.cb-home-trending__chip{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 16px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--cb-home-line);
  color:var(--cb-home-text);
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  transition:transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.cb-home-trending__card{
  flex:0 0 auto;
  display:grid;
  grid-template-columns:42px minmax(0,max-content);
  gap:12px;
  align-items:center;
  width:max-content;
  max-width:100%;
  min-height:72px;
  padding:12px 16px;
  border-radius:18px;
  background:#fff;
  border:1px solid #dbeafe;
  color:var(--cb-home-text);
  text-decoration:none;
  box-shadow:0 8px 22px rgba(37,99,235,.06);
  transition:transform .15s ease, box-shadow .15s ease;
}
.cb-home-trending__card-icon{
  width:42px;
  height:42px;
  flex-shrink:0;
  border-radius:14px;
  background:#eff6ff center/20px 20px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232563eb' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' d='M21 21l-4.35-4.35M11 18a7 7 0 100-14 7 7 0 000 14z'/%3E%3C/svg%3E");
}
.cb-home-trending__card-label{
  font-size:14px;
  font-weight:800;
  line-height:1.25;
  white-space:nowrap;
}
.cb-home-trending__chip:hover,
.cb-home-trending__card:hover{
  transform:translateY(-1px);
  border-color:#94a3b8;
  box-shadow:0 8px 20px rgba(15,23,42,.06);
}

.cb-home-section{display:grid;gap:18px}
.cb-home-section-head,.cb-home-section .cb-home-section-head{margin:0}

.cb-home-categories{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(160px,1fr));
  gap:14px;
}
.cb-home-category{
  display:grid;
  gap:10px;
  justify-items:center;
  text-align:center;
  min-height:148px;
  padding:22px 16px 18px;
  border-radius:22px;
  background:#fff;
  border:1px solid var(--cb-home-line);
  text-decoration:none;
  color:inherit;
  box-shadow:0 8px 24px rgba(15,23,42,.05);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.cb-home-category:hover{
  transform:translateY(-3px);
  border-color:#94a3b8;
  box-shadow:var(--cb-home-shadow);
}
.cb-home-category__icon{
  display:grid;
  place-items:center;
  width:64px;
  height:64px;
  border-radius:20px;
  background:#f8fafc;
  overflow:hidden;
}
.cb-home-category__icon img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:6px;
}
.cb-home-category__glyph{
  width:100%;
  height:100%;
  border-radius:inherit;
  background-position:center;
  background-repeat:no-repeat;
  background-size:32px 32px;
}
.cb-home-category__icon--real-estate{background-color:#eff6ff;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232563eb' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' d='M3 10.5L12 3l9 7.5V20a1 1 0 01-1 1h-5v-6H9v6H4a1 1 0 01-1-1v-9.5z'/%3E%3C/svg%3E")}
.cb-home-category__icon--transport{background-color:#ecfeff;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230891b2' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' d='M7 17h10M5 11l1-4h12l1 4M6 17a1.5 1.5 0 103 0 1.5 1.5 0 00-3 0zm9 0a1.5 1.5 0 103 0 1.5 1.5 0 00-3 0z'/%3E%3C/svg%3E")}
.cb-home-category__icon--services{background-color:#f0fdf4;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2316a34a' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' d='M12 6v12m-6-6h12'/%3E%3C/svg%3E")}
.cb-home-category__icon--jobs{background-color:#fff7ed;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ea580c' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' d='M8 7V5a2 2 0 012-2h4a2 2 0 012 2v2m-9 4h10m-10 0l1 10h8l1-10'/%3E%3C/svg%3E")}
.cb-home-category__icon--home{background-color:#fefce8;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ca8a04' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' d='M4 10h16v10H4zM9 14h6'/%3E%3C/svg%3E")}
.cb-home-category__icon--electronics{background-color:#eef2ff;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234f46e5' stroke-width='1.8'%3E%3Crect x='5' y='4' width='14' height='16' rx='2'/%3E%3C/svg%3E")}
.cb-home-category__icon--fashion,.cb-home-category__icon--default{background-color:#fdf2f8;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23db2777' stroke-width='1.8'%3E%3Cpath stroke-linecap='round' d='M7 7h10l-1 14H8L7 7zm5-4l3 4h-6l3-4z'/%3E%3C/svg%3E")}
.cb-home-category__title{
  font-size:17px;
  line-height:1.2;
  letter-spacing:-.02em;
}
.cb-home-category__subs{
  font-size:13px;
  line-height:1.45;
  color:var(--cb-home-muted);
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.cb-home-section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
}
.cb-home-section-head__copy{display:grid;gap:6px}
.cb-home-section-head__title{
  margin:0;
  font-size:clamp(22px,2.5vw,28px);
  line-height:1.15;
  letter-spacing:-.02em;
}
.cb-home-section-head__subtitle{
  margin:0;
  color:var(--cb-home-muted);
  font-size:15px;
  line-height:1.45;
}
.cb-home-section-head__link{
  flex-shrink:0;
  font-size:14px;
  font-weight:800;
  color:var(--cb-home-accent-dark);
  text-decoration:none;
}
.cb-home-section-head__link:hover{text-decoration:underline}

.cb-home-grid{
  display:grid;
  gap:16px;
}
.cb-home-grid--listings,
.cb-home-grid--products{
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
}
.cb-home-grid--masters,
.cb-home-grid--demand{
  grid-template-columns:minmax(0,1fr);
  width:100%;
}
.cb-home-grid--news{
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
}

.cb-home-listing,.cb-home-product,.cb-home-master,.cb-home-demand,.cb-home-news{
  position:relative;
  border-radius:20px;
  background:#fff;
  border:1px solid var(--cb-home-line);
  box-shadow:0 8px 24px rgba(15,23,42,.05);
  overflow:hidden;
}
.cb-home-listing__link,.cb-home-product__link,.cb-home-master__link,.cb-home-demand__link{color:inherit;text-decoration:none}
.cb-home-listing__media,.cb-home-product__media{
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
  background:#f8fafc;
}
.cb-home-listing__media img,.cb-home-product__media img{width:100%;height:100%;object-fit:cover;display:block}
.cb-home-listing__body,.cb-home-product__body,.cb-home-master__body,.cb-home-demand__body{padding:14px 16px 16px}
.cb-home-listing__price,.cb-home-product__price{color:var(--cb-home-text)}
.cb-home-listing__title,.cb-home-product__title,.cb-home-master__title,.cb-home-demand__title,.cb-home-news__title{
  margin:8px 0 0;
  font-size:16px;
  line-height:1.35;
}
.cb-home-listing__meta,.cb-home-product__meta,.cb-home-master__meta,.cb-home-demand__meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:8px 0 0;
  color:var(--cb-home-muted);
  font-size:13px;
}
.cb-home-listing__favorite,.cb-home-product__favorite{position:absolute;top:10px;right:10px;z-index:2}
.cb-home-product__shop{
  position:absolute;
  left:10px;
  bottom:10px;
  padding:4px 8px;
  border-radius:999px;
  background:rgba(15,23,42,.72);
  color:#fff;
  font-size:12px;
  font-weight:700;
}
.cb-home-product__placeholder{
  display:grid;
  place-items:center;
  gap:8px;
  height:100%;
  padding:16px;
  background:linear-gradient(180deg,#eff6ff 0%,#f8fafc 100%);
}
.cb-home-product__placeholder-mark{
  width:56px;
  height:56px;
  display:grid;
  place-items:center;
  border-radius:16px;
  background:#dbeafe;
  font-size:24px;
  font-weight:800;
}
.cb-home-product__row{display:flex;justify-content:space-between;gap:10px;align-items:center}
.cb-home-product__stock{font-size:12px;font-weight:800;color:#15803d}
.cb-home-product__stock.is-out{color:#b91c1c}
.cb-home-master{padding:16px}
.cb-home-master__link{display:grid;grid-template-columns:56px minmax(0,1fr);gap:14px}
.cb-home-master__avatar{
  width:56px;height:56px;border-radius:18px;display:grid;place-items:center;background:#eff6ff;color:#1d4ed8;font-size:22px;font-weight:800;
}
.cb-home-master__badges,.cb-home-demand__badges{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:8px}
.cb-home-master__badge,.cb-home-demand__badges span{
  display:inline-flex;align-items:center;min-height:24px;padding:0 8px;border-radius:999px;background:#f1f5f9;font-size:12px;font-weight:800;color:#475569;
}
.cb-home-master__badge--verified{background:#dcfce7;color:#166534}
.cb-home-master__badge--live{background:#ecfdf5;color:#166534;border:1px solid #bbf7d0;max-width:100%;white-space:normal;line-height:1.15;text-align:left}
.cb-home-master__spec,.cb-home-master__desc,.cb-home-demand__desc{margin:6px 0 0;color:var(--cb-home-muted);font-size:14px;line-height:1.45}
.cb-home-demand__link{display:grid;grid-template-columns:72px minmax(0,1fr) auto;gap:14px;align-items:center;padding:16px;width:100%;min-width:0;box-sizing:border-box}
.cb-home-demand__mark span{display:inline-flex;align-items:center;justify-content:center;min-height:72px;padding:0 10px;border-radius:16px;background:#eff6ff;color:#1d4ed8;font-size:12px;font-weight:800;text-align:center}
.cb-home-demand__side strong{white-space:nowrap}
.cb-home-news{padding:16px 18px}
.cb-home-news__date{display:block;margin-bottom:8px;color:var(--cb-home-muted);font-size:13px;font-weight:700}
.cb-home-news__title a{color:inherit;text-decoration:none}
.cb-home-news__excerpt{margin:8px 0 0;color:var(--cb-home-muted);font-size:14px;line-height:1.5}

@media(max-width:760px){
  .cb-main.cb-main--home{padding:0 12px!important}
  .cb-home{padding-bottom:40px;gap:24px}
  .cb-home-hero{
    padding:18px 16px;
    border-radius:20px;
    margin-top:4px;
  }
  .cb-home-hero__title{
    font-size:clamp(26px,7.2vw,34px);
    line-height:1.08;
    letter-spacing:-.035em;
  }
  .cb-home-hero__lead{
    font-size:15px;
    line-height:1.5;
  }
  .cb-home-hero__search-label{display:none}
  .cb-home-hero__search input{
    min-height:48px;
    font-size:16px;
  }
  .cb-home-hero__search-bar{
    grid-template-columns:1fr;
    padding:8px;
    border-radius:16px;
  }
  .cb-home-hero__search-btn{
    width:100%;
    margin:6px 0 0;
    min-height:48px;
    font-size:15px;
  }
  .cb-home-hero__geo-tabs{
    flex-wrap:nowrap;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    margin:0 -2px;
    padding:2px;
  }
  .cb-home-hero__geo-tabs::-webkit-scrollbar{display:none}
  .cb-home-hero__geo-tab{
    flex-shrink:0;
    padding:7px 12px;
    font-size:13px;
  }
  .cb-home-hero__scenarios{
    flex-wrap:nowrap;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
    gap:8px;
    margin:0 -2px;
    padding:2px;
  }
  .cb-home-hero__scenarios::-webkit-scrollbar{display:none}
  .cb-home-hero__scenario{
    flex-shrink:0;
    min-height:36px;
    padding:0 12px;
    font-size:13px;
  }
  .cb-home-categories{grid-template-columns:repeat(2,minmax(0,1fr))}
  .cb-home-grid--listings,.cb-home-grid--products{grid-template-columns:repeat(2,minmax(0,1fr))}
  .cb-home-grid--masters,.cb-home-grid--demand,.cb-home-grid--news{grid-template-columns:1fr}
}
