@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #eef2f6;
  --surface: #ffffff;
  --surface-alt: #e8edf3;
  --text: #1b2a3a;
  --muted: #556579;
  --primary: #003b71;
  --primary-strong: #002f5a;
  --accent: #f0b400;
  --line: #c9d3df;
  --ok: #008b5d;
  --radius: 12px;
  --shadow: 0 4px 14px rgba(11, 27, 45, 0.08);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Rubik', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #d3dbe5;
}

.site-header__top {
  border-bottom: 1px solid #e4ebf2;
  background: #f7f9fb;
}

.site-header__top-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 8px 18px;
}

.site-header__bar {
  max-width: 1360px;
  margin: 0 auto;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.site-logo:hover { text-decoration: none; }

.site-logo__mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(130deg, #1d2733 0%, #364555 100%);
}

.site-logo__name {
  font-weight: 700;
  font-size: 14px;
  max-width: 190px;
}

.site-header__contacts {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: max-content;
  flex-wrap: wrap;
}

.site-header__contacts span {
  color: var(--text);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
  user-select: text;
}

.site-header__search {
  width: 220px;
  opacity: 1;
  overflow: visible;
  transition: width .28s ease;
}

.site-header.has-scroll .site-header__search {
  width: 220px;
}

.search-shell {
  position: relative;
}

.search-shell input {
  width: 100%;
  border: 1px solid #bec9d6;
  border-radius: 8px;
  padding: 9px 12px 9px 34px;
  font: inherit;
  color: var(--text);
  background: #f7f9fb;
}

.search-shell::before {
  content: '⌕';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  flex-wrap: nowrap;
}

.site-nav a {
  color: var(--text);
  font-size: 13px;
  padding: 8px 8px;
  border-radius: 10px;
  white-space: nowrap;
}

.site-nav a.is-active,
.site-nav a:hover {
  background: #edf2f8;
  text-decoration: none;
}

.lang-switch,
.footer-lang {
  display: inline-flex;
  gap: 6px;
}

.lang-switch a,
.footer-lang a {
  font-size: 13px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 6px 10px;
  color: var(--muted);
}

.lang-switch a.is-active,
.footer-lang a.is-active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
}

.cart-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--text);
}

.cart-icon:hover { text-decoration: none; }

.cart-icon__glyph { font-size: 18px; }

.cart-icon__count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  font-weight: 700;
}

.hero {
  max-width: 1360px;
  margin: 22px auto 0;
  padding: 20px 18px;
}

.hero__inner {
  background: linear-gradient(140deg, #083b6f 0%, #0a4f8e 58%, #0a4f8e 100%);
  color: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero__inner h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
}

.hero__inner p {
  max-width: 1180px;
  margin: 0 0 18px;
  line-height: 1.55;
  font-size: 16px;
}

.hero-links {
  margin-top: 8px;
  max-width: 100%;
}

.hero-links__label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.82);
}

.hero-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-link-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.1);
  color: #fff;
  font-size: 13px;
  line-height: 1.25;
}

.hero-link-chip:hover {
  text-decoration: none;
  background: rgba(255,255,255,.18);
}

.hero__search-wrap {
  max-width: 460px;
}

.catalog-shell {
  max-width: 1360px;
  margin: 18px auto 32px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 18px;
}

.seo-home {
  max-width: 1360px;
  margin: 0 auto 34px;
  padding: 0 18px;
}

.seo-home__grid,
.seo-copy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.seo-copy {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seo-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}

.seo-panel h2 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.3;
}

.seo-panel p {
  margin: 0 0 10px;
  line-height: 1.66;
  color: var(--muted);
}

.seo-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seo-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f7f9fb;
  color: var(--primary);
  font-size: 14px;
  line-height: 1.25;
}

.seo-chip:hover {
  text-decoration: none;
  background: #edf3f9;
}

.filters {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
  padding: 14px;
  height: fit-content;
  position: sticky;
  top: 78px;
}

.filters label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

.filters input,
.filters select,
.order-form input,
.order-form textarea {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 11px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.filters .line {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.btn {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  padding: 9px 12px;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn:hover { text-decoration: none; }

.btn--primary {
  background: linear-gradient(180deg, #f8c832 0%, #e4a700 100%);
  color: #1f2b3a;
  border-color: #c59300;
  font-weight: 600;
}

.catalog-toolbar {
  padding: 6px 2px 12px;
  color: var(--muted);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 14px;
  align-items: stretch;
}

.product-card {
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: none;
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-card__image-link {
  display: block;
  position: relative;
  overflow: hidden;
}

.product-card img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-bottom: 1px solid #d3dbe5;
}

.product-image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  padding: 16px 14px 14px;
  color: #fff;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(96, 104, 114, .34) 0%, rgba(88, 95, 104, .44) 38%, rgba(59, 64, 71, .88) 100%);
}

.product-image-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(120, 128, 138, .14) 0%, rgba(114, 122, 132, .22) 52%, rgba(78, 84, 92, .34) 100%);
}

.product-image-overlay::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(42, 47, 54, 0) 0%, rgba(42, 47, 54, .82) 100%);
}

.product-image-overlay > span {
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(12, 16, 22, .75);
}

.product-image-overlay__name {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.22;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.product-image-overlay__article,
.product-image-overlay__brand {
  font-size: 12px;
  line-height: 1.25;
  opacity: .98;
}

.product-card__body {
  padding: 11px 12px 12px;
  display: grid;
  gap: 8px;
}

.product-card__title {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
}

.product-card__meta {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
}

.product-card__price {
  font-weight: 800;
  font-size: 20px;
  color: #00508f;
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
}

.stock-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.stock-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9daec0;
}
.stock-dot.in::before { background: var(--ok); }

.pager {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.page-head {
  max-width: 980px;
  margin: 24px auto 0;
  padding: 0 18px;
}

.page-head h1 { margin: 0; }

.text-page,
.cart-page,
.product-page {
  max-width: 1180px;
  margin: 18px auto 34px;
  padding: 0 18px;
}

.text-page p {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  margin: 0 0 10px;
  line-height: 1.65;
}

.text-page--rich {
  margin-top: 22px;
}

.text-page--rich p {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0 0 14px;
}

.text-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.82fr);
  gap: 20px;
  align-items: start;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ffffff 0%, #f3f6fa 100%);
  border: 1px solid #d6e0ea;
  box-shadow: 0 12px 28px rgba(11, 27, 45, 0.08);
}

.text-hero-card__main h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.text-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.text-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e8eef6;
  color: #28425f;
  font-size: 13px;
  font-weight: 700;
}

.text-lead {
  max-width: 840px;
  color: #2f4258;
  font-size: 18px;
  line-height: 1.72;
}

.text-facts-card {
  padding: 18px 18px 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #0f4f8a 0%, #0b3f72 100%);
  color: #fff;
}

.text-facts-card__label {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

.text-facts-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.text-facts-card li {
  position: relative;
  padding-left: 18px;
  line-height: 1.58;
  color: rgba(255,255,255,.96);
}

.text-facts-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.text-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
  align-items: start;
}

.text-section-card {
  padding: 20px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid #d6e0ea;
  box-shadow: var(--shadow);
  align-self: start;
}

.text-section-card--accent {
  background:
    radial-gradient(circle at top right, rgba(240, 180, 0, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.text-section-card h2 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.15;
}

.text-prose {
  color: #33485f;
  font-size: 16px;
  line-height: 1.72;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.contact-mini-card {
  padding: 14px;
  border-radius: 14px;
  background: #f6f9fc;
  border: 1px solid #d7e2ec;
}

.contact-mini-card__label {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #5a6f86;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.contact-mini-card__value {
  color: #203449;
  font-size: 15px;
  line-height: 1.58;
  font-weight: 600;
}

.details-table-card {
  margin-top: 14px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  border: 1px solid #d7e2ec;
}

.details-table-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.15;
}

.details-table {
  display: grid;
  gap: 0;
}

.details-row {
  display: grid;
  grid-template-columns: minmax(180px, 220px) 1fr;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid #e2eaf1;
}

.details-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.details-row__label {
  color: #61758a;
  font-size: 14px;
  font-weight: 700;
}

.details-row__value {
  color: #203449;
  font-size: 15px;
  line-height: 1.58;
}

.seo-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.seo-info-card {
  padding: 20px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(240, 180, 0, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
  border: 1px solid #d6e0ea;
  box-shadow: var(--shadow);
}

.seo-info-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.18;
}

.seo-info-card p {
  margin: 0;
  color: #33485f;
  font-size: 15px;
  line-height: 1.72;
}

.placeholder-map-intro {
  margin-bottom: 18px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
  border: 1px solid #d6e0ea;
  box-shadow: var(--shadow);
}

.placeholder-map-intro h1 {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 1.05;
}

.placeholder-map-intro p {
  margin: 0;
  color: #33485f;
  font-size: 16px;
  line-height: 1.68;
}

.placeholder-map-note {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #eef5fb;
  border: 1px solid #d6e2ee;
  color: #26405a;
  font-size: 15px;
  line-height: 1.55;
}

.placeholder-unmatched-card {
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid #d6e0ea;
  box-shadow: var(--shadow);
}

.placeholder-unmatched-card h2 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.1;
}

.placeholder-unmatched-card p {
  margin: 0 0 14px;
  color: #3c5167;
  font-size: 15px;
  line-height: 1.65;
}

.placeholder-unmatched-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.placeholder-unmatched-item {
  display: grid;
  gap: 6px;
  min-height: 72px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f6f9fc;
  border: 1px solid #d8e2ec;
  color: #29425d;
}

.placeholder-unmatched-item strong {
  font-size: 14px;
  line-height: 1.2;
}

.placeholder-unmatched-item span {
  font-size: 14px;
  line-height: 1.45;
}

.placeholder-group-grid {
  display: grid;
  gap: 18px;
}

.placeholder-group-card {
  padding: 16px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid #d6e0ea;
  box-shadow: var(--shadow);
}

.placeholder-group-card__head h2 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.1;
}

.placeholder-group-card__head p {
  margin: 0 0 4px;
  color: #4c6076;
}

.placeholder-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 220px));
  gap: 10px;
  margin-top: 12px;
}

.placeholder-preview {
  margin: 0;
  padding: 10px;
  border-radius: 14px;
  background: #f6f9fc;
  border: 1px solid #d8e2ec;
}

.placeholder-preview img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  background: #e9eef4;
}

.placeholder-preview figcaption {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #24384d;
  word-break: break-word;
}

.placeholder-examples {
  margin-top: 12px;
}

.placeholder-examples__label {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #5a6f86;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.placeholder-example-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.placeholder-example {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #edf3f9;
  color: #29425d;
  font-size: 13px;
  font-weight: 700;
}

.landing-gallery {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.landing-image {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  background: #fff;
  cursor: zoom-in;
}

.landing-image img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(320px, 43%) 1fr;
  gap: 18px;
  align-items: start;
}

.product-media,
.product-info {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-media { padding: 14px; }
.product-info { padding: 16px; }

.product-media__main {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}

.product-media img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
}

.product-media-seo {
  margin-top: 12px;
  padding: 14px;
  border-radius: 14px;
  background: #f5f8fb;
  border: 1px solid #d7e2ec;
}

.product-media-seo__lead {
  margin: 0 0 10px;
  color: #31475d;
  font-size: 14px;
  line-height: 1.55;
}

.product-media-seo__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.product-media-seo__facts span {
  display: block;
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #d9e3ec;
  color: #26415a;
  font-size: 14px;
  line-height: 1.4;
}

.map-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.map-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.map-card__head h2 {
  margin: 0 0 8px;
}

.map-card__head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 720px;
}

.map-card__frame {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid #d7e2ec;
  background: #eef3f8;
  min-height: 420px;
}

.map-card__frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.product-image-overlay--detail {
  padding: 22px 20px 20px;
  gap: 8px;
}

.product-image-overlay--detail .product-image-overlay__name {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  -webkit-line-clamp: 3;
}

.product-image-overlay--detail .product-image-overlay__article,
.product-image-overlay--detail .product-image-overlay__brand {
  font-size: 16px;
  line-height: 1.3;
}

.product-info h1 {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.32;
}

.product-meta {
  margin: 10px 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-price {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.product-stock {
  margin-top: 8px;
  font-weight: 600;
}
.product-stock.in { color: var(--ok); }
.product-stock.out { color: #b34a00; }

.product-actions {
  margin-top: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-seo {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.product-seo p {
  margin: 0 0 10px;
  line-height: 1.62;
}

.product-links {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.product-links h2 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.35;
}

.partist-landing {
  max-width: 1360px;
  margin: 22px auto 0;
  padding: 0 18px 28px;
}

.partist-landing__layout {
  grid-template-columns: minmax(320px, 40%) 1fr;
}

.partist-landing__info h1 {
  margin-top: 8px;
}

.partist-landing__whatsapp {
  border-color: #1f9d55;
  color: #0f7a3d;
  background: #ecfff3;
}

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

.partist-trust article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}

.partist-trust h2 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.25;
}

.partist-trust p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.partist-landing__details {
  grid-template-columns: 1.1fr .9fr;
  margin-top: 0;
}

.partist-landing__details h2 {
  margin: 0 0 12px;
}

.partist-specs {
  width: 100%;
  border-collapse: collapse;
}

.partist-specs th,
.partist-specs td {
  padding: 11px 0;
  border-bottom: 1px solid #e1e8f0;
  text-align: left;
  vertical-align: top;
  line-height: 1.4;
}

.partist-specs th {
  width: 42%;
  color: var(--muted);
  font-weight: 600;
}

.partist-steps {
  margin: 0;
  padding-left: 20px;
  line-height: 1.65;
  color: #31475d;
}

.cart-items {
  display: grid;
  gap: 10px;
}

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

.cart-main {
  min-width: 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 122px 1fr auto;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 10px;
}

.cart-item__media {
  position: relative;
  width: 122px;
  height: 92px;
  border-radius: 10px;
  overflow: hidden;
}

.cart-item img {
  width: 122px;
  height: 92px;
  object-fit: cover;
  display: block;
}

.cart-item__overlay {
  padding: 10px 8px 8px;
  gap: 2px;
}

.cart-item__overlay .product-image-overlay__name {
  font-size: 11px;
  line-height: 1.15;
  -webkit-line-clamp: 2;
}

.cart-item__overlay .product-image-overlay__article,
.cart-item__overlay .product-image-overlay__brand {
  font-size: 10px;
  line-height: 1.15;
}

.cart-item__title {
  margin: 0 0 6px;
  font-weight: 700;
}

.cart-item__meta {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.cart-item__controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.cart-item__qty-controls {
  display: flex;
  gap: 8px;
}

.cart-item__controls .btn {
  min-width: 120px;
}

.cart-item__qty-controls .btn {
  min-width: 56px;
  padding-left: 0;
  padding-right: 0;
}

.cart-empty {
  padding: 18px;
  color: var(--muted);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.order-form-wrap {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  position: sticky;
  top: 96px;
}

.order-form-wrap__head {
  margin-bottom: 14px;
}

.order-form-wrap__head h2 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.1;
}

.order-form-wrap__head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.order-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.order-form label {
  display: block;
  font-size: 13px;
  line-height: 1.3;
  color: var(--muted);
}

.order-form__full,
.order-form__note,
.order-form .btn {
  grid-column: 1 / -1;
}

.order-form__note {
  padding: 10px 12px;
  border-radius: 12px;
  background: #f6f9fc;
  border: 1px solid #d8e2ec;
  color: #30465c;
  font-size: 13px;
  line-height: 1.5;
}

.order-form .btn {
  width: 100%;
}

.order-status {
  margin-top: 10px;
  padding: 12px;
  border-radius: 12px;
  display: none;
}

.order-status.is-show { display: block; }
.order-status.ok { background: #e8f8f1; color: #0b6f4a; border: 1px solid #9dd9c3; }
.order-status.err { background: #fff0eb; color: #9d3f1d; border: 1px solid #f1b8a4; }

.site-footer {
  border-top: 1px solid var(--line);
  background: #f6f8fb;
}

.site-footer__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.pay-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pay-logo {
  font-size: 12px;
  padding: 6px 9px;
  border-radius: 9px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
}

.pay-logo--mir { background: #f2fffb; }
.pay-logo--visa { background: #f5f9ff; }
.pay-logo--mc { background: #fff7f1; }
.pay-logo--invoice { background: #f5f5f8; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 18, 30, 0.86);
  display: grid;
  place-items: center;
  padding: 20px;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox img {
  max-width: min(1200px, 94vw);
  max-height: 90vh;
  border-radius: 14px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.42);
}

.lightbox__close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.fly-image {
  position: fixed;
  z-index: 99;
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
  pointer-events: none;
  transition: transform 0.95s cubic-bezier(.2,.7,.2,1), left 0.95s cubic-bezier(.2,.7,.2,1), top 0.95s cubic-bezier(.2,.7,.2,1), opacity 0.95s;
}

@media (max-width: 1180px) {
  .catalog-shell { grid-template-columns: 1fr; }
  .filters { position: static; }
  .seo-home__grid,
  .seo-copy,
  .seo-info-grid { grid-template-columns: 1fr; }
  .text-hero-card,
  .text-sections { grid-template-columns: 1fr; }
  .contact-card-grid { grid-template-columns: 1fr; }
  .partist-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .site-header__bar {
    flex-wrap: wrap;
  }
  .site-nav {
    order: 5;
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .product-layout { grid-template-columns: 1fr; }
  .partist-landing__layout,
  .partist-landing__details { grid-template-columns: 1fr; }
  .text-hero-card { padding: 22px; }
  .text-hero-card__main h1 { font-size: clamp(28px, 8vw, 42px); }
  .text-lead { font-size: 17px; }
  .details-row { grid-template-columns: 1fr; gap: 6px; }
}

@media (max-width: 640px) {
  .hero__inner { padding: 20px; }
  .hero-links__label { display: block; }
  .site-header__contacts {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .cart-item {
    grid-template-columns: 1fr;
  }
  .cart-item__media,
  .cart-item img { width: 100%; height: 180px; }
  .partist-landing { padding-inline: 14px; }
  .partist-trust { grid-template-columns: 1fr; }
  .partist-specs th,
  .partist-specs td {
    display: block;
    width: 100%;
  }
  .partist-specs th {
    padding-bottom: 2px;
    border-bottom: 0;
  }
  .partist-specs td {
    padding-top: 0;
  }
}

@media (max-width: 980px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .order-form-wrap {
    position: static;
  }
}

@media (max-width: 700px) {
  .order-form {
    grid-template-columns: 1fr;
  }
}

.product-page.product-landing,
.product-landing {
  box-sizing: border-box;
  width: calc(100% - 36px);
  max-width: 1180px;
  margin: 22px auto 34px;
  padding: 22px 24px 28px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 4%, rgba(254, 203, 0, 0.18), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  color: #17202b;
  box-shadow: 0 18px 48px rgba(22, 43, 73, 0.11);
}

.product-landing *,
.product-landing *::before,
.product-landing *::after {
  box-sizing: border-box;
}

.product-landing a {
  color: #2e70b1;
}

.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #718094;
  font-size: 13px;
}

.product-breadcrumbs a {
  color: #5e728d;
  text-decoration: none;
}

.product-breadcrumbs__separator {
  color: #a6b1c1;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(390px, 0.95fr) minmax(390px, 1.05fr);
  gap: 24px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid #e5eaf0;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 252, 0.96)),
    linear-gradient(135deg, rgba(254, 203, 0, 0.11), transparent 42%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.product-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.product-hero__status-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.product-stock-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(33, 150, 83, 0.28);
  border-radius: 16px;
  background: linear-gradient(135deg, #ecfff3, #dff8e9);
  color: #12823d;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(33, 150, 83, 0.14);
}

.product-stock-badge__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.74), transparent 28%),
    linear-gradient(135deg, #51e47f, #119544);
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 0 6px rgba(33, 150, 83, 0.12);
}

.product-stock-badge__label {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.product-stock-summary {
  display: grid;
  gap: 4px;
  color: #506175;
}

.product-stock-summary strong {
  color: #1b2634;
  font-size: 17px;
}

.product-stock-summary span {
  font-size: 14px;
}

.product-hero__code {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  margin-top: 15px;
  padding: 0 12px;
  border: 1px solid #dde5ef;
  border-radius: 10px;
  background: #ffffff;
  color: #2b3a4d;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.product-hero h1 {
  margin: 12px 0 0;
  color: #121a25;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.product-hero__lead {
  max-width: 590px;
  margin: 12px 0 0;
  color: #4a5a6f;
  font-size: 16px;
  line-height: 1.55;
}

.product-price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid #e3e9f1;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(36, 57, 90, 0.08);
}

.product-price-card__label {
  color: #6a788a;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-price-card__value {
  margin-top: 5px;
  color: #111827;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 900;
  line-height: 1;
}

.product-price-card__meta {
  display: grid;
  gap: 6px;
  min-width: 158px;
  color: #5c6c80;
  font-size: 14px;
  line-height: 1.4;
}

.product-price-card__meta span::before,
.product-hero__assurances span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #fecb00;
  vertical-align: middle;
}

.product-hero__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.product-landing .btn {
  float: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 0;
  text-align: center;
  text-decoration: none;
  white-space: normal;
  line-height: 1.15;
  cursor: pointer;
  box-shadow: none;
  font-family: inherit;
}

.product-landing .btn::before {
  display: none;
}

.product-hero__button {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
}

.product-hero__button--primary,
.product-help__cta .btn,
.product-feedback__actions .btn-blue {
  background: linear-gradient(135deg, #fecb00, #f0b400) !important;
  color: #141414 !important;
  box-shadow: 0 14px 28px rgba(254, 203, 0, 0.28) !important;
}

.product-hero__button--outline {
  border: 1px solid rgba(46, 112, 177, 0.36) !important;
  background: #ffffff !important;
  color: #2e70b1 !important;
}

.product-hero__button--ghost,
.product-help__actions .btn-grey,
.product-feedback__actions .btn-grey,
.product-summary__actions .btn-grey {
  border: 1px solid #d9e2ee !important;
  background: #f7f9fc !important;
  color: #334155 !important;
}

.product-hero__button--whatsapp {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  padding: 0 16px 0 8px;
  border: 1px solid rgba(28, 155, 76, 0.24) !important;
  border-radius: 14px;
  background: #ffffff !important;
  color: #10853a !important;
  box-shadow:
    0 14px 28px rgba(20, 156, 69, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72) !important;
  gap: 10px;
  justify-content: flex-start;
}

.product-whatsapp-icon {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  margin: -8px 0 -8px -8px;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20128%20128%22%3E%3Cdefs%3E%3ClinearGradient%20id%3D%22g%22%20x1%3D%2264%22%20y1%3D%2218%22%20x2%3D%2264%22%20y2%3D%22109%22%20gradientUnits%3D%22userSpaceOnUse%22%3E%3Cstop%20stop-color%3D%22%2359dc65%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%2305b43c%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M63.6%209C34.7%209%2011.3%2031.7%2011.3%2059.7c0%208.7%202.3%2017.1%206.6%2024.5L9%20119l35.7-8.6a53.8%2053.8%200%200%200%2018.9%203.4c28.9%200%2052.4-22.7%2052.4-50.7S92.5%209%2063.6%209Z%22%2F%3E%3Cpath%20fill%3D%22url%28%23g%29%22%20d%3D%22M64.1%2018.4c-24.1%200-43.7%2019.1-43.7%2042.6%200%208.1%202.4%2015.7%206.4%2022.1l-5.1%2020.1%2020.9-5.1a44.7%2044.7%200%200%200%2021.5%205.5c24.1%200%2043.7-19.1%2043.7-42.6S88.2%2018.4%2064.1%2018.4Z%22%2F%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M48.8%2038.3c-1.2-2.6-2.4-2.6-3.5-2.7h-3c-1%200-2.7.4-4.1%202-1.4%201.5-5.4%205.2-5.4%2012.8%200%207.5%205.5%2014.8%206.3%2015.8.8%201%2010.7%2017.1%2026.7%2023.3%2013.3%205.2%2016%204.2%2018.9%203.9%202.9-.3%209.3-3.8%2010.6-7.4%201.3-3.7%201.3-6.8.9-7.5-.4-.6-1.4-1-3-1.8-1.6-.8-9.3-4.6-10.8-5.1-1.4-.5-2.5-.8-3.5.8-1%201.5-4%205.1-4.9%206.1-.9%201.1-1.8%201.2-3.4.4-1.6-.8-6.6-2.4-12.6-7.6-4.7-4.1-7.8-9.3-8.7-10.8-.9-1.6-.1-2.4.7-3.2.7-.7%201.6-1.8%202.4-2.8.8-.9%201-1.6%201.6-2.6.5-1.1.3-2-.1-2.8-.4-.8-3.5-8.5-4.9-11.6Z%22%2F%3E%3C%2Fsvg%3E") center / contain no-repeat;
}

.product-whatsapp-text {
  min-width: 0;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
}

.product-help__whatsapp {
  border: 1px solid rgba(28, 155, 76, 0.28) !important;
  background: linear-gradient(135deg, #22c55e, #159947) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 26px rgba(22, 163, 74, 0.22) !important;
}

.product-hero__assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 13px;
  color: #627187;
  font-size: 13px;
}

.product-hero__media {
  min-width: 0;
}

.product-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(320px, 28vw, 392px);
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  background: #11141b;
  box-shadow: 0 28px 80px rgba(32, 50, 79, 0.22);
  isolation: isolate;
  padding: 0;
  cursor: zoom-in;
}

.product-hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 32%, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.product-hero__visual img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.product-hero__visual.is-placeholder {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.product-hero__visual.is-placeholder::after {
  display: none;
}

.product-hero__visual.is-placeholder img {
  filter: blur(1.2px) saturate(0.82) brightness(0.82);
  transform: scale(1.04);
}

.product-hero__badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  max-width: calc(100% - 32px);
  min-height: 54px;
  padding: 10px 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(16, 18, 24, 0.62);
  color: #ffffff;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.product-trust-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid #e5eaf0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(32, 50, 79, 0.07);
}

.product-trust-bar__item {
  padding: 15px 16px 14px;
  border-right: 1px solid #e8eef5;
}

.product-trust-bar__item:last-child {
  border-right: 0;
}

.product-trust-bar__item h2 {
  margin: 0;
  color: #17202b;
  font-size: 16px;
  line-height: 1.2;
}

.product-trust-bar__item p {
  margin: 6px 0 0;
  color: #66758a;
  font-size: 13px;
  line-height: 1.45;
}

.product-body-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(420px, 1.18fr) 340px;
  gap: 16px;
  margin-top: 16px;
}

.product-panel {
  border: 1px solid #e5eaf0;
  border-radius: 18px;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(32, 50, 79, 0.07);
}

.product-section-heading h1,
.product-section-heading h2 {
  margin: 0;
  color: #17202b;
  font-size: 24px;
  line-height: 1.2;
}

.product-section-heading p {
  margin: 8px 0 0;
  color: #627187;
  line-height: 1.55;
}

.product-specs .grid {
  width: 100%;
  margin-top: 12px;
  border-collapse: collapse;
}

.product-specs .grid th,
.product-specs .grid td {
  padding: 10px 0;
  border-bottom: 1px solid #edf1f6;
  text-align: left;
  vertical-align: top;
  background: transparent !important;
}

.product-specs .grid th {
  width: 42%;
  padding-right: 16px;
  color: #6b7889;
  font-weight: 600;
}

.product-specs .grid td {
  color: #1f2937;
  font-size: 16px;
  font-weight: 700;
}

.product-process__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.product-process__item {
  position: relative;
  min-height: 158px;
  padding: 62px 14px 14px;
  border: 1px solid #e7edf4;
  border-radius: 14px;
  background: #f7f9fc;
  overflow-wrap: anywhere;
}

.product-process__step {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fecb00;
  color: #111827;
  font-weight: 900;
}

.product-process__item h3 {
  margin: 0;
  color: #182231;
  font-size: 16px;
  line-height: 1.22;
}

.product-process__item p {
  margin: 8px 0 0;
  color: #68778b;
  font-size: 13.5px;
  line-height: 1.42;
}

.product-help {
  border-color: rgba(254, 203, 0, 0.72);
  background:
    linear-gradient(180deg, rgba(254, 203, 0, 0.09), rgba(255, 255, 255, 0.98) 36%),
    #ffffff;
}

.product-help__cta .btn,
.product-help__actions .btn,
.product-help__actions a.btn {
  width: 100%;
  min-height: 50px;
  border-radius: 12px;
  font-weight: 800;
}

.product-help__divider {
  margin: 16px 0 12px;
  color: #748196;
  text-align: center;
  font-size: 14px;
}

.product-help__phone {
  text-align: center;
}

.product-help__phone a {
  color: #2e70b1;
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  white-space: nowrap;
}

.product-help__actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.product-summary {
  margin-top: 16px;
}

.product-summary__actions,
.product-feedback__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.product-benefits {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, minmax(0, 1fr));
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid #e5eaf0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(32, 50, 79, 0.07);
}

.product-benefit-card {
  min-height: 132px;
  padding: 18px 20px;
  border-right: 1px solid #e8eef5;
  background: #ffffff;
}

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

.product-benefit-card--intro {
  background: linear-gradient(135deg, #2e70b1, #204d7a);
}

.product-benefit-card--intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.22;
}

.product-benefit-card h3 {
  margin: 0 0 8px;
  color: #17202b;
  font-size: 18px;
  line-height: 1.24;
}

.product-benefit-card p {
  margin: 0;
  color: #68778b;
  font-size: 14px;
  line-height: 1.5;
}

.product-feedback {
  margin-top: 16px;
}

.product-feedback__list {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.product-feedback__empty {
  padding: 14px 16px;
  border: 1px solid #e7edf4;
  border-radius: 14px;
  background: #f7f9fc;
  color: #68778b;
  line-height: 1.5;
}

.partist-search-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 18px;
  align-items: end;
}

.partist-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.partist-search-form input {
  min-width: 0;
  height: 46px;
  border: 1px solid #d8e2ed;
  border-radius: 12px;
  padding: 0 14px;
  color: #17202b;
  font: inherit;
  background: #ffffff;
}

.partist-search-form .btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fecb00, #f0b400) !important;
  color: #141414 !important;
  font-weight: 900;
}

.partist-search-table-wrap {
  margin-top: 16px;
  overflow-x: auto;
  border: 1px solid #e5eaf0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(32, 50, 79, 0.07);
}

.partist-search-table {
  width: 100%;
  min-width: 880px;
  border-collapse: collapse;
}

.partist-search-table th {
  padding: 14px 12px;
  border-bottom: 1px solid #e8eef5;
  color: #6b7889;
  font-size: 13px;
  text-align: left;
}

.partist-search-table td {
  padding: 16px 12px;
  border-bottom: 1px solid #edf1f6;
  vertical-align: middle;
}

.partist-search-table tr:last-child td {
  border-bottom: 0;
}

.partist-search-row__image {
  width: 104px;
}

.partist-search-row__image img {
  display: block;
  width: 82px;
  height: 58px;
  object-fit: cover;
  border-radius: 10px;
  background: #eef3f8;
}

.partist-search-row__link {
  color: #17202b !important;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
  text-decoration: none;
}

.partist-search-row__desc {
  color: #506175;
  font-size: 14px;
  line-height: 1.55;
}

.partist-search-row__desc span {
  color: #6b7889;
}

.partist-search-row__delivery {
  color: #1f2937;
  font-weight: 800;
  white-space: nowrap;
}

.partist-search-row__price {
  color: #111827;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}

.partist-search-row__action {
  width: 170px;
}

.partist-search-row__action .btn {
  width: 100%;
  min-height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fecb00, #f0b400) !important;
  color: #141414 !important;
  font-weight: 900;
}

.partist-search-empty {
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid #e5eaf0;
  border-radius: 18px;
  background: #ffffff;
  color: #627187;
  box-shadow: 0 12px 30px rgba(32, 50, 79, 0.07);
}

@media (max-width: 1320px) {
  .product-trust-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-body-grid {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  }

  .product-help {
    grid-column: 1 / -1;
  }

  .product-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-benefit-card--intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1080px) {
  .product-hero {
    grid-template-columns: 1fr;
  }

  .product-trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .product-page.product-landing,
  .product-landing {
    width: calc(100% - 20px);
    padding: 16px;
    border-radius: 14px;
  }

  .product-hero {
    padding: 16px;
    border-radius: 16px;
  }

  .product-breadcrumbs,
  .product-hero__lead {
    display: none;
  }

  .product-hero__status-row,
  .product-price-card,
  .product-trust-bar,
  .product-body-grid,
  .product-benefits,
  .product-process__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }

  .product-process__item {
    min-height: auto;
    padding: 58px 14px 14px;
    border-radius: 14px;
  }

  .product-stock-badge {
    min-height: 52px;
    padding: 0 16px;
  }

  .product-stock-badge__label {
    font-size: 20px;
  }

  .product-hero h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .product-price-card {
    display: block;
  }

  .product-price-card__meta {
    margin-top: 12px;
  }

  .product-hero__actions {
    grid-template-columns: 1fr;
  }

  .product-hero__visual {
    min-height: 300px;
    height: 300px;
    border-radius: 18px;
  }

  .product-trust-bar__item,
  .product-benefit-card {
    border-right: 0;
    border-bottom: 1px solid #e8eef5;
  }

  .product-trust-bar__item:last-child,
  .product-benefit-card:last-child {
    border-bottom: 0;
  }

  .product-panel {
    padding: 16px;
  }

  .product-help__phone a {
    font-size: 28px;
  }

  .partist-search-head,
  .partist-search-form {
    grid-template-columns: 1fr;
  }

  .partist-search-table {
    min-width: 760px;
  }
}

@media (max-width: 420px) {
  .product-page.product-landing,
  .product-landing {
    padding: 12px;
  }

  .product-hero {
    padding: 14px;
  }

  .product-stock-summary {
    width: 100%;
  }

  .product-hero__visual {
    min-height: 260px;
    height: 260px;
  }
}
