:root {
  --bg: #f8f7ff;
  --surface: #ffffff;
  --surface-soft: #f3efff;
  --text: #111322;
  --muted: #6d7285;
  --line: #e7e2fb;
  --primary: #5b21e8;
  --primary-2: #7c3aed;
  --green: #dff8e7;
  --green-text: #178348;
  --dark: #101729;
  --shadow: 0 22px 55px rgba(51, 34, 116, .10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --fs-2xs: 11px;
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-md: 18px;
  --fs-lg: 22px;
  --fs-xl: 28px;
  --fs-2xl: 36px;
  --fs-3xl: 48px;
  --fs-hero: clamp(38px, 4.2vw, 64px);
  --lh-tight: 1.1;
  --lh-title: 1.22;
  --lh-text: 1.5;
  --card-title-size: 17px;
  --card-meta-size: 14px;
  --card-price-size: 25px;
  --card-badge-size: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 36%, #fff 100%);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  font-size: var(--fs-base);
  line-height: var(--lh-text);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 24px;
  align-items: center;
}

.logo {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.logo-image {
  display: block;
  width: 260px;
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.logo-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  color: #fff;
  background: #fff;
  box-shadow: 0 14px 28px rgba(91, 33, 232, .24);
  overflow: hidden;
}

.logo-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo strong {
  display: block;
  font-size: var(--fs-lg);
  line-height: 1;
}

.logo small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-weight: 700;
}

.main-nav a {
  color: #202234;
}

.main-nav .active {
  color: var(--primary);
}

.mobile-site-menu {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.mobile-icon-button,
.mobile-filter-button,
.mobile-section-row,
.mobile-how-strip,
.mobile-home-hero {
  display: none;
}

.search-button {
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  font-size: 30px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #6d28d9);
  box-shadow: 0 14px 28px rgba(91, 33, 232, .22);
}

.btn-outline {
  border-color: #bca9ff;
  color: var(--primary);
  background: #fff;
}

.btn-soft {
  color: var(--primary);
  background: #f1edff;
}

.btn-wide {
  width: 100%;
}

.page {
  padding: 24px 0 0;
}

.layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.sidebar {
  display: grid;
  gap: 24px;
  position: sticky;
  top: 106px;
}

.panel,
.seller-mini,
.hero,
.stats,
.product-card,
.benefits,
.how,
.footer {
  border: 1px solid var(--line);
}

.panel,
.seller-mini {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.panel-head h2 {
  margin: 0;
  font-size: var(--fs-xl);
}

.panel-head a {
  color: var(--primary);
  font-weight: 800;
}

.filters {
  display: grid;
  gap: 24px;
}

.field span,
.filter-group h3 {
  display: block;
  margin: 0 0 10px;
  font-size: var(--fs-sm);
  font-weight: 900;
}

.input-with-icon {
  display: flex;
  overflow: hidden;
  border: 1px solid #dcd5fb;
  border-radius: 12px;
  background: #fff;
}

.input-with-icon input {
  flex: 1;
  border: 0;
}

.input-with-icon button {
  width: 46px;
  border: 0;
  background: #fff;
  color: var(--primary);
  font-size: 24px;
  cursor: pointer;
}

input,
select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #dcd5fb;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  outline: none;
}

.check-row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 34px;
  margin-bottom: 10px;
  font-weight: 700;
}

.check-row.plain {
  grid-template-columns: 22px 1fr;
}

.check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.category-checks {
  max-height: 360px;
  overflow: auto;
  padding-right: 4px;
}

.category-node {
  margin-bottom: 6px;
}

.category-node-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  border-radius: 12px;
}

.category-check {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
  font-weight: 800;
  cursor: pointer;
  user-select: none;
}

.category-node-row:hover {
  background: rgba(109,40,217,.06);
}

.category-node.has-children.is-open > .category-node-row {
  background: linear-gradient(90deg, rgba(109,40,217,.10), rgba(109,40,217,.04));
}

.category-check .checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.fake-check {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  border: 2px solid #a4a6b0;
  border-radius: 5px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  transition: border-color .16s ease, background .16s ease;
}

.checkbox:checked + .fake-check {
  border-color: #6d28d9;
  background: #6d28d9;
}

.checkbox:checked + .fake-check::after {
  content: "✓";
  color: #fff;
  font-size: var(--fs-base);
  line-height: 1;
}

.fake-check.partial {
  border-color: #6d28d9;
  background: #6d28d9;
}

.fake-check.partial::after {
  content: "−";
  color: #fff;
  font-size: 20px;
  line-height: 1;
}

.category-title {
  overflow-wrap: anywhere;
}

.category-toggle {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #5b21e8;
  cursor: pointer;
  font-size: var(--fs-lg);
  line-height: 1;
  transition: transform .18s ease, background .18s ease;
}

.category-toggle:hover {
  background: #f1edff;
}

.category-node.is-open > .category-node-row .category-toggle {
  transform: rotate(90deg);
}

.category-children {
  display: none;
  position: relative;
  margin-left: 10px;
  padding: 4px 0 8px 34px;
}

.category-children::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 14px;
  border-left: 1px dashed #d7d7e8;
}

.category-node.is-open > .category-children {
  display: block;
}

.category-children > .category-node > .category-node-row::before {
  content: "";
  position: absolute;
  left: -22px;
  width: 14px;
  border-top: 1px dashed #d7d7e8;
}

.category-level-2 .category-check {
  font-weight: 700;
}

.category-level-3 .category-check,
.category-level-4 .category-check {
  font-weight: 600;
}

.muted {
  color: var(--muted);
}

.mp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 26px;
  padding: 0 7px;
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.mp-wb {
  background: linear-gradient(135deg, #9d1aa5, #7422ce);
}

.mp-ozon {
  background: linear-gradient(135deg, #0074ff, #0050d9);
}

.mp-ym {
  background: linear-gradient(135deg, #ffbf00, #ff6500);
  color: #111;
}

.mp-mm {
  background: linear-gradient(135deg, #6e36e8, #9d4edd);
}

.range-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.seller-mini {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(124,58,237,.20), transparent 38%),
    #fff;
}

.seller-mini h3 {
  margin: 0 0 12px;
  font-size: var(--fs-lg);
}

.seller-mini ul {
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
  display: grid;
  gap: 12px;
  color: #34364b;
}

.seller-mini li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--primary);
  font-weight: 900;
}

.mini-screen {
  height: 116px;
  margin: 24px -24px -24px;
  background:
    linear-gradient(135deg, rgba(91,33,232,.20), rgba(255,255,255,.6)),
    repeating-linear-gradient(0deg, rgba(91,33,232,.12) 0 2px, transparent 2px 28px);
}

.content {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.content > *,
.home-banner,
.stats,
.offers-section,
.products-grid,
.why-benefit,
.how {
  min-width: 0;
  max-width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  min-height: 390px;
  padding: 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(124,58,237,.24), transparent 30%),
    linear-gradient(135deg, #fff 0%, #f3efff 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.home-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: #f7f5ff;
}

.home-banner img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.home-banner-link {
  position: absolute;
  top: 64.8%;
  height: 7.8%;
  border-radius: 12px;
}

.home-banner-link:focus-visible {
  outline: 3px solid #5b21e8;
  outline-offset: 3px;
}

.home-banner-link-catalog {
  left: 5%;
  width: 18.7%;
}

.home-banner-link-how {
  left: 24.9%;
  width: 16.6%;
}

.hero h1 {
  margin: 0 0 22px;
  max-width: 720px;
  font-size: var(--fs-hero);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.hero h1 span {
  display: block;
  color: var(--primary);
}

.hero p {
  margin: 0;
  max-width: 620px;
  color: #35394d;
  font-size: var(--fs-lg);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  min-height: 290px;
}

.hero-banner {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(100%, 560px);
  max-height: 320px;
  transform: translate(-50%, -50%);
  object-fit: contain;
  display: block;
}

.tablet {
  position: absolute;
  right: 60px;
  top: 28px;
  width: 420px;
  height: 245px;
  padding: 24px;
  transform: rotate(-4deg);
  border-radius: 24px;
  background: #fff;
  border-top: 18px solid var(--primary);
  box-shadow: 0 30px 70px rgba(49, 22, 134, .24);
}

.tablet-top {
  height: 42px;
  border-radius: 12px;
  background: #f1edff;
  margin-bottom: 20px;
}

.tablet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.tablet-card {
  height: 108px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(124,58,237,.11), rgba(124,58,237,.02)),
    #fff;
  border: 1px solid #eadfff;
}

.market-badges {
  position: absolute;
  right: 0;
  top: 32px;
  display: grid;
  gap: 16px;
  z-index: 3;
}

.bag {
  position: absolute;
  right: 30px;
  bottom: 12px;
  width: 120px;
  height: 120px;
  border-radius: 28px 28px 18px 18px;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  box-shadow: 0 20px 42px rgba(91, 33, 232, .28);
}

.bag::before {
  content: "";
  position: absolute;
  left: 33px;
  top: -34px;
  width: 54px;
  height: 54px;
  border: 10px solid #6d28d9;
  border-bottom: 0;
  border-radius: 40px 40px 0 0;
}

.plant {
  position: absolute;
  right: 0;
  bottom: 4px;
  width: 44px;
  height: 100px;
  background: linear-gradient(180deg, #2fb56f, #157245);
  clip-path: polygon(50% 0, 72% 26%, 55% 31%, 88% 60%, 60% 58%, 72% 100%, 50% 75%, 28% 100%, 40% 58%, 12% 60%, 45% 31%, 28% 26%);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.stat {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 14px;
  padding: 26px;
  align-items: center;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  color: var(--primary);
  background: #f0ebff;
  font-size: var(--fs-lg);
}

.stat b {
  font-size: var(--fs-xl);
  line-height: 1;
}

.stat small {
  color: var(--muted);
  font-weight: 700;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 10px;
}

.section-head h1,
.section-head h2,
.how h2 {
  margin: 0;
  font-size: var(--fs-xl);
}

.sort {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.sort select {
  width: 180px;
}

.catalog-head-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.selected-filter-chips {
  display: grid;
  gap: 12px;
  margin: 8px 0 18px;
}

.selected-filter-chips h2 {
  margin: 0;
  font-size: var(--fs-base);
}

.selected-filter-chip-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.selected-filter-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 10px;
  color: var(--primary);
  background: #f1edff;
  font-size: var(--fs-sm);
  font-weight: 900;
}

.selected-filter-chip span {
  font-size: var(--fs-md);
  line-height: 1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 398px;
  padding: 18px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.product-mp {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
}

.favorite {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #8e87b6;
  font-size: var(--fs-xl);
  cursor: pointer;
}

.product-img {
  height: 188px;
  margin: -2px 0 16px;
  border-radius: 16px;
  background:
    radial-gradient(circle at center, rgba(124,58,237,.08), transparent 58%),
    #fbfbff;
  position: relative;
}

.product-img::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 84px;
  border-radius: 22px;
  background: #ddd;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
}

.product-img-1::after {
  width: 148px;
  height: 64px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ececf2, #aeb1bf);
}

.product-img-2::after {
  width: 86px;
  height: 128px;
  border-radius: 34px 34px 18px 18px;
  background: linear-gradient(135deg, #ffe0d7, #f1a5a5);
}

.product-img-3::after {
  width: 118px;
  height: 118px;
  border-radius: 60px;
  border: 20px solid #1c2130;
  background: transparent;
}

.product-img-4::after {
  width: 130px;
  height: 132px;
  border-radius: 34px;
  background: linear-gradient(135deg, #ead8c7, #d2ac8d);
}

.product-img-5::after {
  width: 98px;
  height: 124px;
  border-radius: 26px;
  background: linear-gradient(135deg, #161b2d, #4f566b);
}

.product-img-6::after {
  width: 138px;
  height: 96px;
  border-radius: 10px;
  background: linear-gradient(135deg, #161b2d, #ff7a18);
}

.product-img-7::after {
  width: 140px;
  height: 112px;
  border-radius: 20px;
  background: linear-gradient(135deg, #f7c9c2, #f5eee9);
}

.product-img-8::after {
  width: 128px;
  height: 32px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fafafa, #b6b6bd);
}

.product-card h3 {
  min-height: 46px;
  margin: 0 0 12px;
  font-size: var(--fs-base);
  line-height: 1.35;
}

.old-price {
  color: #8990a6;
  text-decoration: none;
  margin-bottom: 4px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 18px;
}

.price-row b {
  font-size: var(--fs-lg);
}

.price-row span {
  padding: 6px 9px;
  border-radius: 8px;
  color: var(--green-text);
  background: var(--green);
  font-size: var(--fs-xs);
  font-weight: 900;
}

.btn-card {
  width: 100%;
  min-height: 44px;
  color: var(--primary);
  background: #fff;
  border-color: #c7b7ff;
}

.btn-all-products {
  width: 100%;
  min-height: 58px;
  margin-top: 20px;
  font-size: var(--fs-md);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.benefit {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 16px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.benefit:last-child {
  border-right: 0;
}

.benefit span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: var(--primary);
  background: #f0ebff;
  font-size: var(--fs-xl);
}

.benefit h3 {
  margin: 0 0 6px;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.how {
  padding: 34px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.step {
  position: relative;
  padding: 28px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #faf8ff);
  border: 1px solid var(--line);
}

.step b {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
}

.step h3 {
  margin: 18px 0 10px;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.footer {
  margin-top: 40px;
  background: var(--dark);
  color: #fff;
  border: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 42px;
  padding: 46px 0;
}

.footer-logo small {
  color: #aeb8cf;
}

.footer p {
  max-width: 360px;
  color: #b7c0d5;
  line-height: 1.6;
}

.footer h3 {
  margin: 0 0 18px;
}

.footer a:not(.logo) {
  display: block;
  color: #c9d1e3;
  margin-bottom: 12px;
}

.page-simple {
  padding-top: 34px;
}

.page-simple h1 {
  margin: 0 0 24px;
  font-size: var(--fs-2xl);
}

.messages {
  margin: 18px 0;
}

.message {
  padding: 14px 16px;
  border: 1px solid #9be7b3;
  border-radius: var(--radius-sm);
  background: #ecfdf3;
  color: #145c32;
  font-weight: 700;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fbfbff;
}

.card-body {
  padding: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #fff;
  border-radius: 8px;
  background: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.product-img.has-image::after {
  content: none;
}

.product-img img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.product-card .product-mp {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.empty-state {
  grid-column: 1 / -1;
  padding: 30px;
  border: 1px dashed #c7b7ff;
  border-radius: var(--radius-md);
  background: #fff;
}

.empty-state h3 {
  margin: 0 0 8px;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
}

/* Product card catalog v2 */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 16px;
  overflow: hidden;
}

.mp-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  height: 34px;
  padding: 0 10px;
  border-radius: 9px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 22px rgba(20, 20, 40, 0.13);
}

.marketplace-dots {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.marketplace-dot {
  width: 10px;
  height: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: transparent;
  background: var(--mp-color, #8e0cae);
  box-shadow: 0 0 0 2px #fff, 0 3px 8px rgba(20, 20, 40, .12);
  font-size: 0;
  font-weight: 900;
  line-height: 1;
}

.marketplace-dot:hover {
  width: 24px;
  height: 24px;
  color: var(--mp-text-color, #fff);
  font-size: 9px;
}

.detail-marketplace-dots {
  top: 18px;
  left: 18px;
}

.mp-wb,
.mp-wildberries,
.mp-badge[class*="wildberries"] {
  background: linear-gradient(135deg, #8e0cae, #b21dc4);
}

.mp-ozon,
.mp-badge[class*="ozon"] {
  background: linear-gradient(135deg, #0069ff, #0d8bff);
}

.mp-ym,
.mp-yandex,
.mp-badge[class*="yandex"] {
  color: #111322;
  background: linear-gradient(135deg, #ffe100, #ffc400);
}

.mp-mega {
  background: linear-gradient(135deg, #7c3aed, #5b21e8);
}

.product-image,
.product-img {
  display: grid;
  place-items: center;
  min-height: 190px;
  height: auto;
  margin: 0 0 14px;
  border-radius: 15px;
  background:
    radial-gradient(circle at 50% 58%, rgba(91, 33, 232, 0.055), transparent 42%),
    linear-gradient(180deg, #fff 0%, #fbfaff 100%);
  position: relative;
}

.product-image::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  width: 110px;
  height: 84px;
  border-radius: 22px;
  background: #ddd;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.product-image.has-image::after {
  content: none;
}

.product-image img,
.product-img img {
  display: block;
  width: 88%;
  max-width: 230px;
  height: 160px;
  border-radius: 0;
  object-fit: contain;
}

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card h2,
.product-card h3 {
  display: -webkit-box;
  min-height: 44px;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--text);
  font-size: var(--card-title-size);
  line-height: 1.28;
  letter-spacing: -0.01em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-meta {
  margin: 0 0 16px;
  overflow: hidden;
  color: var(--muted);
  font-size: var(--card-meta-size);
  line-height: 1.3;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.product-meta span {
  margin: 0 8px;
  color: #a6abc0;
}

.product-mobile-meta {
  display: none;
}

.price-block {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 16px;
}

.prices {
  display: grid;
  gap: 3px;
}

.price-block .old-price {
  width: fit-content;
  color: #8990a6;
  font-size: var(--card-meta-size);
  line-height: 1;
  text-decoration: line-through;
}

.final-price {
  display: inline-flex;
  align-items: baseline;
  gap: .12em;
  color: var(--text);
  font-size: var(--card-price-size);
  line-height: 1.08;
  letter-spacing: .02em;
  white-space: nowrap;
}

.profit-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.profit-badge {
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 9px;
  color: var(--green-text);
  background: var(--green);
  font-size: var(--card-badge-size);
  font-weight: 900;
  white-space: nowrap;
}

.profit-badge-percent,
.profit-badge--percent {
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #4c1dff);
}

.profit-badge-amount,
.profit-badge--rub {
  color: var(--green-text);
  background: var(--green);
}

.btn-card {
  display: inline-grid;
  place-items: center;
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  color: var(--primary);
  background: #fff;
  border: 1px solid #c7b7ff;
  border-radius: 10px;
  font-weight: 900;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.btn-card:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: transparent;
}

.product-card {
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(51, 34, 116, .07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: #cabdff;
  box-shadow: 0 24px 56px rgba(51, 34, 116, .13);
}

.mp-wildberries,
.mp-wb {
  background: linear-gradient(135deg, #8e0cae, #b21dc4);
}

.detail {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 32px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
}

.detail-img {
  width: 100%;
  border-radius: var(--radius-md);
}

.characteristics-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.characteristic-row {
  display: grid;
  grid-template-columns: minmax(150px, .8fr) 1fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.characteristic-row span {
  color: var(--muted);
}

.characteristic-row b {
  font-weight: 800;
}

/* Product detail page v2 */
.product-detail-page {
  max-width: 1440px;
}

.detail-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.detail-breadcrumbs a {
  color: #413a58;
  font-weight: 700;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.68fr) minmax(320px, .82fr);
  gap: 22px;
  align-items: start;
}

.main-column,
.sidebar-column {
  display: grid;
  gap: 18px;
}

.detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.product-top-card {
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
  gap: 24px;
  padding: 22px;
}

.detail-title-block {
  grid-column: 1 / -1;
}

.detail-title-block h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.12;
}

.detail-gallery-main {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 60%, rgba(91, 33, 232, .08), transparent 45%),
    linear-gradient(180deg, #fff, #fbfaff);
}

.detail-gallery-main .mp-badge {
  top: 16px;
  left: 16px;
}

.detail-gallery-main img {
  display: block;
  width: 88%;
  max-width: 360px;
  max-height: 380px;
  object-fit: contain;
}

.detail-mobile-meta,
.detail-gallery-dots,
.detail-mobile-price-card,
.detail-mobile-description {
  display: none;
}

.detail-image-placeholder {
  display: grid;
  place-items: center;
  width: 70%;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  color: var(--muted);
  background: #f3efff;
  font-weight: 900;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--muted);
  font-weight: 700;
}

.meta-row span + span::before {
  content: "/";
  margin-right: 10px;
  color: #a6abc0;
}

.lead,
.detail-text {
  color: #35394d;
  font-size: 17px;
  line-height: 1.65;
}

.lead {
  max-width: 680px;
  margin: 0 0 28px;
}

.meta-list {
  display: grid;
  gap: 12px;
  color: #524b68;
  font-size: 16px;
}

.meta-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.meta-icon,
.section-icon,
.service-note-icon {
  display: inline-grid;
  place-items: center;
  color: var(--primary);
  background: #f1edff;
  font-weight: 900;
}

.meta-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  font-size: 13px;
}

.section-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 15px;
}

.accordion-card {
  padding: 10px 22px 18px;
}

.accordion-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 10px 0 8px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.accordion-title {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 18px;
  font-weight: 900;
}

.accordion-arrow {
  color: #615a79;
  font-size: 20px;
  transition: transform .18s ease;
}

.accordion-card:not(.is-open) .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-content {
  padding-top: 8px;
}

.accordion-card:not(.is-open) .accordion-content {
  display: none;
}

.steps-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 4px 0 0;
  list-style: none;
  counter-reset: step;
}

.steps-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  color: #2d2740;
  font-size: 16px;
  line-height: 1.55;
  counter-increment: step;
}

.steps-list li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: var(--primary);
  background: #f1edff;
  font-weight: 900;
}

.partial-text {
  position: relative;
  max-height: 120px;
  overflow: hidden;
}

.partial-text::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff);
}

.partial-text.expanded {
  max-height: none;
}

.partial-text.expanded::after {
  display: none;
}

.btn-inline {
  margin-top: 18px;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 26px;
}

.specs-grid.collapsed .spec-item:nth-child(n+7) {
  display: none;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #e8e5f2;
  font-size: 15px;
}

.spec-item span {
  color: var(--muted);
}

.spec-item strong {
  text-align: right;
}

.service-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: linear-gradient(135deg, #f6f1ff, #fbfaff);
}

.service-note-icon {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 24px;
}

.service-note-title {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 900;
}

.service-note p {
  margin: 0;
  color: #48425d;
  font-size: 16px;
  line-height: 1.6;
}

.price-card,
.info-card {
  padding: 26px;
}

.offer-price-card {
  --card-bg: #ffffff;
  --card-border: #e7defd;
  --divider: #ece5ff;
  --text-main: #18162f;
  --text-muted: #7f7a99;
  --purple: #5e2cf1;
  --purple-dark: #4d18dc;
  --green: #15884f;
  --green-bg: #dff5e8;

  box-sizing: border-box;
  padding: 26px 26px 18px;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  background: var(--card-bg);
}

.offer-price-card__section {
  margin-bottom: 18px;
}

.offer-price-card__label {
  margin: 0 0 14px;
  color: #403d63;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.offer-price-card__marketplace-price {
  color: #8e88a7;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  text-decoration: line-through;
}

.offer-price-card__divider {
  height: 1px;
  margin: 0 0 18px;
  background: var(--divider);
}

.offer-price-card__final-price {
  color: var(--purple);
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.offer-price-card__stats {
  overflow: hidden;
  margin: 6px 0 16px;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  background: #fff;
}

.offer-price-card__stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--divider);
}

.offer-price-card__stat-row:last-child {
  border-bottom: 0;
}

.offer-price-card__stat-text {
  flex: 1 1 auto;
  min-width: 0;
}

.offer-price-card__stat-title {
  margin: 0 0 6px;
  color: var(--text-main);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.offer-price-card__stat-hint {
  max-width: 220px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
}

.offer-price-card__badge {
  box-sizing: border-box;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  min-height: 52px;
  padding: 10px 18px;
  border-radius: 14px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.offer-price-card__badge--green {
  color: var(--green);
  background: var(--green-bg);
}

.offer-price-card__badge--purple {
  color: #fff;
  background: linear-gradient(135deg, #6f31ff 0%, var(--purple-dark) 100%);
}

.offer-price-card__note {
  color: #6f6b88;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

@media (max-width: 1270px) {
  .offer-price-card {
    padding: 22px 22px 16px;
  }

  .offer-price-card__marketplace-price {
    font-size: 32px;
  }

  .offer-price-card__final-price {
    font-size: 50px;
  }

  .offer-price-card__badge {
    min-width: 96px;
    font-size: 20px;
  }
}

.price-label {
  color: #3b3450;
  font-size: 18px;
  font-weight: 900;
}

.price-label-spaced {
  margin-top: 24px;
}

.price-old {
  margin-top: 10px;
  color: #8c89a1;
  font-size: 34px;
  font-weight: 900;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
}

.price-main {
  margin-top: 10px;
  color: var(--primary);
  font-size: 44px;
  line-height: 1;
  font-weight: 900;
}

.benefit-box {
  margin-top: 22px;
  padding: 20px 18px;
  border-radius: 18px;
  color: var(--green-text);
  background: var(--green);
}

.benefit-box-label {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 800;
}

.benefit-box-value {
  font-size: 27px;
  line-height: 1.1;
  font-weight: 900;
}

.price-note,
.muted-note {
  color: #5f5877;
  font-size: 16px;
  line-height: 1.55;
}

.divider {
  height: 1px;
  margin: 22px 0;
  background: var(--line);
}

.sidebar-title,
.info-card-title,
.complaint-title {
  font-size: 18px;
  font-weight: 900;
}

.contact-buttons {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.btn-telegram {
  width: 100%;
  color: #fff;
  background: linear-gradient(135deg, #36a9ff, #1b79ff);
}

.btn-max {
  width: 100%;
  color: #fff;
  background: linear-gradient(135deg, #6930ff, #4713d8);
}

.seller-name {
  margin-top: 6px;
  font-size: 24px;
  font-weight: 900;
}

.seller-head {
  display: flex;
  gap: 14px;
  align-items: center;
}

.seller-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 24px rgba(91, 33, 232, .18);
  font-size: 24px;
  font-weight: 900;
}

.stats-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.stat-row {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid #eee9ff;
  border-radius: 16px;
  background: #fbfaff;
}

.stat-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: var(--primary);
  background: #f1edff;
  font-weight: 900;
}

.stat-row strong {
  display: block;
  color: var(--text);
  font-size: 28px;
  line-height: 1;
}

.stat-row span {
  color: #5b556f;
}

.seller-products-link {
  margin-top: 18px;
}

.form-card {
  max-width: 760px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow);
}

.form-card p {
  margin: 0 0 16px;
}

.form-card label {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

/* Seller login */
.auth-panel {
  max-width: 980px;
  margin: 0 auto;
}

.auth-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 26px;
}

.auth-head h1 {
  margin: 0 0 10px;
  font-size: 44px;
  line-height: 1.1;
}

.auth-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.auth-register-link {
  flex: 0 0 auto;
  padding-top: 12px;
  color: var(--muted);
  font-weight: 800;
}

.auth-register-link a,
.auth-bottom-note a {
  color: var(--primary);
  font-weight: 900;
}

.auth-form {
  display: grid;
  gap: 22px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}

.auth-field {
  display: grid;
  gap: 10px;
}

.auth-field label {
  font-size: 18px;
  font-weight: 900;
}

.auth-field input {
  width: 100%;
  min-height: 58px;
  border: 1px solid #dcd8ea;
  border-radius: 14px;
  padding: 0 16px;
  color: var(--text);
  background: #fff;
  font: inherit;
  outline: none;
}

.auth-field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(90, 34, 232, .08);
}

.auth-form .btn {
  justify-self: start;
  min-width: 130px;
}

.auth-bottom-note {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px;
  border: 1px solid #dcd5fb;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow);
}

.table th,
.table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.table th {
  background: #f3efff;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.actions a,
.link-danger {
  color: var(--primary);
  font-weight: 900;
}

.link-danger {
  color: #dc2626;
}

.content-page {
  max-width: 980px;
  margin: 0 auto;
}

.content-hero,
.content-section,
.content-cta {
  margin-bottom: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow);
}

.content-hero {
  padding: 42px;
  background:
    radial-gradient(circle at 92% 12%, rgba(124,58,237,.18), transparent 34%),
    linear-gradient(135deg, #fff 0%, #f3efff 100%);
}

.content-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.05;
}

.content-hero p,
.content-section p,
.content-cta p {
  color: #35394d;
  font-size: 18px;
  line-height: 1.6;
}

.content-section h3,
.content-cta h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.content-list {
  margin: 14px 0 0;
  padding-left: 22px;
  color: #35394d;
  font-size: 18px;
  line-height: 1.65;
}

.content-list li {
  margin-bottom: 8px;
}

.text-link {
  color: var(--primary);
  font-weight: 900;
}

.faq-list h4 {
  margin: 20px 0 8px;
  font-size: 18px;
}

.rules-page {
  max-width: 1040px;
}

.rules-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--primary);
  background: #f0eaff;
  font-size: 13px;
  font-weight: 900;
}

.rules-hero .rules-list {
  margin-bottom: 20px;
}

.rules-list {
  margin: 12px 0 18px;
  padding-left: 24px;
  color: #35394d;
  font-size: 17px;
  line-height: 1.65;
}

.rules-list li {
  margin-bottom: 7px;
}

.rules-page .content-section h3 {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.rules-page .content-section h3 span {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-size: 14px;
  font-weight: 900;
}

.rules-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.rules-columns > div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfaff;
}

.rules-columns h4 {
  margin: 0 0 10px;
  font-size: 18px;
}

.rules-final .hero-actions {
  margin-top: 22px;
}

.seller-info-page {
  max-width: 1040px;
}

.seller-info-hero {
  background:
    radial-gradient(circle at 92% 12%, rgba(34,197,94,.14), transparent 34%),
    radial-gradient(circle at 18% 4%, rgba(124,58,237,.16), transparent 30%),
    linear-gradient(135deg, #fff 0%, #f6f2ff 100%);
}

.seller-info-tags {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.seller-info-tags span {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(124,58,237,.18);
  border-radius: 16px;
  color: #1d1733;
  background: rgba(255,255,255,.72);
  font-weight: 900;
  line-height: 1.25;
}

.seller-info-step-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.seller-info-step-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfaff;
}

.seller-info-step-grid span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-weight: 900;
}

.seller-info-step-grid h4 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.25;
}

.seller-info-step-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.seller-info-final .hero-actions {
  margin-top: 22px;
}

/* Sellers landing v5 */
.sellers-page-v5 {
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f8f7ff 45%, #fff 100%);
  color: var(--text);
}

.sellers-container {
  width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
}

.seller-hero-v5 {
  padding: 70px 0 58px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(124, 58, 237, .17), transparent 30%),
    linear-gradient(105deg, #fff 0%, #fff 45%, #f0eaff 100%);
  border-bottom: 1px solid var(--line);
}

.hero-grid-v5 {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(620px, 1.14fr);
  gap: 52px;
  align-items: center;
}

.seller-eyebrow {
  display: inline-flex;
  padding: 9px 16px;
  border-radius: 999px;
  color: var(--primary);
  background: #f0eaff;
  font-weight: 900;
}

.seller-hero-copy h1 {
  max-width: 720px;
  margin: 24px 0 22px;
  font-size: clamp(42px, 4.4vw, 72px);
  line-height: 1.06;
}

.seller-hero-copy p {
  max-width: 670px;
  margin: 0 0 36px;
  color: #30364c;
  font-size: 20px;
  line-height: 1.7;
}

.seller-hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sellers-page-v5 .btn-large {
  min-height: 62px;
  padding: 0 34px;
  font-size: 17px;
}

.seller-hero-visual {
  position: relative;
  min-height: 540px;
}

.seller-product-showcase {
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 2;
  width: 500px;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 60px rgba(57, 36, 130, .09);
}

.seller-product-photo {
  min-height: 230px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #f6f3ff, #fff);
}

.seller-headphones {
  position: relative;
  width: 138px;
  height: 150px;
  border: 18px solid #d6d5dc;
  border-bottom: 0;
  border-radius: 90px 90px 0 0;
}

.seller-headphones::before,
.seller-headphones::after {
  content: "";
  position: absolute;
  bottom: -16px;
  width: 46px;
  height: 82px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ececf1, #c9c8d0);
}

.seller-headphones::before {
  left: -24px;
}

.seller-headphones::after {
  right: -24px;
}

.seller-status {
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #1a9b55;
  background: #e6f8ee;
  font-weight: 900;
}

.seller-product-info h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.18;
}

.seller-rating {
  color: #ffb020;
  font-weight: 900;
}

.seller-rating span,
.seller-product-info small {
  color: #565d70;
  font-size: 13px;
}

.seller-product-info small {
  display: block;
  margin: 8px 0 16px;
}

.seller-product-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.seller-product-price strong {
  color: var(--primary);
  font-size: 34px;
}

.seller-product-price del {
  color: #8d92a3;
}

.seller-profit,
.seller-preview-profit {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #1a9b55;
  background: #e6f8ee;
  font-weight: 900;
}

.seller-product-details,
.seller-product-tags {
  grid-column: 1 / -1;
  display: grid;
  gap: 10px;
}

.seller-product-details {
  grid-template-columns: repeat(4, 1fr);
}

.seller-product-details span,
.seller-product-tags span {
  padding: 10px 12px;
  border: 1px solid #eee8ff;
  border-radius: 12px;
  color: #6b7084;
  background: #fbfaff;
  font-size: 13px;
}

.seller-product-details b {
  display: block;
  margin-top: 5px;
  color: var(--text);
}

.seller-product-tags {
  grid-template-columns: repeat(3, 1fr);
}

.seller-product-tags span::before {
  content: "✓";
  color: #1a9b55;
  margin-right: 6px;
  font-weight: 900;
}

.seller-product-button {
  grid-column: 1 / -1;
  min-height: 56px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #6d28d9);
  font-weight: 900;
}

.seller-cabinet-card {
  position: absolute;
  right: 10px;
  top: 75px;
  width: 230px;
  min-height: 430px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .82);
  transform: rotate(4deg);
  box-shadow: 0 22px 60px rgba(57, 36, 130, .09);
}

.seller-cabinet-card h3 {
  margin: 0 0 20px;
}

.seller-cabinet-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
  color: #535a70;
  font-size: 14px;
  font-weight: 700;
}

.seller-cabinet-card li {
  padding: 11px;
  border-radius: 10px;
}

.seller-cabinet-card li.active {
  color: var(--primary);
  background: #f1edff;
}

.seller-views-card {
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(50, 32, 120, .08);
}

.seller-views-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.seller-views-card strong {
  display: block;
  font-size: 28px;
}

.seller-views-card small {
  color: #1a9b55;
  font-weight: 900;
}

.seller-sparkline {
  height: 38px;
  margin-top: 16px;
  border-bottom: 3px solid #c7b7ff;
  border-radius: 0 0 16px 16px;
  background:
    linear-gradient(135deg, transparent 30%, rgba(96, 39, 238, .45) 31%, rgba(96, 39, 238, .45) 34%, transparent 35%),
    linear-gradient(165deg, transparent 38%, rgba(96, 39, 238, .55) 39%, rgba(96, 39, 238, .55) 43%, transparent 44%);
}

.seller-section-v5 {
  padding: 70px 0 0;
}

.seller-section-title {
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.seller-section-title h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.18;
}

.seller-section-title p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.seller-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.seller-feature-card {
  min-height: 148px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 18px;
  align-items: start;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 14px 36px rgba(57, 36, 130, .045);
}

.seller-feature-icon,
.seller-compare-head span,
.seller-cabinet-points span,
.seller-steps span {
  display: grid;
  place-items: center;
  color: var(--primary);
  background: #f0eaff;
  font-weight: 900;
}

.seller-feature-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  font-size: 24px;
  box-shadow: 0 12px 26px rgba(96, 39, 238, .10);
}

.seller-feature-card h3,
.seller-feature-card p {
  grid-column: 2;
}

.seller-feature-card h3 {
  grid-row: 1;
  align-self: end;
  margin: 0 0 9px;
  font-size: 19px;
  line-height: 1.25;
}

.seller-feature-card p {
  grid-row: 2;
  margin: 0;
  color: #4d5368;
  font-size: 15px;
  line-height: 1.52;
}

.seller-comparison-section {
  padding-top: 90px;
}

.seller-comparison {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  gap: 20px;
  align-items: center;
}

.seller-compare-box {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(57, 36, 130, .09);
}

.seller-compare-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.seller-compare-head span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.seller-telegram-icon {
  color: #fff !important;
  background: #32a9e6 !important;
}

.seller-hitro-icon {
  color: #fff !important;
  background: linear-gradient(135deg, var(--primary), var(--primary-2)) !important;
}

.seller-compare-head h3 {
  margin: 0;
  font-size: 24px;
}

.seller-telegram-post,
.seller-catalog-preview-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  margin-bottom: 22px;
  border: 1px solid #eee8ff;
  border-radius: 16px;
  background: #fbfbff;
}

.seller-post-image,
.seller-preview-photo {
  position: relative;
  height: 92px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #f4f1fb, #e8e3f7);
}

.seller-post-image::before,
.seller-preview-photo::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 40px;
  transform: translate(-50%, -35%);
  border: 9px solid #d3d0db;
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
}

.seller-post-image::after,
.seller-preview-photo::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 30px;
  transform: translate(-50%, 8px);
  border-radius: 14px;
  background:
    radial-gradient(circle at 10px 50%, #d3d0db 0 12px, transparent 12px),
    radial-gradient(circle at calc(100% - 10px) 50%, #d3d0db 0 12px, transparent 12px);
}

.seller-preview-photo::before {
  width: 40px;
  height: 48px;
}

.seller-preview-photo::after {
  width: 66px;
  height: 34px;
}

.seller-telegram-post h4,
.seller-catalog-preview-card h4 {
  margin: 0 0 6px;
}

.seller-telegram-post p {
  margin: 0 0 4px;
  font-weight: 900;
}

.seller-telegram-post small,
.seller-post-meta {
  color: var(--muted);
}

.seller-post-meta {
  grid-column: 1 / -1;
  text-align: right;
  font-size: 13px;
}

.seller-preview-rating {
  color: #ffb020;
  font-size: 13px;
  font-weight: 900;
}

.seller-preview-rating span {
  color: var(--muted);
}

.seller-catalog-preview-card strong {
  display: block;
  margin-top: 6px;
  color: var(--primary);
  font-size: 22px;
}

.seller-bad-list,
.seller-good-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #50576e;
  font-weight: 700;
  line-height: 1.45;
}

.seller-bad-list li::before,
.seller-good-list li::before {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.seller-bad-list li::before {
  content: "×";
  color: #d44755;
  background: #fff0f1;
}

.seller-good-list li::before {
  content: "✓";
  color: #1a9b55;
  background: #e6f8ee;
}

.seller-vs {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 30px rgba(96, 39, 238, .24);
  font-size: 22px;
  font-weight: 900;
}

.seller-cabinet-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: stretch;
}

.seller-dashboard-mockup {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(57, 36, 130, .09);
}

.seller-dashboard-main {
  padding: 24px;
}

.seller-dashboard-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 20px;
  font-weight: 900;
}

.seller-dashboard-head,
.seller-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.seller-dashboard-head h3 {
  margin: 0;
  font-size: 22px;
}

.seller-dashboard-head a {
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.seller-tabs {
  justify-content: flex-start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  flex-wrap: wrap;
}

.seller-tabs span.active {
  color: var(--primary);
}

.seller-dashboard-mockup table {
  width: 100%;
  border-collapse: collapse;
  color: #3f4558;
  font-size: 14px;
}

.seller-table-scroll {
  max-width: 100%;
  overflow-x: auto;
}

.seller-dashboard-mockup th {
  color: #7a8092;
  text-align: left;
  font-size: 12px;
}

.seller-dashboard-mockup th,
.seller-dashboard-mockup td {
  padding: 14px 8px;
  border-bottom: 1px solid #eee8ff;
}

.seller-mini-img {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 9px;
  background: linear-gradient(135deg, #ececf1, #c9c8d0);
}

.seller-mini-img.shoe {
  border-radius: 20px;
}

.seller-mini-img.bag {
  background: linear-gradient(135deg, #23242d, #111);
}

.seller-published,
.seller-hidden {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.seller-published {
  color: #1a9b55;
  background: #e6f8ee;
}

.seller-hidden {
  color: #656b78;
  background: #eef0f6;
}

.seller-more-link {
  display: block;
  margin-top: 20px;
  color: var(--primary);
  text-align: center;
  font-weight: 900;
}

.seller-cabinet-points {
  display: grid;
  gap: 18px;
}

.seller-cabinet-points article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(57, 36, 130, .045);
}

.seller-cabinet-points span {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  font-size: 28px;
}

.seller-cabinet-points h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.seller-cabinet-points p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.seller-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.seller-steps article {
  position: relative;
  min-height: 210px;
  padding: 34px 22px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(57, 36, 130, .045);
}

.seller-steps b {
  position: absolute;
  left: 18px;
  top: -14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
}

.seller-steps span {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 50%;
  font-size: 26px;
}

.seller-steps h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.seller-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.seller-final-cta {
  min-height: 190px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 70px;
  margin-bottom: 60px;
  padding: 34px 48px;
  overflow: hidden;
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, .2), transparent 26%),
    linear-gradient(135deg, var(--primary), #7c3aed);
}

.seller-cta-illustration {
  min-height: 128px;
  position: relative;
}

.seller-purple-bag {
  position: absolute;
  left: 75px;
  bottom: 10px;
  width: 100px;
  height: 112px;
  border-radius: 20px 20px 16px 16px;
  background: linear-gradient(135deg, #a78bfa, #4c1d95);
  box-shadow: 0 24px 48px rgba(0, 0, 0, .18);
}

.seller-purple-bag::before {
  content: "";
  position: absolute;
  left: 26px;
  top: -34px;
  width: 48px;
  height: 48px;
  border: 9px solid #c4b5fd;
  border-bottom: 0;
  border-radius: 40px 40px 0 0;
}

.seller-final-cta h2 {
  margin: 0 0 10px;
  font-size: 38px;
  line-height: 1.12;
}

.seller-final-cta p {
  margin: 0 0 22px;
  color: #efe9ff;
  font-size: 18px;
}

.seller-btn-light {
  color: var(--primary);
  background: #fff;
}

.seller-btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, .6);
}

.seller-offer-compare-v6 {
  padding: 34px;
  margin-top: 90px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 22px 58px rgba(57, 36, 130, .08);
}

.seller-compare-head-v6 {
  max-width: 880px;
  margin: 0 auto 34px;
  text-align: center;
}

.seller-compare-eyebrow-v6 {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--primary);
  background: #f0eaff;
  font-size: 14px;
  font-weight: 900;
}

.seller-compare-head-v6 h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}

.seller-compare-head-v6 p {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.seller-compare-layout-v6 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.seller-example-card-v6 {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(57, 36, 130, .06);
}

.seller-example-title-v6 {
  min-height: 98px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px 30px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #fbfaff, #f3efff);
}

.seller-example-title-v6 h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.22;
}

.seller-example-title-v6 strong {
  color: var(--primary);
}

.seller-telegram-example-v6 .seller-example-title-v6 strong {
  color: #188bd1;
}

.seller-round-icon-v6,
.seller-hitro-logo-v6 {
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
}

.seller-round-icon-v6 {
  width: 58px;
  height: 58px;
  font-size: 25px;
}

.seller-telegram-icon-v6 {
  background: #2ea7e8;
}

.seller-hitro-icon-v6,
.seller-hitro-logo-v6 {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.seller-example-body-v6 {
  padding: 26px 30px 30px;
}

.seller-channel-head-v6 {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.seller-avatar-v6 {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e4e4e8, #d7d7dc);
}

.seller-hitro-logo-v6 {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  font-size: 28px;
}

.seller-channel-head-v6 b {
  display: block;
  margin-bottom: 5px;
  font-size: 24px;
}

.seller-channel-head-v6 small {
  color: var(--muted);
  font-size: 17px;
}

.seller-verified-v6 {
  display: inline-block;
  color: var(--primary);
  font-size: 15px;
  vertical-align: 3px;
}

.seller-telegram-post-v6,
.seller-hitro-product-card-v6 {
  min-height: 190px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid #ede7fb;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(20, 20, 40, .05);
}

.seller-product-picture-v6 {
  position: relative;
  height: 150px;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 55%, rgba(0, 0, 0, .06), transparent 48%),
    linear-gradient(135deg, #f5f5f7, #ececf1);
}

.seller-product-picture-v6.seller-hoodie-v6::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 24px;
  width: 82px;
  height: 105px;
  transform: translateX(-50%);
  border-radius: 26px 26px 16px 16px;
  background: linear-gradient(135deg, #24252d, #07080d);
}

.seller-product-picture-v6.seller-hoodie-v6::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50px;
  width: 128px;
  height: 74px;
  transform: translateX(-50%);
  border-radius: 40px;
  background:
    radial-gradient(ellipse at 18px 36px, #101116 0 22px, transparent 23px),
    radial-gradient(ellipse at calc(100% - 18px) 36px, #101116 0 22px, transparent 23px);
}

.seller-post-content-v6 b {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.seller-post-content-v6 p {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.35;
}

.seller-post-footer-v6 {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-top: 20px;
  color: #8a90a4;
  font-size: 16px;
}

.seller-hitro-product-content-v6 h3 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.15;
}

.seller-rating-v6 {
  color: #ffb020;
  font-weight: 900;
}

.seller-rating-v6 span {
  color: var(--muted);
}

.seller-price-line-v6 {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 16px 0 12px;
}

.seller-price-line-v6 strong {
  font-size: 36px;
  line-height: 1;
}

.seller-price-line-v6 span {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  color: #1ca85a;
  background: #e8f8ef;
  font-weight: 900;
}

.seller-hitro-product-content-v6 p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
}

.seller-message-button-v6 {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid #d5c8ff;
  border-radius: 999px;
  color: var(--primary);
  background: #f6f1ff;
  font-weight: 900;
}

.seller-message-button-v6::before {
  content: "○";
  margin-right: 8px;
  font-size: 18px;
}

.seller-points-v6 {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: #36394c;
  font-size: 19px;
  line-height: 1.4;
}

.seller-points-v6 li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  align-items: start;
}

.seller-points-v6 li::before {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-weight: 900;
  line-height: 1;
}

.seller-bad-points-v6 li::before {
  content: "−";
  color: #f05b72;
  background: #fff0f3;
  border: 2px solid rgba(240, 91, 114, .22);
}

.seller-good-points-v6 li::before {
  content: "+";
  color: #1ca85a;
  background: #e8f8ef;
  border: 2px solid rgba(28, 168, 90, .18);
}

@media (max-width: 1200px) {
  .hero-grid-v5,
  .seller-cabinet-layout {
    grid-template-columns: 1fr;
  }

  .seller-hero-visual {
    min-height: 620px;
  }

  .seller-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .seller-comparison {
    grid-template-columns: 1fr;
  }

  .seller-compare-layout-v6 {
    grid-template-columns: 1fr;
  }

  .seller-vs {
    margin: 0 auto;
  }

  .seller-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .sellers-container {
    width: min(100% - 28px, 1400px);
  }

  .seller-hero-v5 {
    padding: 36px 0;
  }

  .hero-grid-v5 {
    gap: 0;
  }

  .seller-hero-copy h1 {
    font-size: var(--fs-3xl);
  }

  .seller-hero-copy p {
    font-size: var(--fs-base);
  }

  .seller-hero-visual {
    display: none;
  }

  .seller-product-details,
  .seller-product-tags,
  .seller-features-grid,
  .seller-steps,
  .seller-final-cta,
  .seller-telegram-post,
  .seller-catalog-preview-card {
    grid-template-columns: 1fr;
  }

  .seller-section-v5 {
    padding-top: 44px;
  }

  .seller-offer-compare-v6 {
    padding: 14px;
    margin-top: 44px;
    border-radius: 24px;
  }

  .seller-section-title h2 {
    font-size: var(--fs-2xl);
  }

  .seller-section-title p {
    font-size: var(--fs-base);
  }

  .seller-compare-head-v6 {
    margin-bottom: 20px;
    text-align: left;
  }

  .seller-compare-head-v6 h2 {
    font-size: 30px;
    line-height: 1.14;
  }

  .seller-compare-head-v6 p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.5;
  }

  .seller-compare-layout-v6 {
    gap: 20px;
  }

  .seller-example-card-v6 {
    border-radius: 22px;
  }

  .seller-example-title-v6 {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    min-height: auto;
    padding: 18px;
  }

  .seller-round-icon-v6 {
    width: 44px;
    height: 44px;
    font-size: 21px;
  }

  .seller-example-title-v6 h3 {
    font-size: 22px;
  }

  .seller-example-body-v6 {
    padding: 18px;
  }

  .seller-channel-head-v6 {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    margin-bottom: 16px;
  }

  .seller-avatar-v6,
  .seller-hitro-logo-v6 {
    width: 46px;
    height: 46px;
  }

  .seller-channel-head-v6 b {
    font-size: 20px;
  }

  .seller-channel-head-v6 small {
    font-size: 14px;
  }

  .seller-telegram-post-v6,
  .seller-hitro-product-card-v6 {
    grid-template-columns: 116px 1fr;
    gap: 14px;
    min-height: 0;
    padding: 14px;
    border-radius: 18px;
  }

  .seller-product-picture-v6 {
    height: 116px;
    border-radius: 14px;
  }

  .seller-product-picture-v6.seller-hoodie-v6::before {
    top: 17px;
    width: 62px;
    height: 82px;
  }

  .seller-product-picture-v6.seller-hoodie-v6::after {
    top: 39px;
    width: 96px;
    height: 58px;
  }

  .seller-post-content-v6 b {
    font-size: 17px;
  }

  .seller-post-content-v6 p {
    margin-bottom: 6px;
    font-size: 16px;
  }

  .seller-post-footer-v6 {
    gap: 12px;
    margin-top: 12px;
    font-size: 13px;
  }

  .seller-hitro-product-content-v6 h3 {
    font-size: 20px;
  }

  .seller-price-line-v6 {
    gap: 8px;
    margin: 10px 0 8px;
  }

  .seller-price-line-v6 strong {
    font-size: 26px;
  }

  .seller-price-line-v6 span {
    padding: 7px 10px;
    font-size: 13px;
  }

  .seller-hitro-product-content-v6 p {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .seller-message-button-v6 {
    min-height: 38px;
    padding: 0 13px;
    font-size: 14px;
  }

  .seller-points-v6 {
    gap: 14px;
    margin-top: 20px;
    font-size: 17px;
  }

  .seller-points-v6 li {
    grid-template-columns: 28px 1fr;
    gap: 10px;
  }

  .seller-points-v6 li::before {
    width: 24px;
    height: 24px;
  }

  .seller-feature-card {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 22px;
  }

  .seller-dashboard-mockup {
    overflow: hidden;
  }

  .seller-dashboard-main {
    min-width: 0;
    padding: 20px;
  }

  .seller-dashboard-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .seller-dashboard-head h3 {
    font-size: 20px;
  }

  .seller-dashboard-head a {
    width: fit-content;
  }

  .seller-table-scroll {
    overflow-x: visible;
  }

  .seller-table-scroll table,
  .seller-table-scroll tbody,
  .seller-table-scroll tr {
    display: block;
    width: 100%;
  }

  .seller-table-scroll tr:first-child {
    display: none;
  }

  .seller-table-scroll tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    padding: 16px 0;
    border-bottom: 1px solid #eee8ff;
  }

  .seller-dashboard-mockup td {
    display: grid;
    gap: 4px;
    min-width: 0;
    padding: 0;
    border-bottom: 0;
    white-space: normal;
    font-size: 14px;
  }

  .seller-dashboard-mockup td:first-child {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 42px;
    font-weight: 900;
  }

  .seller-dashboard-mockup td:not(:first-child)::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
  }

  .seller-dashboard-mockup td:last-child {
    align-items: start;
  }

  .seller-mini-img {
    flex: 0 0 34px;
    margin-right: 0;
  }

  .seller-cabinet-points article {
    grid-template-columns: 58px 1fr;
    padding: 20px;
  }

  .seller-cabinet-points span {
    width: 52px;
    height: 52px;
  }

  .seller-final-cta {
    padding: 28px;
  }

  .seller-final-cta h2 {
    font-size: var(--fs-2xl);
  }
}

@media (max-width: 480px) {
  .seller-telegram-post-v6,
  .seller-hitro-product-card-v6 {
    grid-template-columns: 1fr;
  }

  .seller-product-picture-v6 {
    height: 180px;
  }

  .seller-product-picture-v6.seller-hoodie-v6::before {
    top: 24px;
    width: 82px;
    height: 110px;
  }

  .seller-product-picture-v6.seller-hoodie-v6::after {
    top: 52px;
    width: 130px;
    height: 76px;
  }
}

/* Contacts page */
.contacts-page {
  padding: 18px 0 40px;
  background:
    radial-gradient(circle at 78% 8%, rgba(115, 56, 235, .12), transparent 31%),
    radial-gradient(circle at 14% 32%, rgba(115, 56, 235, .08), transparent 27%),
    var(--bg);
}

.contacts-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.contacts-hero {
  padding-bottom: 34px;
}

.contacts-hero-card {
  min-height: 520px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 30px;
  align-items: center;
  padding: 72px 26px 64px;
  border-radius: 0 0 28px 28px;
  background: linear-gradient(135deg, #fff 0%, #fbfaff 45%, #efe8ff 100%);
  box-shadow: var(--shadow);
}

.contacts-hero-content {
  position: relative;
  z-index: 2;
  padding-left: 24px;
}

.contacts-hero-content h1 {
  max-width: 640px;
  margin: 0 0 22px;
  color: var(--text);
  font-size: clamp(42px, 6vw, 66px);
  line-height: .98;
}

.contacts-hero-lead {
  max-width: 590px;
  margin: 0 0 38px;
  color: #2f3548;
  font-size: 21px;
  line-height: 1.5;
}

.contacts-hero-points {
  display: grid;
  gap: 22px;
}

.contacts-hero-point {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
}

.contacts-point-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--primary);
  background: #f3efff;
  font-size: 27px;
  font-weight: 900;
}

.contacts-hero-point h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.contacts-hero-point p {
  margin: 0;
  color: #596174;
  font-size: 15px;
}

.contacts-hero-illustration {
  min-height: 390px;
  position: relative;
}

.contacts-envelope {
  width: 360px;
  height: 230px;
  position: absolute;
  right: 92px;
  top: 132px;
  border-radius: 0 0 34px 34px;
  background: linear-gradient(145deg, #8e5cf0, #6a2ee7 58%, #5c22cd);
  box-shadow: 0 28px 55px rgba(84, 34, 190, .28);
}

.contacts-envelope::before {
  content: "";
  position: absolute;
  inset: -105px 38px auto;
  height: 170px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 35px rgba(72, 48, 133, .13);
}

.contacts-envelope::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 146px;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
  border-radius: 0 0 34px 34px;
  background: linear-gradient(135deg, #a076f8, #7f45ee);
}

.contacts-letter {
  position: absolute;
  z-index: 2;
  left: 116px;
  top: -34px;
  width: 126px;
  height: 82px;
}

.contacts-letter::before {
  content: "...";
  display: grid;
  place-items: center;
  width: 72px;
  height: 54px;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #b691ff, #8c55f2);
  font-weight: 900;
  letter-spacing: 6px;
}

.contacts-letter span {
  display: block;
  height: 8px;
  margin: 10px 0;
  border-radius: 99px;
  background: #dad7e5;
}

.contacts-letter span:nth-child(2) {
  width: 78%;
}

.contacts-letter span:nth-child(3) {
  width: 54%;
}

.contacts-paper-plane {
  position: absolute;
  left: 26px;
  top: 84px;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #b595ff, #7436e9);
  box-shadow: 0 20px 36px rgba(98, 34, 220, .18);
  font-size: 32px;
  transform: rotate(-18deg);
}

.contacts-paper-plane::after {
  content: "";
  position: absolute;
  left: -30px;
  top: 56px;
  width: 150px;
  height: 115px;
  border-left: 3px dashed #c8b6f4;
  border-bottom: 3px dashed #c8b6f4;
  border-radius: 0 0 0 90px;
  opacity: .8;
  transform: rotate(16deg);
}

.contacts-round-icon {
  position: absolute;
  z-index: 3;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #9865f5;
  background: #fff;
  box-shadow: 0 18px 38px rgba(86, 52, 159, .13);
  font-size: 30px;
  font-weight: 900;
}

.contacts-at {
  left: 70px;
  bottom: 52px;
}

.contacts-phone {
  left: 150px;
  bottom: 32px;
}

.contacts-plant {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 90px;
  height: 135px;
  border-radius: 0 0 26px 26px;
  background: linear-gradient(#fff, #ece8f6);
  box-shadow: 0 14px 35px rgba(35, 25, 82, .12);
}

.contacts-plant::before {
  content: "";
  position: absolute;
  left: 42px;
  top: -66px;
  width: 5px;
  height: 88px;
  border-radius: 99px;
  background: #5e9e37;
}

.contacts-plant i {
  position: absolute;
  top: -55px;
  left: 33px;
  width: 38px;
  height: 22px;
  border-radius: 22px 22px 22px 2px;
  background: #65b643;
  transform: rotate(34deg);
}

.contacts-plant i:nth-child(2) {
  top: -28px;
  left: 48px;
  transform: rotate(-28deg);
}

.contacts-plant i:nth-child(3) {
  top: -5px;
  left: 22px;
  transform: rotate(28deg);
}

.contacts-section,
.contacts-faq-section,
.contacts-trust-section {
  padding: 20px 0;
}

.contacts-card,
.contacts-faq-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 42px rgba(48, 35, 93, .04);
}

.contacts-card {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 64px;
  padding: 44px;
}

.contacts-form-column h2,
.contacts-faq-card h2 {
  margin: 0 0 16px;
  font-size: 32px;
}

.contacts-form-column > p {
  max-width: 430px;
  margin: 0 0 30px;
  color: #485066;
  font-size: 17px;
  line-height: 1.45;
}

.contacts-form {
  display: grid;
  gap: 18px;
}

.contacts-form label {
  display: grid;
  gap: 9px;
  font-size: 14px;
  font-weight: 800;
}

.contacts-form input,
.contacts-form textarea {
  width: 100%;
  border: 1px solid #ddd7f0;
  border-radius: 10px;
  outline: none;
  background: #fff;
  padding: 16px 18px;
  color: var(--text);
  font: inherit;
  transition: border .2s ease, box-shadow .2s ease;
}

.contacts-form input:focus,
.contacts-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(100, 34, 230, .09);
}

.contacts-form-error {
  color: #dc2626;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.contacts-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contacts-privacy {
  color: #697287;
  line-height: 1.45;
}

.contacts-privacy a {
  color: var(--primary);
  font-weight: 800;
}

.contacts-info-column {
  display: grid;
  align-content: start;
  gap: 28px;
}

.contacts-info-box {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px;
  background: #fff;
}

.contacts-purple-box {
  border: 0;
  background: linear-gradient(135deg, #f7f2ff, #f0eaff);
}

.contacts-info-box h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.contacts-info-box p {
  margin: 0;
  color: #4c5368;
  line-height: 1.5;
}

.contacts-info-box ul {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contacts-info-box li {
  position: relative;
  padding-left: 33px;
  color: #3c4358;
}

.contacts-info-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -3px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.contacts-box {
  display: grid;
  gap: 24px;
}

.contacts-row {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: center;
}

.contacts-row > span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: var(--primary);
  background: #f0eaff;
  font-weight: 900;
}

.contacts-row b {
  display: block;
  margin-bottom: 5px;
}

.contacts-row a {
  color: var(--primary);
  font-weight: 800;
}

.contacts-row p {
  margin: 0;
}

.contacts-note {
  padding-top: 4px;
  color: #646c80 !important;
}

.contacts-faq-card {
  padding: 28px 30px 34px;
}

.contacts-faq-card h2 {
  text-align: center;
  font-size: 26px;
}

.contacts-faq-grid {
  max-width: 940px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0 auto;
}

.contacts-faq-item {
  min-height: 208px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
}

.contacts-faq-item > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 13px;
  color: var(--primary);
  background: #f0eaff;
}

.contacts-faq-item h3 {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.35;
}

.contacts-faq-item p {
  margin: 0;
  color: #566075;
  line-height: 1.55;
}

.contacts-trust-section {
  padding-bottom: 40px;
}

.contacts-trust-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 34px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f3efff, #fbfaff);
  color: #4c5368;
}

.contacts-trust-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: var(--primary);
  background: #fff;
}

.contacts-trust-card p {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
}

/* Buyers page v1 */
.buyers-page-v1 {
  padding: 28px 0 34px;
  background:
    radial-gradient(circle at 15% 0%, rgba(123, 77, 255, .12), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(123, 77, 255, .12), transparent 34%),
    var(--bg);
}

.buyers-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.btn-large {
  min-height: 54px;
  padding-inline: 32px;
  font-size: 15px;
}

.buyers-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 56px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .95fr);
  gap: 40px;
  border: 1px solid rgba(234, 229, 251, .95);
  border-radius: 32px;
  background: linear-gradient(110deg, #fff 0%, #fff 42%, #f2ecff 100%);
  box-shadow: var(--shadow);
}

.buyers-hero-content {
  position: relative;
  z-index: 2;
}

.buyers-section-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--primary);
  background: #f0eaff;
  font-size: 13px;
  font-weight: 900;
}

.buyers-page-v1 h1,
.buyers-page-v1 h2,
.buyers-page-v1 h3,
.buyers-page-v1 p {
  margin-top: 0;
}

.buyers-page-v1 h1 {
  max-width: 645px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: .98;
  letter-spacing: 0;
}

.buyers-page-v1 h1 span {
  color: var(--primary);
}

.buyers-hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #31364b;
  font-size: 18px;
  line-height: 1.65;
}

.buyers-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.buyers-benefits {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.buyers-mini-benefit {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(234, 229, 251, .95);
  border-radius: 18px;
  background: rgba(255, 255, 255, .85);
  box-shadow: var(--shadow-soft);
  font-weight: 850;
  line-height: 1.25;
}

.buyers-mini-benefit i,
.buyers-step-card i,
.buyers-alert-card > i {
  display: grid;
  place-items: center;
  font-style: normal;
}

.buyers-mini-benefit i {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 13px;
  color: var(--primary);
  background: #f0eaff;
}

.buyers-hero-visual {
  position: relative;
  min-height: 410px;
}

.buyers-phone-card {
  position: absolute;
  z-index: 5;
  left: 115px;
  top: -10px;
  width: 220px;
  height: 382px;
  padding: 46px 16px 18px;
  border: 10px solid #171724;
  border-radius: 38px;
  background: #fff;
  box-shadow: 0 34px 75px rgba(20, 13, 54, .24);
  transform: rotate(3.5deg);
}

.buyers-phone-top {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 76px;
  height: 15px;
  border-radius: 0 0 13px 13px;
  background: #171724;
  transform: translateX(-50%);
}

.buyers-product-label {
  position: absolute;
  left: 20px;
  top: 48px;
  padding: 8px 9px;
  border-radius: 8px;
  color: #fff;
  background: #9b1cb4;
  font-size: 13px;
  font-weight: 900;
}

.buyers-heart {
  position: absolute;
  top: 51px;
  right: 18px;
  color: #9472e5;
  font-size: 27px;
}

.buyers-hoodie {
  width: 92px;
  height: 112px;
  position: relative;
  margin: 55px auto 18px;
  border-radius: 20px 20px 14px 14px;
  background: linear-gradient(135deg, #7e4cff, #541ed4);
  box-shadow: inset 0 -15px 0 rgba(0, 0, 0, .08);
}

.buyers-hoodie::before,
.buyers-hoodie::after {
  content: "";
  position: absolute;
  top: 28px;
  width: 34px;
  height: 78px;
  border-radius: 18px;
  background: inherit;
}

.buyers-hoodie::before {
  left: -23px;
  transform: rotate(12deg);
}

.buyers-hoodie::after {
  right: -23px;
  transform: rotate(-12deg);
}

.buyers-product-title {
  margin-bottom: 8px;
  font-weight: 900;
}

.buyers-old-price {
  color: #8f92a5;
  text-decoration: line-through;
  font-size: 14px;
}

.buyers-new-price {
  margin-top: 2px;
  font-size: 25px;
  font-weight: 950;
}

.buyers-profit {
  display: inline-block;
  margin-top: 10px;
  padding: 7px 10px;
  border-radius: 9px;
  color: #24934f;
  background: #eaf8ef;
  font-size: 13px;
  font-weight: 900;
}

.buyers-speech-card,
.buyers-discount-bubble,
.buyers-bag,
.buyers-box,
.buyers-plant {
  position: absolute;
}

.buyers-speech-card {
  right: 116px;
  top: 58px;
  z-index: 6;
  width: 154px;
  padding: 20px 18px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #7c4dff, var(--primary));
  box-shadow: 0 18px 38px rgba(91, 34, 230, .25);
  font-weight: 950;
  line-height: 1.25;
}

.buyers-discount-bubble {
  right: 30px;
  top: 190px;
  z-index: 7;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border-radius: 28px 28px 28px 7px;
  color: #fff;
  background: linear-gradient(145deg, #8a54ff, var(--primary));
  box-shadow: 0 18px 42px rgba(91, 34, 230, .28);
  font-size: 42px;
  font-weight: 950;
  transform: rotate(-8deg);
}

.buyers-bag {
  right: 70px;
  bottom: 48px;
  z-index: 5;
  width: 170px;
  height: 146px;
  border-radius: 20px 20px 26px 26px;
  background: linear-gradient(145deg, #8b59ff, #5820d9);
  box-shadow: 0 32px 60px rgba(91, 34, 230, .24);
}

.buyers-bag::before {
  content: "";
  position: absolute;
  left: 43px;
  top: -54px;
  width: 82px;
  height: 90px;
  border: 13px solid #6d32e8;
  border-bottom: 0;
  border-radius: 55px 55px 0 0;
}

.buyers-box {
  width: 184px;
  height: 92px;
  border-radius: 15px;
  background: linear-gradient(145deg, #c5a27a, #b5895f);
  box-shadow: 0 20px 45px rgba(73, 48, 25, .16);
}

.buyers-box span {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #fff;
  background: #0c7cff;
  font-size: 12px;
  font-weight: 900;
}

.buyers-box-1 {
  right: 70px;
  top: 204px;
}

.buyers-box-2 {
  right: 0;
  top: 266px;
}

.buyers-box-2 span {
  background: #9b1cb4;
}

.buyers-plant {
  left: 38px;
  bottom: 44px;
  z-index: 4;
  width: 50px;
  height: 116px;
  background: linear-gradient(90deg, transparent 46%, #319f56 46%, #319f56 54%, transparent 54%);
}

.buyers-plant::before,
.buyers-plant::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 26px;
  border-radius: 50% 0 50% 0;
  background: #37b76a;
}

.buyers-plant::before {
  top: 12px;
  left: -32px;
  transform: rotate(20deg);
}

.buyers-plant::after {
  top: 42px;
  right: -32px;
  transform: rotate(-18deg);
}

.buyers-content-card,
.buyers-alert-card,
.buyers-final-cta {
  border: 1px solid rgba(234, 229, 251, .95);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-soft);
}

.buyers-content-card {
  margin-top: 24px;
  padding: 42px;
  border-radius: 28px;
}

.buyers-content-card h2,
.buyers-alert-card h2,
.buyers-final-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.buyers-content-card p,
.buyers-alert-card p,
.buyers-alert-card li,
.buyers-final-cta p {
  color: #41475b;
  font-size: 16px;
  line-height: 1.7;
}

.buyers-two-column {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: 42px;
  align-items: center;
}

.buyers-about-illustration {
  min-height: 250px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
  justify-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #f6f1ff, #fff);
}

.buyers-big-icon,
.buyers-check-list,
.buyers-basket-icon {
  width: 122px;
  height: 122px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.buyers-big-icon {
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 72px;
}

.buyers-check-list {
  padding: 24px 22px;
}

.buyers-check-list span {
  display: block;
  height: 14px;
  margin: 12px 0;
  border-radius: 20px;
  background: linear-gradient(90deg, #24934f 0 18px, #e4def8 18px 100%);
}

.buyers-basket-icon {
  position: relative;
}

.buyers-basket-icon::before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 34px;
  bottom: 24px;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(145deg, #8b59ff, #5820d9);
}

.buyers-basket-icon::after {
  content: "";
  position: absolute;
  left: 40px;
  top: 20px;
  width: 42px;
  height: 34px;
  border: 8px solid #6d32e8;
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
}

.buyers-category-grid,
.buyers-steps {
  display: grid;
  gap: 16px;
}

.buyers-category-grid {
  grid-template-columns: repeat(6, 1fr);
}

.buyers-category-tile {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: .2s ease;
}

.buyers-category-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(91, 34, 230, .30);
}

.buyers-category-tile span {
  color: var(--primary);
  font-size: 42px;
}

.buyers-category-tile b {
  line-height: 1.25;
}

.buyers-note {
  margin: 18px 0 0;
}

.buyers-steps {
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.buyers-step-card {
  position: relative;
  min-height: 244px;
  padding: 30px 18px 22px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.buyers-step-number {
  position: absolute;
  top: -13px;
  left: 18px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-size: 13px;
  font-weight: 950;
}

.buyers-step-card i {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--primary);
  background: #f0eaff;
  font-size: 27px;
}

.buyers-step-card h3 {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.28;
}

.buyers-step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.buyers-alert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.buyers-alert-card {
  min-height: 270px;
  padding: 30px;
  border-radius: 26px;
}

.buyers-alert-card > i {
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-size: 25px;
}

.buyers-alert-card h2 {
  font-size: 22px;
}

.buyers-alert-card ul {
  margin: 0;
  padding-left: 20px;
}

.buyers-alert-card .btn {
  width: 100%;
  margin-top: 16px;
}

.buyers-alert-warning {
  background: linear-gradient(135deg, #fff6df, #fff);
}

.buyers-alert-success {
  background: linear-gradient(135deg, #eaf8ef, #fff);
}

.buyers-alert-support {
  background: linear-gradient(135deg, #f0eaff, #fff);
}

.buyers-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
}

.buyers-faq-item {
  border: 1px solid var(--line);
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
}

.buyers-faq-question {
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.buyers-faq-question span {
  color: var(--primary);
  font-size: 20px;
}

.buyers-faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.buyers-faq-item.open .buyers-faq-answer {
  display: block;
}

.buyers-faq-item.open .buyers-faq-question span {
  transform: rotate(180deg);
}

.buyers-final-cta {
  margin-top: 24px;
  margin-bottom: 34px;
  padding: 46px 54px;
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 34px;
  align-items: center;
  border-radius: 30px;
  background: linear-gradient(135deg, #f6f1ff, #fff);
  overflow: hidden;
}

.buyers-cta-illustration {
  min-height: 174px;
  position: relative;
}

.buyers-bag-large {
  left: 130px;
  right: auto;
  bottom: 12px;
  width: 158px;
  height: 132px;
}

.buyers-plant-large {
  left: 48px;
  bottom: 24px;
}

.buyers-shadow-card {
  position: absolute;
  left: 190px;
  bottom: 16px;
  width: 210px;
  height: 118px;
  border-radius: 28px;
  background: rgba(91, 34, 230, .08);
}

.buyers-cta-content p {
  max-width: 560px;
}

.buyers-mini-benefit {
  align-items: flex-start;
}

.buyers-mini-benefit span {
  display: block;
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
}

.buyers-mini-benefit b {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.buyers-telegram-advantage {
  --advantage-line: #e9e2fb;
  --advantage-muted: #6f7488;
  --advantage-green: #19a65a;
  --advantage-green-soft: #e8f8ef;
  width: min(1440px, calc(100% - 48px));
  background: linear-gradient(180deg, #ffffff 0%, #fbfaff 100%);
  border: 1px solid var(--advantage-line);
  border-radius: 32px;
  padding: 36px;
  box-shadow: 0 18px 55px rgba(75, 47, 168, 0.08);
}

#how-it-works.buyers-content-card {
  width: min(1180px, calc(100% - 48px));
}

#how-it-works .buyers-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

#how-it-works .buyers-step-card {
  min-height: 358px;
}

.buyers-advantage-top {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(500px, .95fr);
  gap: 30px;
  align-items: start;
}

.buyers-advantage-intro h2 {
  margin: 18px 0 18px;
  font-size: clamp(38px, 3.4vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
}

.buyers-advantage-intro h2 span,
.buyers-bottom-note strong {
  color: var(--primary);
}

.buyers-advantage-intro > p {
  max-width: 760px;
  margin: 0 0 26px;
  color: #51576b;
  font-size: 18px;
  line-height: 1.75;
}

.buyers-advantage-summary {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--advantage-line);
  border-radius: 22px;
  background: linear-gradient(135deg, #fbf9ff, #f6f1ff);
}

.buyers-advantage-summary-icon,
.buyers-advantage-icon,
.buyers-bottom-note span {
  display: grid;
  place-items: center;
  color: var(--primary);
  background: #f0eaff;
  font-weight: 900;
}

.buyers-advantage-summary-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  font-size: 24px;
  box-shadow: 0 10px 22px rgba(95, 44, 242, .12);
}

.buyers-advantage-summary h3 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.25;
}

.buyers-advantage-summary p,
.buyers-advantage-card p,
.buyers-compare-panel li {
  margin: 0;
  color: var(--advantage-muted);
  line-height: 1.7;
}

.buyers-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.buyers-compare-panel {
  display: grid;
  grid-template-rows: 58px auto auto;
  gap: 14px;
  align-content: start;
}

.buyers-panel-title {
  display: grid;
  place-items: center;
  min-height: 58px;
  border: 1px solid var(--advantage-line);
  border-radius: 18px;
  background: #fbfbfd;
  color: #555869;
  font-size: 17px;
  font-weight: 850;
}

.buyers-panel-title-hitro {
  color: var(--primary);
  background: linear-gradient(135deg, #faf8ff, #f2ecff);
}

.buyers-telegram-card,
.buyers-hitro-card {
  height: 330px;
  min-height: 330px;
  border: 1px solid var(--advantage-line);
  border-radius: 18px;
  background: #fff;
  padding: 20px;
  overflow: hidden;
}

.buyers-telegram-header {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.buyers-telegram-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ddd, #f1f1f1);
}

.buyers-telegram-header strong {
  display: block;
  font-size: 19px;
}

.buyers-telegram-header small {
  display: block;
  margin-top: 3px;
  color: var(--advantage-muted);
}

.buyers-message-card {
  position: relative;
  width: 100%;
  max-width: 260px;
  padding: 17px 17px 16px;
  border-radius: 16px;
  background: #fafafa;
  box-shadow: inset 0 0 0 1px #efefef;
}

.buyers-message-card span {
  display: block;
  margin-bottom: 8px;
  font-weight: 850;
}

.buyers-message-card p {
  margin: 0 0 4px;
  color: #3f4353;
  font-size: 16px;
}

.buyers-message-card small {
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: #8f93a7;
}

.buyers-blur-lines {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  opacity: .55;
}

.buyers-blur-lines span {
  height: 16px;
  max-width: 280px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f1f1f4, #e5e5eb, #f7f7f8);
  filter: blur(2px);
}

.buyers-blur-lines span:nth-child(2) {
  width: 78%;
}

.buyers-blur-lines span:nth-child(3) {
  width: 62%;
}

.buyers-hitro-card {
  display: grid;
  align-content: start;
  gap: 12px;
  background: linear-gradient(180deg, #fff, #fcfbff);
}

.buyers-hitro-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.buyers-market-badge {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #8e0cae, #b21dc4);
  font-size: 13px;
  font-weight: 900;
}

.buyers-status-badge,
.buyers-profit-pill,
.buyers-active-pill,
.buyers-green-strip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--advantage-green);
  background: var(--advantage-green-soft);
  font-weight: 850;
}

.buyers-status-badge {
  padding: 8px 12px;
  font-size: 14px;
}

.buyers-hitro-card h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.12;
}

.buyers-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  align-items: end;
}

.buyers-price-row small {
  display: block;
  margin-bottom: 4px;
  color: var(--advantage-muted);
  font-size: 14px;
  font-weight: 750;
}

.buyers-price-row strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.buyers-profit-pill {
  width: fit-content;
  padding: 8px 12px;
  font-size: 14px;
}

.buyers-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.buyers-details-grid div {
  min-height: 72px;
  padding: 12px;
  border: 1px solid #eee8ff;
  border-radius: 14px;
  background: #f8f6ff;
}

.buyers-details-grid span {
  display: block;
  margin-bottom: 5px;
  color: var(--advantage-muted);
  font-size: 12px;
  font-weight: 750;
}

.buyers-details-grid b {
  font-size: 14px;
  line-height: 1.22;
}

.buyers-pluses,
.buyers-minuses {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.buyers-pluses li::before,
.buyers-minuses li::before {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: -3px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.buyers-pluses li::before {
  content: "✓";
  color: var(--primary);
  background: #f1edff;
}

.buyers-minuses li::before {
  content: "×";
  color: #8e93a7;
  background: #f1f1f3;
}

.buyers-advantage-benefits {
  display: grid;
  grid-template-columns: minmax(370px, 1.55fr) repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
  align-items: stretch;
}

.buyers-advantage-card {
  display: flex;
  min-height: 626px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--advantage-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(77, 42, 173, 0.04);
}

.buyers-advantage-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.buyers-advantage-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-size: 24px;
}

.buyers-advantage-icon.buyers-green {
  color: #1caa5e;
  background: #ebf8ef;
}

.buyers-advantage-card-head > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: #8d6cff;
  font-weight: 900;
}

.buyers-advantage-card-head > span.buyers-green {
  color: #235c3c;
  background: #97d8af;
}

.buyers-advantage-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.18;
}

.buyers-advantage-card p {
  font-size: 15px;
}

.buyers-mini-preview {
  min-height: 150px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid #ede6ff;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, #fcfbff);
}

.buyers-advantage-card .buyers-mini-preview {
  margin-top: auto;
}

.buyers-preview-catalog {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 12px;
}

.buyers-sidebar-mini {
  padding: 10px;
  border-radius: 14px;
  background: #f7f4ff;
}

.buyers-mini-title {
  margin-bottom: 8px;
  color: #6a6980;
  font-size: 12px;
  font-weight: 850;
}

.buyers-mini-line {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #52556a;
  font-size: 12px;
  font-weight: 750;
}

.buyers-mini-line.active {
  color: var(--primary);
  background: #ede6ff;
}

.buyers-product-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.buyers-mini-product-card {
  display: grid;
  align-content: end;
  gap: 8px;
  min-height: 120px;
  padding: 12px;
  border: 1px solid #f0ebff;
  border-radius: 14px;
  background: #fbfbff;
}

.buyers-mini-product-card span {
  width: 58px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #efeafd, #dad0ff);
}

.buyers-mini-product-card b,
.buyers-mini-product-card i,
.buyers-mini-title-line,
.buyers-mini-price-line {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: #e9e4f7;
}

.buyers-mini-product-card i {
  width: 55%;
}

.buyers-preview-status {
  position: relative;
}

.buyers-active-pill {
  padding: 8px 12px;
  font-size: 14px;
}

.buyers-preview-status strong {
  display: block;
  margin-top: 24px;
  font-size: 24px;
  line-height: 1.35;
}

.buyers-check-circle {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: #1fb463;
  font-weight: 900;
}

.buyers-preview-product {
  display: grid;
  align-items: stretch;
}

.buyers-product-card-mini {
  display: grid;
  gap: 12px;
}

.buyers-mini-badge {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #8e0cae, #b21dc4);
  font-size: 12px;
  font-weight: 900;
}

.buyers-mini-title-line {
  width: 90%;
  height: 14px;
}

.buyers-mini-price-line {
  width: 52%;
  height: 14px;
}

.buyers-green-strip {
  width: 100%;
  padding: 9px 10px;
  font-size: 14px;
}

.buyers-preview-cta ul {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
  color: #505468;
  font-size: 15px;
  list-style: none;
}

.buyers-preview-cta .buyers-accent {
  color: var(--advantage-green);
}

.buyers-preview-cta a {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #7b4cff);
  font-weight: 850;
}

.buyers-bottom-note {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid var(--advantage-line);
  border-radius: 999px;
  background: linear-gradient(135deg, #faf8ff, #f3eeff);
}

.buyers-bottom-note span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 18px;
}

.buyers-bottom-note p {
  margin: 0;
  font-size: 18px;
  font-weight: 750;
}

/* Seller dashboard v1 */
.seller-dashboard-page {
  max-width: 1540px;
}

.lk-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.lk-sidebar {
  display: grid;
  gap: 16px;
}

.lk-menu,
.lk-support-card,
.lk-products-card,
.lk-stat-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}

.lk-menu {
  display: grid;
  gap: 4px;
  padding: 14px;
}

.lk-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 13px;
  color: #4e4961;
  font-weight: 800;
}

.lk-menu-item-active {
  color: var(--primary);
  background: #f1edff;
}

.lk-menu-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: currentColor;
  font-weight: 900;
}

.lk-support-card {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.lk-support-card h2 {
  margin: 0;
  font-size: 18px;
}

.lk-support-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.lk-support-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: var(--primary);
  background: #f1edff;
  font-size: 17px;
}

.lk-support-row small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
}

.lk-support-row a {
  color: var(--primary);
  font-weight: 900;
}

.lk-content {
  min-width: 0;
}

.lk-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 26px;
}

.lk-heading h1 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.12;
}

.lk-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.lk-heading-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lk-account {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  justify-content: flex-end;
}

.lk-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #7b10a3, #5b24e8);
  font-weight: 900;
}

.lk-account strong {
  display: block;
  line-height: 1.1;
}

.lk-account span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.lk-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.lk-stat-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border-radius: 18px;
}

.lk-stat-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
}

.lk-stat-icon-purple {
  color: var(--primary);
  background: #f1edff;
}

.lk-stat-icon-green {
  color: #228a3a;
  background: #eaf8ee;
}

.lk-stat-icon-yellow {
  color: #ad7100;
  background: #fff6df;
}

.lk-stat-icon-red {
  color: #e64242;
  background: #fff0f0;
}

.lk-stat-card span {
  display: block;
  margin-bottom: 4px;
  color: #4b465d;
  font-weight: 800;
}

.lk-stat-card strong {
  display: block;
  font-size: 30px;
  line-height: 1;
}

.lk-products-card {
  padding: 24px;
}

.lk-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.lk-section-head h2 {
  margin: 0;
  font-size: 22px;
}

.lk-table-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.lk-search-field {
  position: relative;
  min-width: 260px;
  flex: 1;
}

.lk-search-field input,
.lk-table-toolbar select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: #333047;
  outline: none;
}

.lk-search-field input {
  padding-right: 38px;
}

.lk-search-field span {
  position: absolute;
  top: 50%;
  right: 13px;
  color: var(--primary);
  transform: translateY(-50%);
}

.lk-table-toolbar select {
  max-width: 220px;
}

.lk-table-wrap {
  width: 100%;
}

.lk-products-table {
  width: 100%;
  border-collapse: collapse;
}

.lk-products-table th {
  padding: 12px 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfbfe;
  color: #77738b;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
}

.lk-products-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #eeecf6;
  vertical-align: middle;
  font-size: 14px;
}

.lk-product-cell {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 190px;
}

.lk-product-cell img,
.lk-product-placeholder {
  width: 58px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f6f6fb;
}

.lk-product-cell img {
  object-fit: cover;
}

.lk-product-placeholder {
  display: grid;
  place-items: center;
  color: var(--primary);
  font-weight: 900;
}

.lk-product-cell strong {
  display: block;
  margin-bottom: 3px;
}

.lk-product-title-link {
  color: inherit;
}

.lk-product-title-link:hover {
  color: var(--primary);
}

.lk-product-cell span,
.lk-products-table small {
  color: var(--muted);
  font-size: 13px;
}

.lk-mp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(135deg, #9c179d, #6c28e8);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(61, 35, 120, .14);
  overflow: hidden;
}

.lk-mp-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.lk-mp img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lk-mp-ozon {
  background: #006cf5;
}

.lk-mp-yandex,
.lk-mp-ym {
  color: #1a1624;
  background: #ffcc00;
}

.lk-profit {
  color: #228a3a;
  font-weight: 900;
}

.lk-status {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: #f1edff;
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
}

.lk-status-published {
  color: #228a3a;
  background: #eaf8ee;
}

.lk-status-draft {
  color: #ad7100;
  background: #fff6df;
}

.lk-status-scheduled {
  color: var(--primary);
  background: #f1edff;
}

.lk-status-finished {
  color: #657085;
  background: #eef1f6;
}

.lk-status-hidden {
  color: #e64242;
  background: #fff0f0;
}

.lk-actions {
  position: relative;
  width: 64px;
  text-align: center;
}

.lk-actions-menu {
  position: relative;
  display: inline-block;
}

.lk-actions-menu summary {
  display: inline-grid;
  place-items: center;
  gap: 3px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  list-style: none;
}

.lk-actions-menu summary::-webkit-details-marker {
  display: none;
}

.lk-actions-menu summary:hover,
.lk-actions-menu[open] summary {
  background: #f3efff;
}

.lk-actions-menu summary span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #1c2440;
}

.lk-actions-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
  min-width: 165px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: left;
}

.lk-actions-dropdown form {
  margin: 0;
}

.lk-actions-dropdown a,
.lk-actions-dropdown button {
  display: block;
  width: 100%;
  padding: 9px 10px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: var(--primary);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.lk-actions-dropdown a:hover,
.lk-actions-dropdown button:hover {
  background: #f3efff;
}

.lk-actions-dropdown .lk-actions-danger {
  color: #e64242;
}

.lk-actions-dropdown .lk-actions-danger:hover {
  background: #fff0f0;
}

.lk-empty {
  padding: 30px;
  color: var(--muted);
  text-align: center;
}

.lk-table-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.lk-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.lk-pagination a,
.lk-pagination span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid #cfc3ff;
  border-radius: 10px;
  color: var(--primary);
  background: #fff;
  font-weight: 900;
}

.lk-pagination span {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

/* Seller profile v1 */
.seller-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.seller-profile-main,
.seller-profile-form {
  display: grid;
  gap: 18px;
}

.profile-card-ui {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}

.profile-card-ui h2,
.profile-card-ui h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.profile-section-note,
.profile-hint,
.profile-counter,
.profile-avatar-upload small {
  color: var(--muted);
}

.profile-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 310px;
  gap: 24px;
  align-items: start;
  margin-top: 18px;
}

.profile-fields,
.profile-field {
  display: grid;
  gap: 8px;
}

.profile-fields {
  gap: 20px;
}

.profile-field label,
.profile-avatar-panel > label {
  font-weight: 900;
}

.profile-field em {
  color: #df3157;
  font-style: normal;
}

.profile-field input,
.profile-field textarea,
.profile-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dcd8ea;
  border-radius: 10px;
  padding: 0 14px;
  color: var(--text);
  background: #fff;
  font: inherit;
  outline: none;
}

.profile-field textarea {
  min-height: 180px;
  padding: 14px;
  resize: vertical;
  line-height: 1.55;
}

.profile-field input:focus,
.profile-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(90, 34, 232, .08);
}

.profile-field input::placeholder,
.profile-field textarea::placeholder {
  color: #a8a3b8;
  opacity: 1;
}

.profile-field input:focus::placeholder,
.profile-field textarea:focus::placeholder {
  color: transparent;
}

.profile-counter {
  font-size: 13px;
  text-align: right;
}

.profile-avatar-panel {
  display: grid;
  gap: 8px;
}

.profile-avatar-upload {
  min-height: 282px;
  padding: 24px;
  border: 1px dashed #d7d1e8;
  border-radius: 14px;
  background: #fbfbfe;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  text-align: center;
}

.profile-avatar-preview {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f1edff;
}

.profile-avatar-preview span {
  font-size: 48px;
}

.profile-avatar-preview img,
.lk-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lk-account .lk-avatar-img {
  display: block;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  min-width: 48px;
  max-width: 48px;
  max-height: 48px;
  border-radius: 50%;
  background: #f1edff;
}

.profile-file-button {
  cursor: pointer;
}

.profile-avatar-upload input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.profile-three-col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.profile-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 22px;
  margin-top: 18px;
  align-items: start;
}

.profile-contact-grid .profile-field {
  align-content: start;
}

.profile-contact-grid .profile-hint {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.35;
}

.profile-input-prefix {
  display: flex;
  align-items: center;
  border: 1px solid #dcd8ea;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.profile-input-prefix span {
  width: 48px;
  text-align: center;
  color: var(--muted);
  border-right: 1px solid #ece9f6;
}

.profile-input-prefix input {
  border: 0;
  border-radius: 0;
}

.profile-password-grid {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.profile-password-wrap {
  position: relative;
}

.profile-password-wrap input {
  padding-right: 48px;
}

.profile-password-wrap input::placeholder {
  color: transparent;
}

.profile-toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.profile-bottom-actions {
  display: flex;
  justify-content: flex-start;
  padding-top: 2px;
}

.seller-profile-aside {
  position: sticky;
  top: 24px;
}

.profile-tips-card {
  display: grid;
  gap: 20px;
}

.profile-tip {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
}

.profile-tip > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--primary);
  background: #f1edff;
}

.profile-tip strong {
  display: block;
  margin-bottom: 5px;
}

.profile-tip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

/* Seller registration v1 */
.register-page {
  width: min(100% - 32px, 1360px);
  margin: 0 auto;
  padding: 28px 0 56px;
}

.register-shell {
  min-height: 680px;
}

.register-card,
.register-form-card,
.register-features-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
}

.register-card {
  padding: 30px;
}

.register-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.register-brand {
  display: inline-flex;
  align-items: center;
}

.register-brand img {
  display: block;
  width: 210px;
  max-height: 52px;
  object-fit: contain;
}

.register-login {
  color: var(--muted);
  font-size: 18px;
}

.register-login a {
  color: var(--primary);
  font-weight: 900;
}

.register-grid {
  display: grid;
  grid-template-columns: 520px minmax(0, 1fr);
  gap: 30px;
}

.register-form-card {
  padding: 42px 44px;
  border-radius: 24px;
}

.register-form-card h1,
.register-features-card h2 {
  margin: 0;
  letter-spacing: 0;
}

.register-form-card h1 {
  font-size: 32px;
  line-height: 1.14;
}

.register-subtitle,
.register-fineprint,
.register-feature p {
  color: var(--muted);
}

.register-subtitle {
  margin: 10px 0 28px;
  font-size: 18px;
}

.register-form {
  display: grid;
  gap: 20px;
}

.register-field {
  display: grid;
  gap: 10px;
}

.register-field label {
  font-size: 20px;
  font-weight: 900;
}

.register-input-wrap {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid #dcd8ea;
  border-radius: 14px;
  background: #fff;
}

.register-input-wrap.is-error {
  border-color: #ff9aa6;
  background: #fff4f6;
}

.register-input-wrap input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font: inherit;
  font-size: 17px;
}

.register-input-wrap input::placeholder {
  color: #9a96ad;
}

.register-input-icon,
.register-toggle-password {
  color: #9a96ad;
}

.register-toggle-password {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
}

.register-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #403b54;
  font-size: 17px;
}

.register-checkbox input {
  width: 19px;
  height: 19px;
  accent-color: var(--primary);
}

.register-checkbox a,
.register-fineprint a {
  color: var(--primary);
  font-weight: 900;
}

.register-submit {
  width: 100%;
  min-height: 58px;
  border-radius: 14px;
}

.register-fineprint {
  margin: 24px 0 0;
  text-align: center;
  line-height: 1.7;
}

.register-features-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 74px 30px 24px;
}

.register-features-card::before,
.register-features-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.register-features-card::before {
  width: 430px;
  height: 430px;
  right: -150px;
  bottom: -90px;
  background: radial-gradient(circle, rgba(120,72,255,.10), rgba(120,72,255,0));
}

.register-features-card::after {
  width: 260px;
  height: 260px;
  left: 25px;
  bottom: 28px;
  background: radial-gradient(circle, rgba(255,255,255,.9), rgba(255,255,255,0));
}

.register-features-card h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
  font-size: 34px;
  line-height: 1.16;
}

.register-feature-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.register-feature {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
}

.register-feature > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--primary);
  background: #f3eeff;
  font-size: 24px;
}

.register-feature strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.register-feature p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
}

.register-illustration {
  position: relative;
  height: 300px;
  margin-top: 10px;
}

.register-pedestal {
  position: absolute;
  left: 80px;
  right: 60px;
  bottom: 18px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #e9e0ff, #d9ccff);
}

.register-bag {
  position: absolute;
  left: 160px;
  bottom: 56px;
  width: 142px;
  height: 166px;
  border-radius: 18px;
  background: linear-gradient(180deg, #7f4cff, #5f28eb);
  box-shadow: 0 26px 48px rgba(96,40,235,.28);
}

.register-bag-handle {
  position: absolute;
  left: 30px;
  top: -28px;
  width: 80px;
  height: 54px;
  border: 8px solid #7b48ff;
  border-bottom: 0;
  border-radius: 50px 50px 0 0;
}

.register-bag-logo {
  position: absolute;
  inset: 56px 42px auto;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #6c34f3;
  font-size: 36px;
  font-weight: 900;
  background: #fff;
}

.register-plant {
  position: absolute;
  left: 98px;
  bottom: 62px;
  width: 58px;
  height: 70px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #ffffff, #efecfb);
}

.register-plant::before,
.register-plant::after {
  content: "";
  position: absolute;
  border-radius: 50% 50% 12px 12px;
  background: linear-gradient(180deg, #66cc88, #35aa5a);
}

.register-plant::before {
  width: 28px;
  height: 60px;
  left: 8px;
  top: -34px;
  transform: rotate(-18deg);
}

.register-plant::after {
  width: 28px;
  height: 60px;
  right: 7px;
  top: -38px;
  transform: rotate(18deg);
}

.register-form .errorlist {
  margin: -5px 0 0;
  padding: 0;
  color: #e64242;
  list-style: none;
  font-size: 13px;
  font-weight: 800;
}

/* Seller add/edit product form */
.add-product-page {
  max-width: 1540px;
}

.add-product-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.add-sidebar {
  display: grid;
  gap: 16px;
}

.add-side-menu,
.add-support-card,
.add-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}

.add-side-menu {
  display: grid;
  gap: 4px;
  padding: 14px;
}

.add-side-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 13px;
  color: #4e4961;
  font-weight: 800;
}

.add-side-link.active {
  color: var(--primary);
  background: #f1edff;
}

.add-side-link span {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  font-weight: 900;
}

.add-support-card {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.add-support-card h2 {
  margin: 0;
  font-size: 18px;
}

.add-support-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.add-support-row > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: var(--primary);
  background: #f1edff;
}

.add-support-row small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
}

.add-support-row a {
  color: var(--primary);
  font-weight: 900;
}

.add-main {
  min-width: 0;
}

.add-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.add-topbar h1 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.12;
}

.add-topbar p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.add-seller-menu {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 190px;
  justify-content: flex-end;
}

.add-seller-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #7b10a3, #5b24e8);
  font-weight: 900;
}

.add-seller-menu strong,
.add-seller-menu span:not(.add-seller-avatar) {
  display: block;
}

.add-seller-menu span:not(.add-seller-avatar) {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.add-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.add-product-form,
.add-form-column {
  display: grid;
  gap: 18px;
}

.add-wb-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 20px;
  background: linear-gradient(135deg, #f5f0ff, #fff 68%);
}

.add-wb-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  font-size: 22px;
}

.add-wb-content label,
.add-field > label,
.add-photo-block > label {
  font-weight: 900;
}

.required-note,
.optional-note {
  display: inline-block;
  margin-left: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.required-note {
  color: #d33b55;
  font-style: italic;
}

.optional-note {
  color: var(--muted);
  font-style: italic;
}

.add-wb-content label {
  font-size: 18px;
}

.add-wb-content p,
.add-section-note,
.add-hint,
.counter,
.add-photo-block p {
  color: var(--muted);
}

.add-url-row {
  display: grid;
  grid-template-columns: 1fr 230px;
  gap: 12px;
}

.add-autofill-status {
  color: #228a3a;
  font-size: 14px;
  font-weight: 800;
}

.add-autofill-status.is-error {
  color: #dc2626;
}

.add-autofill-line {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  margin-top: 10px;
}

.add-autofill-spinner {
  width: 18px;
  height: 18px;
  border: 3px solid #e8dcff;
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: wb-autofill-spin 0.8s linear infinite;
  flex: 0 0 auto;
}

.add-autofill-cancel {
  border: 0;
  background: transparent;
  color: var(--primary);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.add-autofill-cancel:hover {
  text-decoration: underline;
}

@keyframes wb-autofill-spin {
  to {
    transform: rotate(360deg);
  }
}

.add-form-card {
  padding: 24px;
}

.add-form-card h2 {
  margin: 0 0 22px;
  font-size: 22px;
}

.add-form-card h2 span {
  margin-right: 8px;
  color: var(--muted);
}

.add-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}

.add-field {
  display: grid;
  gap: 8px;
}

.add-field-wide {
  grid-column: 1 / -1;
}

.add-field em {
  color: #df3157;
  font-style: normal;
}

.add-field input,
.add-field select,
.add-field textarea,
.add-url-row input,
.add-input-prefix input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dcd8ea;
  border-radius: 10px;
  padding: 0 14px;
  color: var(--text);
  background: #fff;
  outline: none;
}

.add-field textarea {
  min-height: 120px;
  padding: 14px;
  resize: vertical;
  line-height: 1.5;
}

.add-field input:focus,
.add-field select:focus,
.add-field textarea:focus,
.add-url-row input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(90, 34, 232, .08);
}

.add-field input:disabled {
  color: #68627a;
  background: #f7f6fb;
}

.add-input-prefix {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #dcd8ea;
  border-radius: 10px;
  background: #fff;
}

.add-input-prefix > span {
  width: 52px;
  color: var(--muted);
  text-align: center;
  border-right: 1px solid #ece9f6;
}

.add-input-prefix input {
  border: 0;
  border-radius: 0;
}

.add-category-picker {
  border: 1px solid #dcd8ea;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.add-category-search {
  padding: 10px;
  background: #fbfaff;
}

.add-category-search input {
  min-height: 44px;
  border-color: transparent;
  border-radius: 11px;
  background: #fff;
  box-shadow: inset 0 0 0 1px #ebe6f7;
}

.add-category-search input:focus {
  border-color: transparent;
  box-shadow: inset 0 0 0 1px var(--primary), 0 0 0 3px rgba(90, 34, 232, .08);
}

.add-category-list {
  max-height: 260px;
  overflow: auto;
  padding: 12px;
  border-top: 1px solid #ebe6f7;
  background: #fff;
}

.add-category-list .category-checks {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.add-category-list .category-node-row {
  display: inline-flex;
  width: 100%;
  min-height: 38px;
  gap: 8px;
  justify-content: flex-start;
}

.add-category-list .category-check {
  flex: 0 1 auto;
  font-size: 15px;
}

.add-category-list .category-check input {
  min-height: 0;
}

.add-category-list .category-toggle {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
}

.add-category-list .category-node.is-category-search-hidden {
  display: none;
}

.add-marketplace-list {
  padding: 12px;
  border: 1px solid #dcd8ea;
  border-radius: 12px;
  background: #fff;
}

.add-marketplace-list > div,
.add-marketplace-list ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.add-marketplace-list label {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #403b54;
  font-weight: 800;
  cursor: pointer;
}

.add-marketplace-list label:hover {
  background: #f6f1ff;
}

.add-marketplace-list input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.add-photo-block {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.add-photo-block > label em {
  color: #df3157;
  font-style: normal;
}

.add-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 12px;
}

.add-photo-tile,
.add-photo-drop,
.add-photo-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 150px;
  border: 1px dashed #d7d1e8;
  border-radius: 12px;
  color: var(--muted);
  background: #fbfbfe;
  text-align: center;
  overflow: hidden;
}

.add-photo-tile[hidden],
.add-photo-drop[hidden],
.add-photo-placeholder[hidden] {
  display: none;
}

.add-photo-tile {
  border-style: solid;
  background: #fff;
}

.add-photo-tile.is-main {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(90, 34, 232, .08);
}

.add-photo-tile img {
  width: 100%;
  height: 112px;
  object-fit: contain;
  background: #fff;
}

.add-photo-delete {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid #dcd8ea;
  border-radius: 8px;
  color: #231f33;
  background: rgba(255,255,255,.92);
  cursor: pointer;
  font-weight: 900;
}

.add-photo-main {
  align-self: end;
  min-height: 32px;
  margin: 0 8px 8px;
  padding: 0 10px;
  border: 1px solid #d8d2ee;
  border-radius: 9px;
  color: #4b465e;
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.add-photo-tile.is-main .add-photo-main {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border-color: transparent;
}

.add-photo-drop {
  cursor: pointer;
}

.add-photo-drop.is-dragover {
  border-color: var(--primary);
  background: #f4efff;
}

.add-photo-drop input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.add-photo-drop span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #cfc4ff;
  border-radius: 50%;
  color: var(--primary);
  font-size: 24px;
}

.add-photo-drop strong {
  color: #504962;
}

.add-photo-drop small,
.add-photo-note {
  color: var(--muted);
}

.add-photo-error {
  margin-top: 10px;
  color: #d72d4a;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.add-photo-error:empty {
  display: none;
}

.add-photo-placeholder {
  color: #d0cadc;
  font-size: 28px;
}

.add-photo-note {
  font-size: 13px;
}

.add-image-preview {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid #e5e0f4;
  border-radius: 12px;
  background: #fbfbfe;
  color: var(--muted);
  font-size: 14px;
}

.add-image-preview[hidden] {
  display: none;
}

.add-image-preview img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
}

.add-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.add-calc-box {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 96px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f7f3ff, #fbfaff);
}

.add-calc-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--primary);
  background: #f1edff;
  font-weight: 900;
}

.add-calc-box strong {
  display: block;
  font-size: 24px;
}

.add-calc-box p {
  margin: 4px 0;
  font-weight: 900;
}

.add-calc-box small {
  color: var(--muted);
}

.add-secure-note {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 16px;
  color: var(--muted);
}

.add-bottom-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 4px;
  padding-top: 16px;
}

.add-bottom-actions > div {
  display: flex;
  gap: 12px;
}

.add-right-column {
  display: grid;
  gap: 18px;
}

.add-tips-card {
  padding: 26px;
}

.add-tips-card h3 {
  margin: 0 0 24px;
  font-size: 22px;
}

.add-tip {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.add-tip:last-child {
  margin-bottom: 0;
}

.add-tip > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--primary);
  background: #f1edff;
}

.add-tip strong {
  display: block;
  margin-bottom: 5px;
}

.add-tip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.add-product-page .errorlist {
  margin: 6px 0 0;
  padding: 0;
  color: #dc2626;
  list-style: none;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 1200px) {
  .header-inner {
    grid-template-columns: 1fr;
  }

  .main-nav,
  .header-actions {
    justify-content: flex-start;
  }

  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    grid-template-columns: 1fr;
  }

  .filters {
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .detail-layout {
    grid-template-columns: 1fr;
  }

  .lk-shell {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .lk-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .add-product-shell {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .add-content-grid {
    grid-template-columns: 1fr;
  }

  .buyers-hero,
  .buyers-two-column,
  .buyers-final-cta {
    grid-template-columns: 1fr;
  }

  .buyers-hero {
    padding: 52px 36px 36px;
  }

  .buyers-hero-visual {
    min-height: 390px;
  }

  .buyers-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .buyers-category-grid,
  .buyers-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .buyers-alert-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 821px) {
  .mobile-discount-prefix {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --fs-2xs: 10px;
    --fs-xs: 11px;
    --fs-sm: 12px;
    --fs-base: 14px;
    --fs-md: 16px;
    --fs-lg: 18px;
    --fs-xl: 22px;
    --fs-2xl: 28px;
    --fs-3xl: 34px;
    --fs-hero: 24px;
    --card-title-size: 12px;
    --card-meta-size: 11px;
    --card-price-size: 17px;
    --card-badge-size: 10px;
  }

  body {
    background: #fff;
  }

  .container,
  .contacts-container,
  .buyers-container {
    width: min(100% - 24px, 1500px);
  }

  .site-header {
    border-bottom: 0;
    background: #fff;
  }

  .header-inner {
    min-height: 66px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 10px;
    align-items: center;
  }

  .logo {
    justify-content: center;
  }

  .logo-image {
    width: 164px;
    max-height: 42px;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .mobile-icon-button {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    color: var(--text);
    background: transparent;
  }

  .mobile-icon-button svg {
    display: block;
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-menu-button.is-active {
    color: var(--primary);
  }

  .mobile-site-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 45;
    display: none;
    padding: 8px 0 14px;
    border-top: 1px solid #eeeaf7;
    border-bottom: 1px solid #e4def8;
    background: rgba(255,255,255,.98);
    box-shadow: 0 22px 42px rgba(35, 24, 82, .12);
  }

  .site-header.is-mobile-menu-open .mobile-site-menu {
    display: block;
  }

  .mobile-site-menu-inner {
    display: grid;
    gap: 6px;
  }

  .mobile-site-menu a {
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 12px;
    color: #202234;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .mobile-site-menu a:hover,
  .mobile-site-menu a:focus-visible {
    color: var(--primary);
    background: #f2edff;
    outline: none;
  }

  .page {
    padding-top: 8px;
  }

  .layout,
  .cards-grid,
  .detail,
  .product-top-card,
  .specs-grid,
  .rules-columns,
  .seller-info-tags,
  .seller-info-step-grid,
  .contacts-hero-card,
  .contacts-card,
  .contacts-faq-grid,
  .buyers-actions,
  .buyers-benefits,
  .buyers-category-grid,
  .buyers-steps,
  .buyers-faq-grid,
  .buyers-about-illustration,
  .lk-shell,
  .lk-stats-grid,
  .seller-profile-grid,
  .profile-top-grid,
  .profile-three-col,
  .profile-contact-grid,
  .register-grid,
  .add-product-shell,
  .add-two-col,
  .add-calc-grid,
  .add-url-row {
    grid-template-columns: 1fr;
  }

  .content {
    gap: 18px;
  }

  .sidebar {
    display: none;
    position: fixed;
    z-index: 80;
    left: 12px;
    right: 12px;
    top: 84px;
    max-height: calc(100vh - 104px);
    overflow: auto;
    border-radius: 22px;
    box-shadow: 0 26px 70px rgba(24, 18, 61, .22);
  }

  .sidebar.is-mobile-open {
    display: block;
  }

  .sidebar .seller-mini {
    display: none;
  }

  .panel {
    padding: 22px 16px 16px;
    border-radius: 22px;
    box-shadow: none;
  }

  .panel-head h2 {
    font-size: var(--fs-md);
  }

  .filters {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .filters .btn {
    min-height: 52px;
    border-radius: 9px;
  }

  .category-node-row {
    min-height: 42px;
  }

  .category-check {
    font-size: var(--fs-sm);
  }

  .fake-check {
    width: 18px;
    height: 18px;
    border-radius: 4px;
  }

  .category-toggle {
    width: 32px;
    height: 32px;
  }

  .mobile-home-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 154px;
    min-height: 168px;
    overflow: hidden;
    padding: 22px 14px 18px 18px;
    border-radius: 16px;
    background: radial-gradient(circle at 86% 22%, rgba(124, 58, 237, .18), transparent 34%), linear-gradient(135deg, #fbf9ff 0%, #f0eaff 100%);
  }

  .mobile-home-hero h1 {
    margin: 0 0 10px;
    max-width: 220px;
    font-size: var(--fs-hero);
    line-height: 1.16;
    letter-spacing: 0;
  }

  .mobile-home-hero p {
    margin: 0 0 16px;
    max-width: 185px;
    color: #42465a;
    font-size: var(--fs-sm);
    line-height: 1.42;
  }

  .mobile-home-hero a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid var(--primary);
    border-radius: 10px;
    color: var(--primary);
    background: #fff;
    font-size: var(--fs-sm);
    font-weight: 900;
  }

  .mobile-home-hero-visual {
    position: relative;
    min-width: 0;
  }

  .mobile-hero-bag {
    position: absolute;
    right: 14px;
    bottom: 20px;
    display: grid;
    place-items: center;
    width: 74px;
    height: 86px;
    border-radius: 18px 18px 14px 14px;
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #4c1dff);
    box-shadow: 0 20px 36px rgba(76, 29, 255, .22);
    font-size: var(--fs-3xl);
    font-weight: 900;
  }

  .mobile-hero-bag::before {
    content: "";
    position: absolute;
    left: 18px;
    top: -24px;
    width: 35px;
    height: 35px;
    border: 7px solid #5b21e8;
    border-bottom: 0;
    border-radius: 28px 28px 0 0;
  }

  .mobile-hero-box {
    position: absolute;
    left: 2px;
    bottom: 20px;
    width: 72px;
    height: 50px;
    border-radius: 9px;
    background: linear-gradient(135deg, #f4b15b, #df8f2f);
    box-shadow: inset 0 12px 0 rgba(255,255,255,.18);
    transform: rotate(-2deg);
  }

  .mobile-hero-plant {
    position: absolute;
    right: -2px;
    bottom: 28px;
    width: 36px;
    height: 82px;
    background: linear-gradient(180deg, #2fb56f, #157245);
    clip-path: polygon(50% 0, 72% 24%, 58% 30%, 90% 58%, 62% 56%, 74% 100%, 50% 78%, 26% 100%, 38% 56%, 10% 58%, 42% 30%, 28% 24%);
  }

  .home-banner,
  .stats,
  .benefits,
  .how {
    display: none;
  }

  .offers-section {
    display: grid;
    gap: 0;
  }

  .section-head {
    align-items: center;
    flex-direction: row;
    gap: 10px;
    margin-top: 8px;
  }

  .section-head h1,
  .section-head h2 {
    max-width: 150px;
    font-size: var(--fs-xl);
    line-height: 1.1;
    letter-spacing: 0;
  }

  .catalog-head-actions {
    width: auto;
    justify-content: flex-end;
  }

  .sort {
    display: none;
  }

  .mobile-filter-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 44px;
    max-width: 170px;
    padding: 0 12px;
    border: 0;
    border-radius: 13px;
    color: var(--primary);
    background: #f2edff;
    font-size: var(--fs-sm);
    font-weight: 900;
    white-space: nowrap;
  }

  .mobile-filter-button svg {
    display: block;
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-section-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 20px 0 12px;
  }

  .mobile-section-row h3 {
    max-width: 190px;
    margin: 0;
    font-size: var(--fs-md);
    line-height: 1.2;
  }

  .mobile-section-row a {
    flex: 0 0 auto;
    color: var(--primary);
    font-size: var(--fs-sm);
    font-weight: 900;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-card {
    min-height: 0;
    padding: 0;
    border-color: #ece8f7;
    border-radius: 10px;
    box-shadow: none;
  }

  .product-card:hover {
    transform: none;
    box-shadow: none;
  }

  .marketplace-dots {
    top: 10px;
    left: 10px;
  }

  .marketplace-dot {
    width: 11px;
    height: 11px;
  }

  .product-image,
  .product-img {
    min-height: 112px;
    height: 112px;
    margin: 0;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    background: #f8f6f3;
  }

  .product-image img,
  .product-img img {
    width: 100%;
    max-width: none;
    height: 100%;
    padding: 3px;
    object-fit: contain;
  }

  .product-body {
    min-height: 136px;
    padding: 9px 9px 9px;
  }

  .product-card h2,
  .product-card h3 {
    min-height: 36px;
    margin-bottom: 8px;
    font-size: var(--card-title-size);
    line-height: 1.35;
    letter-spacing: 0;
  }

  .btn-card {
    display: none;
  }

  .product-meta {
    display: none;
  }

  .product-mobile-meta {
    display: block;
    min-height: 16px;
    margin: 0 0 9px;
    overflow: hidden;
    color: var(--muted);
    font-size: var(--card-meta-size);
    font-weight: 600;
    line-height: 1.25;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .product-mobile-meta span {
    margin: 0 5px;
    color: #a6abc0;
  }

  .price-block {
    align-items: end;
    margin: auto 0 0;
    gap: 8px;
  }

  .prices {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .final-price {
    font-size: var(--card-price-size);
    letter-spacing: 0;
  }

  .price-block .old-price {
    font-size: var(--card-meta-size);
  }

  .profit-badges {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
  }

  .profit-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 31px;
    padding: 6px 9px;
    border-radius: 11px;
    font-size: var(--card-badge-size);
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
  }

  .profit-badge-amount {
    color: var(--green-text);
    background: var(--green);
  }

  .profit-label {
    display: none;
  }

  .mobile-how-strip {
    display: block;
    margin: 20px 0;
    padding: 0;
    background: #fff;
  }

  .mobile-how-strip h2 {
    margin: 0 0 14px;
    font-size: var(--fs-lg);
  }

  .mobile-how-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-how-grid article {
    display: grid;
    gap: 8px;
    align-items: start;
    padding: 11px 8px;
    border-radius: 14px;
    background: #fff;
  }

  .mobile-how-grid span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    color: var(--primary);
    background: #f0e9ff;
    font-weight: 900;
  }

  .mobile-how-grid h3 {
    margin: 0 0 4px;
    font-size: var(--fs-2xs);
    line-height: 1.25;
  }

  .mobile-how-grid p {
    margin: 0;
    color: var(--muted);
    font-size: var(--fs-2xs);
    line-height: 1.3;
  }

  .btn-all-products {
    min-height: 54px;
    border-radius: 12px;
    color: var(--primary);
    background: #f1edff;
    box-shadow: none;
    font-size: var(--fs-base);
  }

  .selected-filter-chips {
    margin-top: 4px;
  }

  .selected-filter-chip-list {
    padding-bottom: 8px;
  }

  .detail-gallery-main,
  .buyers-hero-visual {
    min-height: 310px;
  }

  .product-top-card .detail-gallery {
    order: 1;
  }

  .product-top-card .detail-title-block {
    order: 2;
  }

  .product-top-card .detail-mobile-price-card {
    order: 3;
  }

  .product-top-card .detail-mobile-description {
    order: 4;
  }

  .product-top-card .product-summary {
    display: none;
  }

  .detail-title-block h1 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.24;
    letter-spacing: -0.035em;
  }

  .detail-mobile-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 0;
    color: #7a7890;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
  }

  .detail-gallery-main {
    height: 260px;
    min-height: 0;
    border-radius: 22px;
    background: #fbf9ff;
  }

  .detail-gallery-main img {
    max-width: 82%;
    max-height: 220px;
  }

  .detail-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 12px;
  }

  .detail-gallery-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #ded8fb;
  }

  .detail-gallery-dot.is-active {
    background: var(--primary);
  }

  .price-old {
    font-size: var(--fs-2xl);
  }

  .price-main {
    font-size: var(--fs-3xl);
  }

  .benefit-box-value {
    font-size: var(--fs-xl);
  }

  .detail-mobile-price-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 0;
    border: 1px solid #e5ddff;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(100, 36, 239, .05);
  }

  .detail-price-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 104px;
    align-items: center;
    gap: 14px;
    min-height: 58px;
    padding: 13px 16px;
    border-bottom: 1px solid #e5ddff;
  }

  .detail-price-row:last-child {
    border-bottom: 0;
  }

  .detail-price-row--main {
    min-height: 66px;
  }

  .detail-price-label {
    color: #111429;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
  }

  .detail-price-hint {
    margin-top: 4px;
    color: #7a7890;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.25;
  }

  .detail-price-current {
    display: inline-flex;
    align-items: baseline;
    gap: .12em;
    justify-self: end;
    color: #111429;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.045em;
    white-space: nowrap;
  }

  .detail-price-current .rub {
    font-size: .72em;
    font-weight: 700;
  }

  .detail-price-old {
    display: inline-flex;
    align-items: baseline;
    gap: .12em;
    justify-self: end;
    color: #8f8b9d;
    font-size: 17px;
    font-weight: 600;
    line-height: 1;
    text-decoration: line-through;
    white-space: nowrap;
  }

  .detail-price-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
    width: 96px;
    min-height: 40px;
    padding: 8px 10px;
    border-radius: 13px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
  }

  .detail-price-badge .rub {
    font-size: .72em;
  }

  .detail-price-badge--profit {
    color: #0b8f42;
    background: #dff8e8;
  }

  .detail-price-badge--discount {
    color: #fff;
    background: linear-gradient(135deg, #7a37ff 0%, #4b16d8 100%);
  }

  .detail-mobile-description {
    display: block;
    padding-bottom: 4px;
  }

  .detail-mobile-description h2 {
    margin: 0 0 8px;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
  }

  .detail-mobile-description-text {
    color: #24263a;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.48;
  }

  .detail-mobile-description-text p {
    margin: 0;
  }

  .detail-mobile-description-text:not(.expanded) {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .detail-mobile-show-more {
    margin-top: 6px;
    padding: 0;
    border: 0;
    color: var(--primary);
    background: transparent;
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
  }

  .detail-description-card,
  .offer-price-card,
  .price-card .sidebar-price-summary {
    display: none;
  }

  .hero {
    padding: 28px;
    min-height: auto;
  }

  .hero h1 {
    font-size: var(--fs-2xl);
  }

  .stat,
  .benefit {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child,
  .benefit:last-child {
    border-bottom: 0;
  }

  .content-hero,
  .content-section,
  .content-cta,
  .contacts-card,
  .contacts-faq-card {
    padding: 22px;
  }

  .contacts-hero-card {
    min-height: auto;
    padding: 48px 24px;
  }

  .contacts-hero-content {
    padding-left: 0;
  }

  .contacts-hero-illustration {
    display: none;
  }

  .contacts-form-column h2,
  .contacts-faq-card h2 {
    font-size: var(--fs-xl);
  }

  .contacts-form .btn {
    width: 100%;
    min-width: 0;
  }

  .contacts-trust-card {
    align-items: flex-start;
    padding: 20px;
  }

  .auth-panel {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    overflow-x: hidden;
  }

  .auth-head {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 18px;
  }

  .auth-head h1 {
    margin-bottom: 8px;
    font-size: 30px;
    line-height: 1.16;
    letter-spacing: 0;
  }

  .auth-head p {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .auth-register-link {
    min-width: 0;
    padding-top: 0;
    font-size: 15px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .auth-form {
    gap: 18px;
    padding: 22px 18px;
    border-radius: 20px;
    min-width: 0;
    max-width: 100%;
  }

  .auth-field {
    min-width: 0;
    gap: 8px;
  }

  .auth-field label {
    font-size: 16px;
    line-height: 1.25;
  }

  .auth-field input {
    min-width: 0;
    min-height: 54px;
    padding: 0 14px;
    border-radius: 13px;
    font-size: 16px;
  }

  .auth-form .btn {
    justify-self: stretch;
    width: 100%;
    min-height: 52px;
  }

  .auth-bottom-note {
    font-size: 14px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .register-page {
    width: min(100% - 24px, 430px);
    max-width: 100%;
    padding: 12px 0 32px;
    overflow-x: hidden;
  }

  .register-shell,
  .register-card,
  .register-form-card,
  .register-features-card,
  .register-form,
  .register-field,
  .register-input-wrap,
  .register-checkbox,
  .register-submit {
    min-width: 0;
    max-width: 100%;
  }

  .register-shell {
    min-height: 0;
  }

  .register-card {
    padding: 18px;
    border-radius: 22px;
    overflow: hidden;
  }

  .register-head {
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
  }

  .register-brand img {
    width: 178px;
    max-width: 100%;
  }

  .register-login {
    flex: 0 0 92px;
    font-size: 16px;
    line-height: 1.35;
    text-align: right;
  }

  .register-grid {
    gap: 16px;
  }

  .register-form-card {
    padding: 26px 20px;
    border-radius: 20px;
  }

  .register-form-card h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 26px;
    line-height: 1.18;
  }

  .register-subtitle {
    margin: 10px 0 22px;
    font-size: 16px;
    line-height: 1.45;
  }

  .register-form {
    gap: 18px;
  }

  .register-field {
    gap: 8px;
  }

  .register-field label {
    font-size: 18px;
  }

  .register-input-wrap {
    min-height: 58px;
    gap: 10px;
    padding: 0 14px;
    border-radius: 13px;
  }

  .register-input-wrap input {
    font-size: 16px;
  }

  .register-input-icon,
  .register-toggle-password {
    flex: 0 0 auto;
  }

  .register-checkbox {
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.35;
  }

  .register-checkbox input {
    flex: 0 0 auto;
    margin-top: 1px;
  }

  .register-checkbox span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .register-submit {
    min-height: 52px;
    padding-inline: 12px;
    white-space: normal;
  }

  .register-fineprint {
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .register-features-card {
    display: none;
  }

  .buyers-hero {
    padding: 34px 20px 24px;
    border-radius: 24px;
  }

  .buyers-page-v1 h1,
  .contacts-hero-content h1 {
    font-size: var(--fs-3xl);
  }

  .buyers-hero-lead,
  .contacts-hero-lead {
    font-size: var(--fs-base);
  }

  .buyers-speech-card,
  .buyers-discount-bubble,
  .buyers-box,
  .buyers-plant,
  .buyers-cta-illustration {
    display: none;
  }

  .lk-heading,
  .lk-heading-actions,
  .lk-section-head,
  .lk-table-footer,
  .add-topbar,
  .add-bottom-actions,
  .add-bottom-actions > div {
    align-items: stretch;
    flex-direction: column;
  }

  .lk-heading-actions,
  .lk-table-toolbar {
    display: grid;
  }

  .lk-account,
  .add-seller-menu {
    justify-content: flex-start;
  }

  .lk-search-field,
  .lk-table-toolbar select {
    min-width: 0;
    max-width: none;
  }

  .lk-table-wrap {
    overflow-x: auto;
  }

  .lk-products-table {
    min-width: 850px;
  }

  .seller-profile-aside {
    position: static;
  }
}

@media (max-width: 380px) {
  .mobile-home-hero {
    grid-template-columns: minmax(0, 1fr) 126px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head h1,
  .section-head h2 {
    max-width: none;
  }

  .mobile-filter-button {
    width: 100%;
    max-width: none;
    justify-content: center;
  }
}

/* Hitro home page v2: category menu, buyer helper, benefit explanation */
.panel {
  padding: 22px 20px;
}

.panel-head {
  align-items: center;
  margin-bottom: 14px;
}

.panel-head h2 {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}

.sidebar .category-check {
  gap: 10px;
  font-size: 13px;
  line-height: 1.22;
  font-weight: 700;
}

.sidebar .category-title {
  font-weight: 700;
}

.sidebar .category-level-1 > .category-node-row .category-check {
  font-weight: 800;
}

.sidebar .category-level-2 .category-check,
.sidebar .category-level-3 .category-check,
.sidebar .category-level-4 .category-check {
  font-size: 12px;
  font-weight: 600;
}

.sidebar .filters {
  gap: 18px;
}

.filter-reset-link {
  min-height: auto;
  padding: 0;
  border: 0;
  justify-content: flex-start;
  color: var(--primary);
  background: transparent;
  box-shadow: none;
}

.filter-reset-link:hover {
  transform: none;
  text-decoration: underline;
}

.buyer-mini {
  padding: 24px 22px 0;
  background:
    radial-gradient(circle at 90% 6%, rgba(124,58,237,.20), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8f5ff 100%);
}

.buyer-mini h3 {
  margin-bottom: 16px;
  font-size: 22px;
  line-height: 1.15;
}

.buyer-mini ul {
  gap: 13px;
  margin-bottom: 18px;
}

.buyer-mini li {
  position: relative;
  padding-left: 30px;
}

.buyer-mini li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin: 0;
  border-radius: 8px;
  color: var(--primary);
  background: #f0ebff;
  font-size: 12px;
}

.buyer-mini .btn {
  position: relative;
  z-index: 2;
  background: #fff;
}

.buyer-mini-visual {
  position: relative;
  height: 185px;
  margin: 20px -22px 0;
  overflow: hidden;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background:
    radial-gradient(circle at 50% 105%, rgba(91,33,232,.20), transparent 48%),
    linear-gradient(180deg, rgba(255,255,255,0), rgba(240,235,255,.92));
}

.buyer-mini-phone {
  position: absolute;
  left: 26px;
  bottom: 28px;
  width: 82px;
  height: 112px;
  border: 6px solid #fff;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0 20%, #efeaff 20% 100%);
  box-shadow: 0 18px 36px rgba(51, 34, 116, .16);
}

.buyer-mini-phone::before,
.buyer-mini-phone::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  height: 8px;
  border-radius: 99px;
  background: #d8cffc;
}

.buyer-mini-phone::before {
  top: 42px;
}

.buyer-mini-phone::after {
  top: 62px;
  width: 34px;
  right: auto;
}

.buyer-mini-bag {
  position: absolute;
  left: 108px;
  bottom: 26px;
  width: 84px;
  height: 88px;
  border-radius: 18px 18px 14px 14px;
  background: linear-gradient(135deg, #8b5cf6, #5b21e8);
  box-shadow: 0 22px 38px rgba(91, 33, 232, .26);
}

.buyer-mini-bag::before {
  content: "";
  position: absolute;
  left: 22px;
  top: -24px;
  width: 38px;
  height: 36px;
  border: 8px solid #6d28d9;
  border-bottom: 0;
  border-radius: 26px 26px 0 0;
}

.buyer-mini-bag::after {
  content: "%";
  position: absolute;
  right: -16px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, #a78bfa, #6d28d9);
  box-shadow: 0 12px 24px rgba(91, 33, 232, .22);
  font-size: 22px;
  font-weight: 900;
  transform: rotate(-10deg);
}

.buyer-mini-badge {
  position: absolute;
  right: 22px;
  bottom: 42px;
  padding: 9px 12px;
  border-radius: 12px;
  color: var(--primary);
  background: #fff;
  box-shadow: 0 14px 28px rgba(51, 34, 116, .14);
  font-size: 13px;
  font-weight: 900;
}

.why-benefit {
  margin: 22px 0 20px;
  padding: 0;
}

.why-benefit-head {
  max-width: 930px;
  margin-bottom: 16px;
}

.why-benefit h2 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

.why-benefit-head p {
  margin: 0;
  max-width: 860px;
  color: #4b5065;
  font-size: 15px;
  line-height: 1.55;
}

.why-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.why-benefit-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 15px;
  align-items: center;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(51, 34, 116, .055);
}

.why-benefit-card .why-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
}

.why-benefit-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.25;
}

.why-benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.why-benefit-card-blue .why-icon {
  color: #1670d9;
  background: #eaf3ff;
}

.why-benefit-card-purple .why-icon {
  color: var(--primary);
  background: #f0ebff;
}

.why-benefit-card-orange .why-icon {
  color: #ff7a18;
  background: #fff0df;
}

.why-benefit-card-pink .why-icon {
  color: #ff6b6b;
  background: #fff0f2;
}

.home-products-after-why {
  margin-top: 10px;
}

.how {
  margin-top: 6px;
}

.step h3 {
  line-height: 1.28;
}

@media (max-width: 1200px) {
  .why-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1201px) and (max-width: 1320px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .why-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .panel-head h2 {
    font-size: 20px;
  }

  .buyer-mini {
    display: none;
  }

  .why-benefit {
    margin: 18px 0;
  }

  .why-benefit h2 {
    font-size: 18px;
  }

  .why-benefit-head p {
    font-size: 13px;
  }

  .why-benefit-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .why-benefit-card {
    min-height: 0;
    padding: 14px;
    grid-template-columns: 46px 1fr;
  }

  .why-benefit-card .why-icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .why-benefit-card h3 {
    font-size: 14px;
  }

  .why-benefit-card p {
    font-size: 12px;
  }
}

/* === Hitro mobile fixes: footer + product price block === */
@media (max-width: 820px) {
  .footer {
    overflow: hidden;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }

  .footer-grid > *,
  .footer-column,
  .footer-brand,
  .footer p {
    min-width: 0;
    max-width: 100%;
  }

  .product-card .price-block {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 7px;
    margin: 0 0 10px;
  }

  .product-card .prices {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: flex-start;
    gap: 7px;
    min-width: 0;
    width: 100%;
  }

  .product-card .price-block .old-price {
    flex: 0 0 auto;
    width: auto;
    color: #8b879b;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
    text-decoration: line-through;
  }

  .product-card .final-price {
    display: inline-flex;
    align-items: baseline;
    gap: .12em;
    flex: 0 0 auto;
    color: #111322;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .product-card .final-price .rub {
    font-size: .72em;
    font-weight: 700;
  }

  .product-card .profit-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    width: 100%;
    min-width: 0;
  }

  .product-card .profit-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 0;
    min-height: 25px;
    padding: 5px 8px;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .product-card .profit-badge--rub,
  .product-card .profit-badge-amount {
    color: #087a35;
    background: #dff7e8;
  }

  .product-card .profit-badge--percent,
  .product-card .profit-badge-percent {
    color: #ffffff;
    background: #5a22e8;
  }

  .product-card .profit-label {
    display: none;
  }
}

@media (max-width: 380px) {
  .detail-title-block h1 {
    font-size: 21px;
  }

  .detail-gallery-main {
    height: 245px;
  }

  .detail-price-row {
    grid-template-columns: minmax(0, 1fr) 92px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .detail-price-current {
    font-size: 30px;
  }

  .detail-price-badge {
    width: 88px;
    font-size: 19px;
  }

  .product-card .prices {
    gap: 5px;
  }

  .product-card .final-price {
    font-size: 19px;
  }

  .product-card .profit-badge {
    padding: 5px 7px;
    font-size: 11px;
  }
}

/* Final home catalog menu typography/spacing */
.sidebar .panel .category-checks {
  max-height: 430px;
  padding-right: 2px;
}

.sidebar .panel .category-node {
  margin-bottom: 4px;
}

.sidebar .panel .category-node-row {
  min-height: 40px;
  padding: 0 8px;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 8px;
  border-radius: 12px;
}

.sidebar .panel .category-check {
  gap: 10px;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
}

.sidebar .panel .category-title {
  font-weight: inherit;
}

.sidebar .panel .category-node.has-children.is-open {
  padding: 6px;
  border: 1px solid #eee7ff;
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfaff 0%, #fff 100%);
}

.sidebar .panel .category-node.has-children.is-open > .category-node-row {
  background: linear-gradient(90deg, rgba(109,40,217,.10), rgba(109,40,217,.035));
}

.sidebar .panel .category-children {
  margin-left: 0;
  padding: 4px 0 4px 30px;
}

.sidebar .panel .category-children::before {
  left: 13px;
  border-left-color: #ddd4fb;
}

.sidebar .panel .category-children > .category-node {
  margin-bottom: 0;
}

.sidebar .panel .category-children > .category-node > .category-node-row {
  min-height: 36px;
  padding: 0;
  grid-template-columns: minmax(0, 1fr);
}

.sidebar .panel .category-children > .category-node > .category-node-row::before {
  left: -17px;
  width: 11px;
  border-top-color: #ddd4fb;
}

.sidebar .panel .category-children .category-check {
  gap: 8px;
  color: #4d5267;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
}

.sidebar .panel .category-children .fake-check {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
  border-width: 1.5px;
  border-radius: 5px;
}

.sidebar .panel .category-children .checkbox:checked + .fake-check::after {
  font-size: 12px;
}

@media (max-width: 820px) {
  .sidebar .panel .category-node-row {
    min-height: 40px;
  }

  .sidebar .panel .category-check {
    font-size: 15px;
    font-weight: 800;
  }

  .sidebar .panel .category-children > .category-node > .category-node-row {
    min-height: 36px;
  }

  .sidebar .panel .category-children .category-check {
    font-size: 13px;
    font-weight: 500;
  }
}

@media (max-width: 1280px) {
  .buyers-advantage-top {
    grid-template-columns: 1fr;
  }

  #how-it-works .buyers-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  #how-it-works.buyers-content-card {
    padding: 32px;
  }

  .buyers-advantage-benefits {
    align-items: start;
    grid-template-columns: 1fr 1fr;
  }

  #how-it-works .buyers-steps {
    align-items: start;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #how-it-works .buyers-step-card {
    min-height: auto;
  }

  .buyers-advantage-card {
    min-height: auto;
  }

  .buyers-advantage-card .buyers-mini-preview {
    margin-top: 22px;
  }
}

@media (max-width: 820px) {
  .buyers-telegram-advantage {
    padding: 20px;
    border-radius: 24px;
  }

  .buyers-advantage-intro h2 {
    font-size: 34px;
  }

  .buyers-advantage-intro > p {
    font-size: 16px;
  }

  .buyers-advantage-summary,
  .buyers-comparison-grid,
  .buyers-advantage-benefits,
  .buyers-bottom-note,
  .buyers-preview-catalog {
    grid-template-columns: 1fr;
  }

  .buyers-telegram-card,
  .buyers-hitro-card {
    height: auto;
    min-height: auto;
  }

  .buyers-details-grid {
    grid-template-columns: 1fr;
  }

  #how-it-works.buyers-content-card {
    width: min(100% - 24px, 1180px);
    padding: 24px;
  }

  #how-it-works .buyers-steps {
    align-items: stretch;
    grid-template-columns: 1fr;
    width: 100%;
  }

  #how-it-works .buyers-step-card {
    min-height: auto;
    width: 100%;
  }

  .buyers-bottom-note {
    border-radius: 24px;
  }
}

/* Seller invite activation */
.invite-activation-page {
  position: relative;
  min-height: calc(100vh - 82px);
  overflow: hidden;
}

.invite-dashboard-preview {
  position: relative;
  max-height: calc(100vh - 130px);
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.invite-dashboard-locked {
  opacity: 1;
}

.invite-dashboard-preview .lk-sidebar {
  top: 24px;
}

.invite-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(17, 19, 34, .46);
}

.invite-activation-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 90;
  width: min(540px, calc(100vw - 32px));
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  padding: 34px;
  border: 1px solid rgba(231, 226, 251, .95);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 32px 90px rgba(16, 23, 41, .28);
  transform: translate(-50%, -50%);
}

.invite-activation-modal h1 {
  margin: 0 0 12px;
  color: #111322;
  font-size: 31px;
  line-height: 1.18;
  letter-spacing: 0;
}

.invite-modal-subtitle {
  margin: 0 0 24px;
  color: #5d6378;
  font-size: 16px;
  line-height: 1.5;
}

.invite-modal-form {
  display: grid;
  gap: 18px;
}

.invite-modal-field {
  display: grid;
  gap: 8px;
}

.invite-modal-field label {
  font-size: 15px;
  font-weight: 900;
}

.invite-modal-input input {
  width: 100%;
  height: 54px;
  border-radius: 14px;
  border-color: #dcd5fb;
  font-size: 16px;
}

.invite-modal-input.is-error input {
  border-color: #e5484d;
  box-shadow: 0 0 0 3px rgba(229, 72, 77, .10);
}

.invite-modal-field .errorlist {
  margin: 0;
  padding: 0;
  color: #c5282f;
  list-style: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.invite-modal-submit {
  width: 100%;
  min-height: 54px;
  margin-top: 4px;
  font-size: 16px;
}

.invite-modal-note {
  margin: -4px 0 0;
  color: #6d7285;
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
}

.invite-grid {
  align-items: stretch;
}

.invite-form-card {
  min-height: 100%;
}

.invite-seller-name {
  margin: -8px 0 22px;
  padding: 12px 14px;
  border: 1px solid #e7e2fb;
  border-radius: 12px;
  color: #34364b;
  background: #fbfaff;
  font-weight: 700;
}

.invite-state-box {
  display: grid;
  gap: 18px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid #e7e2fb;
  border-radius: 18px;
  background: #fbfaff;
}

.invite-state-box p {
  margin: 0;
  color: #34364b;
  font-weight: 700;
}

.invite-state-box .btn {
  justify-self: start;
}

@media (max-width: 820px) {
  .invite-activation-page {
    width: min(100% - 20px, 100%);
    padding-top: 12px;
  }

  .invite-dashboard-preview {
    max-height: calc(100vh - 110px);
  }

  .invite-activation-modal {
    width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    padding: 24px 18px;
    border-radius: 22px;
  }

  .invite-activation-modal h1 {
    font-size: 25px;
  }

  .invite-modal-subtitle {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .invite-modal-input input {
    height: 56px;
  }

  .invite-modal-submit {
    min-height: 56px;
  }

  .invite-state-box {
    padding: 18px;
  }

  .invite-state-box .btn {
    justify-self: stretch;
  }
}

@media (max-width: 560px) {
  #how-it-works.buyers-content-card {
    padding: 22px 18px;
  }

  .buyers-mini-benefit {
    flex-direction: column;
  }

  .buyers-advantage-intro h2 {
    font-size: 30px;
  }

  .buyers-product-mini-grid {
    grid-template-columns: 1fr;
  }

  .buyers-preview-status strong {
    font-size: 21px;
  }
}

/* Home hero HTML banner */
.home-hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(340px, 1.12fr);
  gap: 28px;
  align-items: center;
  min-width: 0;
  overflow: hidden;
  padding: 42px 44px;
  border: 1px solid rgba(91, 33, 232, .08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 82% 22%, rgba(124, 58, 237, .16), transparent 28%),
    radial-gradient(circle at 10% 86%, rgba(244, 177, 91, .16), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f4f0ff 100%);
  box-shadow: var(--shadow);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
  min-width: 0;
}

.home-hero h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(38px, 3.7vw, 62px);
  line-height: 1.06;
  letter-spacing: 0;
}

.home-hero h1 span {
  display: block;
  color: var(--primary);
}

.home-hero-lead {
  margin: 0;
  max-width: 590px;
  color: #35394d;
  font-size: var(--fs-md);
  line-height: 1.55;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.home-hero-actions .btn {
  min-width: 180px;
}

.home-hero-how::after {
  content: "›";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1;
}

.home-hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.home-hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(91, 33, 232, .08);
  border-radius: 10px;
  color: #303244;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 10px 24px rgba(51, 34, 116, .08);
  font-size: var(--fs-sm);
  font-weight: 800;
}

.home-hero-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--primary);
}

.home-hero-visual {
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.home-hero-visual-card {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1.32 / 1;
  overflow: hidden;
  border: 1px solid rgba(91, 33, 232, .08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(51, 34, 116, .12);
}

.home-hero-visual-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 821px) and (max-width: 1200px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .content {
    order: -1;
  }

  .sidebar {
    order: 2;
  }
}

@media (max-width: 1180px) {
  .home-hero {
    grid-template-columns: 1fr;
    padding: 36px;
  }

  .home-hero-visual {
    display: none;
  }
}

@media (max-width: 820px) {
  .home-hero {
    padding: 22px 18px 18px;
    border-radius: 16px;
    background:
      radial-gradient(circle at 86% 22%, rgba(124, 58, 237, .18), transparent 34%),
      linear-gradient(135deg, #fbf9ff 0%, #f0eaff 100%);
  }

  .home-hero-content {
    gap: 12px;
  }

  .home-hero h1 {
    max-width: 300px;
    font-size: var(--fs-hero);
    line-height: 1.16;
  }

  .home-hero-lead {
    max-width: 300px;
    font-size: var(--fs-sm);
    line-height: 1.42;
  }

  .home-hero-actions {
    gap: 8px;
  }

  .home-hero-actions .btn {
    min-width: 0;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: var(--fs-sm);
  }

  .home-hero-chips {
    display: none;
  }
}

@media (max-width: 380px) {
  .home-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-hero-actions .btn {
    width: 100%;
  }
}
