/* Оптовой — оптовая платформа */
:root {
  --om-font: "Inter", system-ui, -apple-system, sans-serif;
  --om-container: min(1280px, calc(100% - 48px));
  --om-blue: #2563eb;
  --om-blue-dark: #1d4ed8;
  --om-blue-light: #eff6ff;
  --om-green: #16a34a;
  --om-green-light: #f0fdf4;
  --om-purple: #7c3aed;
  --om-purple-light: #f5f3ff;
  --om-orange: #ea580c;
  --om-orange-light: #fff7ed;
  --om-text: #0f172a;
  --om-muted: #64748b;
  --om-border: #e2e8f0;
  --om-bg: #ffffff;
  --om-surface: #f8fafc;
  --om-radius: 12px;
  --om-radius-lg: 16px;
  --om-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  --om-shadow-sm: 0 2px 12px rgba(15, 23, 42, 0.06);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--om-font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--om-text);
  background: var(--om-bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.om-container { width: var(--om-container); margin-inline: auto; }

.om-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.om-btn:active { transform: scale(0.98); }
.om-btn--primary { background: var(--om-blue); color: #fff; }
.om-btn--primary:hover { background: var(--om-blue-dark); }
.om-btn--green { background: var(--om-green); color: #fff; }
.om-btn--green:hover { background: #15803d; }
.om-btn--white { background: #fff; color: var(--om-blue); }
.om-btn--white:hover { background: #f1f5f9; }
.om-btn--outline {
  background: transparent;
  color: var(--om-blue);
  border: 2px solid var(--om-blue);
}
.om-btn--outline:hover { background: var(--om-blue-light); }
.om-btn--outline-white,
.om-cta__banner .om-btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.8);
  background: transparent;
}
.om-btn--outline-white:hover,
.om-cta__banner .om-btn--outline:hover { background: rgba(255, 255, 255, 0.12); }
.om-btn--block { width: 100%; }

/* Form validation alerts */
.om-form__error {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #fecaca;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 14px;
  line-height: 1.5;
}
.om-form__error::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='8' x2='12' y2='12'/%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'/%3E%3C/svg%3E") center / contain no-repeat;
}
.om-form__error p {
  margin: 0;
}
.om-form__error p + p {
  margin-top: 6px;
}

/* Header */
.om-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--om-border);
}
.om-header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}
.om-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.om-logo__img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}
.om-logo__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--om-blue);
  display: grid;
  place-items: center;
  color: #fff;
}
.om-logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.om-logo__name { font-weight: 700; font-size: 18px; }
.om-logo__tag { font-size: 11px; color: var(--om-muted); }

.om-catalog-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--om-blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
}
.om-catalog-btn svg { width: 18px; height: 18px; }

.om-search {
  flex: 1;
  display: flex;
  align-items: center;
  background: var(--om-surface);
  border: 1px solid var(--om-border);
  border-radius: 10px;
  padding: 0 16px;
  min-width: 0;
}
.om-header__search-zone {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  position: relative;
}
.om-header__search-zone .om-search {
  flex: 1;
}
.om-search__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 11px 0;
  outline: none;
  font-size: 14px;
  min-width: 0;
}
.om-search__input::placeholder { color: #94a3b8; }
.om-search__icon { color: var(--om-muted); flex-shrink: 0; }

.om-search--suggest {
  position: static;
}
.om-header__search-zone .om-search-suggest {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 120;
  background: #fff;
  border: 1px solid var(--om-border);
  border-radius: 12px;
  box-shadow: var(--om-shadow);
  max-height: min(420px, 70vh);
  overflow-y: auto;
  padding: 6px;
}
.om-search-suggest[hidden] {
  display: none !important;
}
.om-search-suggest__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  transition: background 0.15s;
}
.om-search-suggest__item:hover,
.om-search-suggest__item.is-active {
  background: var(--om-blue-light);
}
.om-search-suggest__thumb {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--om-surface);
  display: grid;
  place-items: center;
}
.om-search-suggest__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.om-search-suggest__thumb--icon {
  font-size: 18px;
  color: var(--om-muted);
}
.om-search-suggest__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.om-search-suggest__label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.om-search-suggest__meta {
  font-size: 12px;
  color: var(--om-muted);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.om-search-suggest__type {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  color: var(--om-muted);
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--om-surface);
  white-space: nowrap;
}

.om-header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.om-header__nav a {
  font-size: 14px;
  color: var(--om-muted);
  white-space: nowrap;
}
.om-header__nav a:hover { color: var(--om-text); }
.om-header__auth {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.om-header__login { font-size: 14px; font-weight: 500; color: var(--om-muted); }
.om-header__login:hover { color: var(--om-text); }

.om-header__tools {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  margin-left: auto;
}

.om-header__tool {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: var(--om-muted);
  transition: background 0.15s, color 0.15s;
}

.om-header__tool:hover {
  background: var(--om-surface);
  color: var(--om-text);
}

.om-header__badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--om-blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}

.om-header__badge[hidden],
[data-om-notify-badge][hidden],
[data-om-cart-badge][hidden],
[data-om-fav-badge][hidden] {
  display: none !important;
}

.om-header__user {
  font-size: 14px;
  font-weight: 600;
  color: var(--om-text);
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.om-header__user-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.om-header__badge--notify {
  position: absolute;
  top: -8px;
  right: -12px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  line-height: 18px;
  font-size: 11px;
  background: #dc2626;
  pointer-events: none;
}

.om-header__user:hover { color: var(--om-blue); }

.om-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  z-index: 200;
  padding: 12px 20px;
  border-radius: 10px;
  background: #0f172a;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}

.om-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Page head — каталог, инфо-страницы */
.om-page-head {
  padding: 32px 0 24px;
  background: linear-gradient(180deg, #fff 0%, var(--om-surface) 100%);
  border-bottom: 1px solid var(--om-border);
}
.om-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: var(--om-muted);
  margin-bottom: 12px;
}
.om-breadcrumbs a:hover { color: var(--om-blue); }
.om-breadcrumbs__sep { color: #cbd5e1; }
.om-page-head__title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}
.om-page-head__lead {
  font-size: 15px;
  color: var(--om-muted);
  max-width: 640px;
}

/* Hero */
.om-hero {
  padding: 48px 0 40px;
  background: linear-gradient(180deg, #fff 0%, var(--om-surface) 100%);
}
.om-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.om-hero__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.om-hero__title span { color: var(--om-blue); }
.om-hero__lead {
  font-size: 16px;
  color: var(--om-muted);
  margin-bottom: 28px;
  max-width: 480px;
}
.om-hero__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.om-hero-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  border-radius: var(--om-radius-lg);
  border: 1px solid var(--om-border);
  background: #fff;
  box-shadow: var(--om-shadow-sm);
}
.om-hero-card--blue { border-color: #bfdbfe; background: var(--om-blue-light); }
.om-hero-card--green { border-color: #bbf7d0; background: var(--om-green-light); }
.om-hero-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.om-hero-card--blue .om-hero-card__icon { background: var(--om-blue); color: #fff; }
.om-hero-card--green .om-hero-card__icon { background: var(--om-green); color: #fff; }
.om-hero-card__title { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.om-hero-card__text { font-size: 13px; color: var(--om-muted); margin-bottom: 14px; flex: 1; }
.om-hero-card .om-btn { margin-top: auto; }

.om-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.om-stat {
  padding: 12px;
  background: #fff;
  border: 1px solid var(--om-border);
  border-radius: var(--om-radius);
  text-align: center;
}
.om-stat__value { font-weight: 800; font-size: 18px; color: var(--om-blue); }
.om-stat__label { font-size: 11px; color: var(--om-muted); margin-top: 2px; }

.om-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  min-height: 0;
}
.om-hero__visual img,
.om-hero__image {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  max-height: min(480px, 55vh);
  object-fit: contain;
  object-position: center;
}

/* Features */
.om-features {
  margin-top: -20px;
  padding-bottom: 48px;
}
.om-features__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--om-surface);
  border: 1px solid var(--om-border);
  border-radius: var(--om-radius-lg);
  overflow: hidden;
}
.om-feature {
  display: flex;
  gap: 14px;
  padding: 24px 20px;
  border-right: 1px solid var(--om-border);
}
.om-feature:last-child { border-right: none; }
.om-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.om-feature--blue .om-feature__icon { background: var(--om-blue-light); color: var(--om-blue); }
.om-feature--green .om-feature__icon { background: var(--om-green-light); color: var(--om-green); }
.om-feature--purple .om-feature__icon { background: var(--om-purple-light); color: var(--om-purple); }
.om-feature--orange .om-feature__icon { background: var(--om-orange-light); color: var(--om-orange); }
.om-feature__title { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.om-feature__desc { font-size: 12px; color: var(--om-muted); line-height: 1.45; }

/* Section head */
.om-section { padding: 48px 0; }
.om-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}
.om-section-head__title { font-size: 24px; font-weight: 800; }
.om-section-head__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.om-section-head__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--om-blue);
}
.om-section-head__link:hover { text-decoration: underline; }
.om-slider-btns { display: flex; gap: 8px; }
.om-slider-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--om-border);
  border-radius: 8px;
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--om-muted);
}
.om-slider-btn:hover { border-color: var(--om-blue); color: var(--om-blue); }
.om-slider-btn:disabled { opacity: 0.4; cursor: default; }

/* Categories */
.om-cats__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.om-cats__track::-webkit-scrollbar { display: none; }
.om-cat-card {
  flex: 0 0 calc(16.666% - 14px);
  min-width: 160px;
  scroll-snap-align: start;
  background: var(--om-surface);
  border-radius: var(--om-radius-lg);
  padding: 16px;
  text-align: center;
  border: 1px solid var(--om-border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.om-cat-card:hover { box-shadow: var(--om-shadow-sm); transform: translateY(-2px); }
.om-cat-card__img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
  background: #fff;
}
.om-cat-card__name { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.om-cat-card__count { font-size: 12px; color: var(--om-muted); }

/* Products */
.om-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.om-tab {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--om-border);
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  color: var(--om-muted);
  cursor: pointer;
}
.om-tab.is-active {
  background: var(--om-blue);
  border-color: var(--om-blue);
  color: #fff;
}
.om-products__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  background: var(--om-surface);
  padding: 24px;
  border-radius: var(--om-radius-lg);
}
.om-products__grid[hidden] {
  display: none !important;
}
.om-products__grid > .om-product,
.om-products__grid > .om-ad-wrap--grid {
  min-width: 0;
}
.om-product {
  background: #fff;
  border: 1px solid var(--om-border);
  border-radius: var(--om-radius-lg);
  padding: 14px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
  min-height: 100%;
}
.om-product__name a {
  color: inherit;
}
.om-product__name a:hover {
  color: var(--om-blue);
}
.om-products__grid--related {
  margin-top: 0;
}
.om-product:hover { box-shadow: var(--om-shadow-sm); }
.om-product__img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 12px;
  background: var(--om-surface);
  border-radius: 8px;
}
.om-product__name {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  flex: 1;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}
.om-product__price { font-weight: 800; font-size: 15px; margin-bottom: 2px; }
.om-product__price span { font-weight: 400; font-size: 12px; color: var(--om-muted); }
.om-product__moq { font-size: 12px; color: var(--om-muted); margin-bottom: 10px; }
.om-product__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}
.om-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  background: var(--om-green-light);
  color: var(--om-green);
}
.om-badge--in-stock {
  background: var(--om-green-light);
  color: var(--om-green);
}
.om-badge--out-of-stock {
  background: #fef2f2;
  color: #dc2626;
}
.om-product__cart {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: var(--om-blue);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
}
.om-product__cart:hover { background: var(--om-blue-dark); }
.om-product__cart.is-in-cart {
  background: var(--om-green);
}
.om-product__cart.is-in-cart:hover { background: #15803d; }
.om-btn.is-in-cart,
.om-btn--primary.is-in-cart {
  background: var(--om-green);
}
.om-btn.is-in-cart:hover,
.om-btn--primary.is-in-cart:hover {
  background: #15803d;
}
.om-product[hidden] { display: none; }

/* How it works */
.om-how { background: var(--om-surface); }
.om-how__title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 40px;
}
.om-how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.om-how__steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--om-blue) 0, var(--om-blue) 8px, transparent 8px, transparent 16px);
  opacity: 0.3;
  z-index: 0;
}
.om-step {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--om-border);
  border-radius: var(--om-radius-lg);
  padding: 24px 20px;
  text-align: center;
}
.om-step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--om-blue);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}
.om-step__title { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.om-step__text { font-size: 13px; color: var(--om-muted); line-height: 1.45; }

/* CTA */
.om-cta {
  padding: 48px 0;
}
.om-cta__banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  background: linear-gradient(135deg, var(--om-blue) 0%, #1e40af 100%);
  border-radius: var(--om-radius-lg);
  padding: 48px;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.om-cta__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.om-cta__content { position: relative; z-index: 1; }
.om-cta__title { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.om-cta__text { font-size: 16px; opacity: 0.9; margin-bottom: 24px; }
.om-cta__buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.om-cta__visual {
  position: relative;
  z-index: 1;
  width: 280px;
}
.om-cta__visual img { border-radius: var(--om-radius); box-shadow: var(--om-shadow); }

/* Footer */
.om-footer {
  background: var(--om-text);
  color: #cbd5e1;
  padding: 48px 0 24px;
}
.om-footer__top {
  display: grid;
  grid-template-columns: 1.2fr repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.om-footer__brand p { font-size: 14px; line-height: 1.55; margin: 12px 0 16px; max-width: 260px; }
.om-footer__social { display: flex; gap: 10px; }
.om-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}
.om-footer__social a:hover { background: rgba(255, 255, 255, 0.15); }
.om-footer__title {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
}
.om-footer__links { display: flex; flex-direction: column; gap: 10px; }
.om-footer__links a { font-size: 13px; }
.om-footer__links a:hover { color: #fff; }
.om-newsletter__label { color: #fff; font-weight: 700; font-size: 14px; margin-bottom: 10px; }
.om-newsletter__form {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}
.om-newsletter__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 14px;
  color: #fff;
  outline: none;
  font-size: 13px;
  min-width: 0;
}
.om-newsletter__input::placeholder { color: #94a3b8; }
.om-newsletter__btn {
  border: none;
  background: var(--om-blue);
  color: #fff;
  padding: 0 16px;
  cursor: pointer;
}
.om-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}
.om-footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.om-footer__legal a:hover { color: #fff; }
.om-footer__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 13px;
}

.om-logo__name--light { color: #fff; }
.om-header__register { padding: 10px 20px; font-size: 14px; }
.om-newsletter__label--spaced { margin-top: 20px; }
.om-catalog-btn { text-decoration: none; }

/* Ad banners */
.om-ad-wrap { margin-bottom: 24px; }
.om-ad-wrap--grid { margin: 0; align-self: start; width: 100%; }
.om-ad-wrap--card { align-self: start; }
.om-ad-wrap--grid-full {
  grid-column: 1 / -1;
  width: 100%;
}
.om-ad-wrap--grid-half { grid-column: span 3; }
.om-ad-wrap--card { /* same as 1 grid cell */ }

.om-ad {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: var(--om-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.om-ad:hover {
  transform: translateY(-2px);
  box-shadow: var(--om-shadow);
}
.om-ad__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.om-ad__title { font-weight: 700; font-size: 18px; margin-bottom: 6px; }
.om-ad__text { font-size: 14px; opacity: 0.9; margin-bottom: 10px; }
.om-ad__cta {
  display: inline-flex;
  align-self: flex-start;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
}

.om-ad--full { min-height: 130px; padding: 24px 32px; }
.om-ad--wide { min-height: 182px; padding: 28px 36px; }
.om-ad--medium { min-height: 156px; padding: 20px 28px; }
.om-ad--compact { min-height: 94px; padding: 16px 24px; flex-direction: row; align-items: center; gap: 16px; }
.om-ad--compact .om-ad__title { margin: 0; font-size: 15px; }
.om-ad--sidebar { min-height: 0; padding: 0; aspect-ratio: 13 / 16; overflow: hidden; }
.om-ad--sidebar .om-ad__img { min-height: 0; }
.om-ad--card {
  padding: 0;
  min-height: 0;
  height: auto;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.om-ad--card .om-ad__img { min-height: 0; }
.om-ad--grid-full { min-height: 156px; padding: 24px 32px; }
.om-ad--grid-full.om-ad--cover { padding: 0; min-height: 208px; }
.om-ad--grid-half { min-height: 156px; padding: 20px 24px; }

.om-ad--blue { background: linear-gradient(135deg, #2563eb, #1d4ed8); color: #fff; }
.om-ad--green { background: linear-gradient(135deg, #16a34a, #15803d); color: #fff; }
.om-ad--purple { background: linear-gradient(135deg, #7c3aed, #6d28d9); color: #fff; }
.om-ad--image { padding: 0; background: var(--om-surface); }
.om-ad--cover {
  position: relative;
  padding: 0;
  color: #fff;
  overflow: hidden;
  min-height: 208px;
  justify-content: flex-start;
}
.om-ad--cover:hover {
  transform: none;
  box-shadow: none;
}
.om-ad__cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.om-ad__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.35) 55%, rgba(15, 23, 42, 0.15) 100%);
}
.om-ad--cover .om-ad__content {
  position: relative;
  z-index: 1;
  padding: 28px 36px;
  max-width: 520px;
}
.om-ad--cover .om-ad__title {
  font-size: 22px;
  margin-bottom: 8px;
}
.om-ad--cover .om-ad__text {
  margin-bottom: 14px;
}
.om-ad--cover .om-ad__cta {
  background: var(--om-blue);
  color: #fff;
}
.om-ad--compact.om-ad--cover {
  padding: 0;
  min-height: 208px;
  align-items: stretch;
}
.om-ad--compact.om-ad--cover .om-ad__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 28px 36px;
  max-width: 520px;
}
.om-ad--compact.om-ad--cover .om-ad__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.om-ad--sidebar.om-ad--cover {
  min-height: 0;
  aspect-ratio: 13 / 16;
  align-items: stretch;
}
.om-ad--sidebar.om-ad--cover .om-ad__cover::after {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.55) 50%, rgba(15, 23, 42, 0.88) 100%);
}
.om-ad--sidebar.om-ad--cover .om-ad__content {
  margin-top: auto;
  max-width: none;
  width: 100%;
  min-height: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}
.om-ad--sidebar.om-ad--cover .om-ad__title {
  font-size: 15px;
  margin: 0;
  line-height: 1.25;
}
.om-ad--sidebar.om-ad--cover .om-ad__text {
  font-size: 12px;
  margin: 0;
  line-height: 1.35;
  opacity: 0.95;
}
.om-ad--sidebar.om-ad--cover .om-ad__cta {
  font-size: 12px;
  padding: 7px 12px;
}

@media (max-width: 1100px) {
  .om-ad-wrap--grid-half { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .om-ad--wide, .om-ad--full { padding: 20px; min-height: auto; }
  .om-ad--compact { flex-direction: column; align-items: flex-start; }
}

/* Responsive */
@media (max-width: 1100px) {
  .om-hero__grid { grid-template-columns: 1fr; }
  .om-hero__visual { max-width: 420px; margin: 0 auto; }
  .om-hero__visual img,
  .om-hero__image { max-height: min(360px, 45vh); }
  .om-features__row { grid-template-columns: repeat(2, 1fr); }
  .om-feature { border-bottom: 1px solid var(--om-border); }
  .om-feature:nth-child(2) { border-right: none; }
  .om-products__grid { grid-template-columns: repeat(3, 1fr); }
  .om-how__steps { grid-template-columns: repeat(2, 1fr); }
  .om-how__steps::before { display: none; }
  .om-footer__top { grid-template-columns: 1fr 1fr; }
  .om-cta__banner { grid-template-columns: 1fr; }
  .om-cta__visual { display: none; }
}

@media (max-width: 768px) {
  .om-header__nav, .om-header__auth .om-header__login { display: none; }
  .om-hero__cards, .om-hero__stats { grid-template-columns: 1fr; }
  .om-features__row { grid-template-columns: 1fr; }
  .om-feature { border-right: none; }
  .om-products__grid { grid-template-columns: repeat(2, 1fr); }
  .om-cat-card { flex: 0 0 140px; min-width: 140px; }
  .om-how__steps { grid-template-columns: 1fr; }
  .om-footer__top { grid-template-columns: 1fr; }
}
