.ecs-account {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.ecs-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 7px 14px;
  border: none;
  border-radius: 10px;
  background-color: #005bff;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.ecs-login-btn:active { transform: translateY(1px); }

.ecs-user {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1c1c1e;
}

.ecs-user__name { max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.ecs-logout {
  border: none;
  background: none;
  color: #6f7480;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.ecs-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(8, 12, 20, .55);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .2s ease;
}

.ecs-overlay.ecs-show { opacity: 1; }
.ecs-overlay[hidden] { display: none; }

.ecs-modal {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: 18px;
  padding: 22px 20px 24px;
  box-shadow: 0 24px 60px rgba(8, 12, 20, .35);
  text-align: center;
  transform: translateY(10px) scale(.98);
  transition: transform .24s cubic-bezier(.22, .61, .36, 1);
}

.ecs-overlay.ecs-show .ecs-modal { transform: none; }

.ecs-modal__close {
  float: right;
  border: none;
  background: none;
  font-size: 22px;
  line-height: 1;
  color: #9aa0ab;
  cursor: pointer;
}

.ecs-modal__title {
  font-size: 20px;
  font-weight: 700;
  margin: 4px 0 6px;
  color: #1c1c1e;
}

.ecs-modal__lead {
  font-size: 14px;
  line-height: 1.4;
  color: #6f7480;
  margin-bottom: 20px;
}

.ecs-provider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  margin-bottom: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #e2e6ef;
  background: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  color: #1c1c1e;
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease;
}

.ecs-provider:hover { border-color: #b9ccff; background: #f7f9ff; }
.ecs-provider img { width: 24px; height: 24px; display: block; }
.ecs-provider--tg { border-color: #cfe6ff; }
.ecs-provider--max { border-color: #d8d5ff; }

.ecs-wait { padding: 8px 0 2px; }
.ecs-wait[hidden] { display: none; }

.ecs-spinner {
  width: 34px;
  height: 34px;
  margin: 6px auto 14px;
  border: 3px solid #e2e6ef;
  border-top-color: #005bff;
  border-radius: 50%;
  animation: ecs-spin .8s linear infinite;
}

@keyframes ecs-spin { to { transform: rotate(360deg); } }

.ecs-wait__text { font-size: 14px; line-height: 1.4; color: #454951; }
.ecs-wait__text b { color: #1c1c1e; }

.ecs-again {
  margin-top: 14px;
  border: none;
  background: none;
  color: #005bff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

@media (max-width: 400px) {
  .ecs-login-btn { padding: 7px 11px; font-size: 13px; }
  .ecs-account { margin-left: 8px; }
}

.ecs-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: #eef2ff;
  cursor: pointer;
  flex-shrink: 0;
}

.ecs-cart-btn img { width: 22px; height: 22px; display: block; }

.ecs-cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: #005bff;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.ecs-cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: flex;
  justify-content: flex-end;
  background: rgba(8, 12, 20, .5);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .25s ease;
}

.ecs-cart-overlay.ecs-show { opacity: 1; }
.ecs-cart-overlay[hidden] { display: none; }

.ecs-drawer {
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: #f7f8fa;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(8, 12, 20, .3);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.ecs-cart-overlay.ecs-show .ecs-drawer { transform: translateX(0); }

.ecs-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: #fff;
  border-bottom: 1px solid #ececf1;
}

.ecs-drawer__title { font-size: 18px; font-weight: 700; color: #1c1c1e; }

.ecs-drawer__close {
  border: none;
  background: none;
  font-size: 26px;
  line-height: 1;
  color: #9aa0ab;
  cursor: pointer;
}

.ecs-drawer__body { flex: 1 1 auto; overflow-y: auto; padding: 14px; }

.ecs-cart-empty, .ecs-cart-loading {
  text-align: center;
  color: #6f7480;
  font-size: 15px;
  line-height: 1.5;
  padding: 48px 16px;
}

.ecs-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #ececf1;
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 10px;
}

.ecs-line__title { font-size: 14px; font-weight: 600; line-height: 1.3; color: #1c1c1e; }
.ecs-line__price { font-size: 13px; color: #8a8f99; margin-top: 3px; }
.ecs-line__right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; flex-shrink: 0; }
.ecs-line__sum { font-size: 15px; font-weight: 700; color: #005bff; white-space: nowrap; }

.ecs-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e2e6ef;
  border-radius: 9px;
  overflow: hidden;
}

.ecs-qty__btn {
  width: 30px;
  height: 30px;
  border: none;
  background: #fff;
  font-size: 18px;
  line-height: 1;
  color: #1c1c1e;
  cursor: pointer;
}

.ecs-qty__btn:active { background: #eef2ff; }
.ecs-qty__val { min-width: 28px; text-align: center; font-size: 14px; font-weight: 600; }

.ecs-line__del {
  border: none;
  background: none;
  color: #b0b4bd;
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.ecs-drawer__foot { padding: 14px 18px 18px; background: #fff; border-top: 1px solid #ececf1; }

.ecs-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
  color: #6f7480;
}

.ecs-total-row--save span:last-child { color: #127a45; font-weight: 700; }

.ecs-total-row--main {
  font-size: 18px;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 14px;
}

.ecs-checkout {
  width: 100%;
  border: none;
  padding: 15px;
  border-radius: 12px;
  background: #005bff;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 91, 255, .28);
}

.ecs-checkout:active { transform: translateY(1px); }

.ecs-line { transition: opacity .22s ease, transform .22s ease; }

.ecs-line--removing {
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
}

.ecs-line__info { flex: 1 1 auto; min-width: 0; }

.ecs-line__sum { transition: color .2s ease; }
.ecs-line__sum.ecs-flash { animation: ecs-flash .45s ease; }

@keyframes ecs-flash {
  0% { color: #12b76a; transform: scale(1.06); }
  100% { color: #005bff; transform: scale(1); }
}

.ecs-cart-badge { transform-origin: center; }
.ecs-cart-badge.ecs-bump { animation: ecs-bump .32s cubic-bezier(.34, 1.56, .64, 1); }

@keyframes ecs-bump {
  0% { transform: scale(1); }
  45% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.ecs-totals { transition: opacity .2s ease; }

.header__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
}

.header__logo { flex-shrink: 0; display: inline-flex; align-items: center; }

.header__store {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.15;
  min-width: 0;
}

.header__store b { color: #005bff; }

.ecs-account {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.ecs-cart-btn { transition: background-color .18s ease, transform .1s ease; }
.ecs-cart-btn:hover { background: #e2e9ff; }
.ecs-cart-btn:active { transform: scale(.94); }

.ecs-login-btn { transition: background-color .18s ease, transform .1s ease; }
.ecs-login-btn:hover { background: #0049cc; }

@media (max-width: 480px) {
  .header__store { font-size: 11px; }
  .ecs-account { gap: 8px; }
}

@media (max-width: 360px) {
  .header__store { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .ecs-overlay, .ecs-overlay .ecs-modal,
  .ecs-cart-overlay, .ecs-cart-overlay .ecs-drawer,
  .ecs-line, .ecs-line__sum, .ecs-cart-badge, .ecs-cart-btn {
    transition: none !important;
    animation: none !important;
  }
}

.ecs-back {
  border: none;
  background: none;
  color: #6f7480;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0 0 10px;
}

.ecs-form__title { font-size: 18px; font-weight: 700; color: #1c1c1e; margin-bottom: 14px; }

.ecs-field { display: block; margin-bottom: 12px; }
.ecs-field__label { display: block; font-size: 13px; color: #6f7480; margin-bottom: 5px; }

.ecs-field__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dfe3ec;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: #1c1c1e;
  background: #fff;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.ecs-field__input:focus {
  border-color: #005bff;
  box-shadow: 0 0 0 3px rgba(0, 91, 255, .12);
}

.ecs-form__note {
  font-size: 12px;
  line-height: 1.4;
  color: #8a8f99;
  background: #f2f4f8;
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 4px;
}

.ecs-form__err {
  font-size: 13px;
  color: #d64545;
  margin-top: 10px;
}

.ecs-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 3000;
  max-width: 90vw;
  transform: translate(-50%, 20px);
  opacity: 0;
  background: #14181f;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(8, 12, 20, .4);
  transition: opacity .3s ease, transform .3s ease;
}

.ecs-toast.ecs-show { opacity: 1; transform: translate(-50%, 0); }

@media (prefers-reduced-motion: reduce) {
  .ecs-toast, .ecs-field__input { transition: none !important; }
}

/* ================= ШАПКА v2 — прозрачная, минимальная ================= */
.header {
  background: transparent !important;
  -webkit-backdrop-filter: none !important;
          backdrop-filter: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  padding: 6px 0;
  transition: background-color .35s ease, box-shadow .35s ease, -webkit-backdrop-filter .35s ease, backdrop-filter .35s ease, padding .35s ease;
}

.header.sticky {
  background: rgba(255, 255, 255, .82) !important;
  -webkit-backdrop-filter: blur(16px) saturate(1.4) !important;
          backdrop-filter: blur(16px) saturate(1.4) !important;
  box-shadow: 0 1px 0 rgba(8, 12, 20, .06), 0 6px 20px rgba(8, 12, 20, .07) !important;
  padding: 4px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
}

.header__store { display: none !important; }

.header__logo { flex-shrink: 0; display: inline-flex; align-items: center; }

.header__logo img {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0, 0, 0, .35));
  transition: filter .35s ease;
}

.header.sticky .header__logo img { filter: none; }

.ecs-account {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  color: #fff;
  transition: color .35s ease;
}

.header.sticky .ecs-account { color: #1c1c1e; }

.ecs-ic-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform .1s ease;
}

.ecs-ic {
  width: 23px;
  height: 23px;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .3));
  transition: filter .35s ease;
}

.header.sticky .ecs-ic { filter: none; }
.ecs-ic-btn:active { transform: scale(.9); }
.ecs-ic-btn--on { color: #8fbaff; }
.header.sticky .ecs-ic-btn--on { color: #005bff; }

.ecs-cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 9px;
  background: #005bff;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .3);
}

.header.sticky .ecs-cart-badge { box-shadow: 0 0 0 2px #fff; }

.ecs-usermenu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 150px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(8, 12, 20, .22);
  padding: 12px 14px;
  z-index: 2500;
  animation: ecs-menu-in .18s ease;
}

@keyframes ecs-menu-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.ecs-usermenu__name { font-size: 14px; font-weight: 700; color: #1c1c1e; margin-bottom: 10px; }

.ecs-usermenu__logout {
  width: 100%;
  border: none;
  background: #f4f2f8;
  color: #d64545;
  border-radius: 9px;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* ============ HERO: соц-доказательство меньше и компактнее ============ */
.social-proof__title { font-size: 11px !important; letter-spacing: .12em; margin-bottom: 8px; opacity: .78; }
.social-proof__list { gap: 8px; }
.social-proof__item { padding: 9px 13px !important; border-radius: 12px !important; background: rgba(255, 255, 255, .1) !important; }
.social-proof__store { font-size: 15px !important; }
.social-proof__sales { font-size: 12px !important; }
.social-proof__rating { font-size: 13px !important; margin-top: 4px !important; gap: 4px; }
.social-proof__rating img { width: 13px !important; height: 13px !important; }

@media (max-width: 767px) {
  .social-proof__item { flex: 1 1 calc(50% - 4px) !important; max-width: none !important; }
}

@media (max-width: 420px) {
  .hero__title { font-size: clamp(27px, 8.4vw, 40px) !important; }
}

@media (prefers-reduced-motion: reduce) {
  .header, .header__logo img, .ecs-account, .ecs-ic { transition: none !important; }
  .ecs-usermenu { animation: none !important; }
}

/* ===== Логотип: настоящий лого, побелён маской (PNG с альфой) ===== */
.header__logo {
  display: inline-block;
  width: 43px;
  height: 26px;
  background-color: #fff;
  -webkit-mask: url("../img/logo.svg") left center / contain no-repeat;
          mask: url("../img/logo.svg") left center / contain no-repeat;
  -webkit-filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .3));
          filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .3));
  transition: background-color .35s ease, -webkit-filter .35s ease, filter .35s ease;
}

.header__logo img { display: none !important; }

.header.sticky .header__logo {
  background-color: #17181c;
  -webkit-filter: none;
          filter: none;
}

/* ===== ЛОГОТИП: оригинал, одинаковый во всех состояниях (финальный override) ===== */
.header__logo {
  background: none !important;
  -webkit-mask: none !important;
          mask: none !important;
  width: auto !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center;
  -webkit-filter: none !important;
          filter: none !important;
}

.header__logo img,
.header.sticky .header__logo img {
  display: block !important;
  height: 28px !important;
  width: auto !important;
  -webkit-filter: drop-shadow(0 0 3px rgba(255, 255, 255, .75)) !important;
          filter: drop-shadow(0 0 3px rgba(255, 255, 255, .75)) !important;
}

/* ============ HERO v3: контент по центру, без стрелки, без «выглядывания» ============ */
.hero {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  padding-top: 90px;
  padding-bottom: 44px;
}

@media (max-width: 767px) {
  .hero { padding-top: 84px; padding-bottom: 40px; }
}

/* убираем стрелку-подсказку внизу hero */
.hero__scroll { display: none !important; }

/* второй блок (discr) больше не наезжает/не выглядывает в первом экране */
.discr { margin-top: 0 !important; }

/* Ozon / Wildberries — ещё компактнее */
.social-proof { margin-top: 6px; }
.social-proof__title { font-size: 10px !important; letter-spacing: .1em; margin-bottom: 6px; opacity: .72; }
.social-proof__list { gap: 6px; }
.social-proof__item { padding: 6px 10px !important; border-radius: 10px !important; }
.social-proof__store { font-size: 13px !important; margin-bottom: 0 !important; }
.social-proof__sales { font-size: 10.5px !important; line-height: 1.25; }
.social-proof__rating { font-size: 11px !important; margin-top: 3px !important; gap: 3px; }
.social-proof__rating img { width: 11px !important; height: 11px !important; }

/* ============ HERO v4: заголовок по центру и крупнее, Ozon/WB к низу, стрелка вернулась ============ */
.hero {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
  padding-top: 78px;
  padding-bottom: 58px;
}

.hero__container {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 12px;
  padding-right: 12px;
}

.hero__note { margin-top: auto !important; }
.hero-gift { margin-bottom: auto !important; }

.hero__title {
  font-size: 32px;
  font-size: clamp(32px, 9.2vw, 50px) !important;
}

.social-proof { margin-bottom: 2px; }

.hero__scroll {
  display: block !important;
  bottom: 16px !important;
}

/* ============ HERO v5: снова по центру, Ozon/WB лишь немного ниже (не к краю) ============ */
.hero {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.hero__container {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 auto !important;
          flex: 0 0 auto !important;
  display: block !important;
}

.hero__note { margin-top: 0 !important; }
.hero-gift { margin-bottom: 22px !important; }
.social-proof { margin-top: 30px !important; margin-bottom: 0 !important; }

/* Ozon / WB — построчно (каждый на своей строке), но компактные */
@media (max-width: 767px) {
  .social-proof__item { -webkit-box-flex: 1 !important; -ms-flex: 1 1 100% !important; flex: 1 1 100% !important; max-width: 100% !important; }
}

/* =====================================================================
   HERO — чистый цельный дизайн (перекрывает все прежние правки hero)
   Практики: единые боковые отступы, вертикальный ритм, компактные
   trust-строки со звёздным рейтингом.
   ===================================================================== */
.hero {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  padding-top: 82px;
  padding-bottom: 56px;
}

.hero__container {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 auto !important;
          flex: 0 0 auto !important;
  display: block !important;
  width: 100%;
  max-width: 470px;
  margin: 0 auto;
  padding-left: 22px !important;
  padding-right: 22px !important;
  text-align: center;
}

/* Мини-характеристики */
.hero__note {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin: 0 0 18px !important;
}

.hero__note .note-list__item {
  padding: 7px 16px;
  font-size: 15px;
  background-color: rgba(255, 255, 255, .14);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .24);
  color: #fff;
  font-weight: 600;
}

/* Заголовок */
.hero__title {
  font-size: 30px;
  font-size: clamp(30px, 8.6vw, 46px) !important;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 18px !important;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .45);
}

.hero__title span { font-size: .62em; margin-top: .14em; }

/* Подарок */
.hero-gift {
  margin: 0 auto !important;
  padding: 9px 16px;
}

/* Соц-доказательство — компактные строки */
.social-proof { margin-top: 28px !important; }

.social-proof__title {
  font-size: 11px !important;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
  margin: 0 0 10px !important;
  opacity: 1 !important;
}

.social-proof__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px !important;
}

.social-proof__item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 100% !important;
          flex: 1 1 100% !important;
  max-width: 100% !important;
  padding: 11px 16px !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, .09) !important;
  border: 1px solid rgba(255, 255, 255, .16) !important;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  text-align: left;
}

.social-proof__store {
  font-size: 14px !important;
  font-weight: 700;
  color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.social-proof__sales {
  font-size: 12px !important;
  color: rgba(255, 255, 255, .68);
  line-height: 1.2;
}

.social-proof__rating {
  margin-left: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 13px !important;
  font-weight: 700;
  color: #fff;
  gap: 4px;
}

.social-proof__rating img { width: 13px !important; height: 13px !important; }

/* Стрелка-подсказка */
.hero__scroll { display: block !important; bottom: 18px !important; }

/* Убираем заголовок «Выбор покупателей» и опускаем Ozon/WB ниже */
.social-proof__title { display: none !important; }
.social-proof {
  margin-top: 40px;
  margin-top: clamp(40px, 12vh, 96px) !important;
}

/* ============ Правки по фидбеку: убрать блоки, бейджи, подарок ============ */
/* Блок «Успей заказать сегодня…» и постоянная нижняя кнопка «Купить» — убраны */
.call { display: none !important; }
.discr__btns-fixed { display: none !important; }

/* Ручка: длину и диаметр — бейджами в углу фото (вместо подписи снизу) */
.handle-card { position: relative; }
.handle-card__note { display: none !important; }
.handle-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 8px 12px;
  border-radius: 13px;
  background: rgba(0, 91, 255, .92);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  color: #fff;
  line-height: 1.05;
  text-align: right;
  -webkit-box-shadow: 0 6px 18px rgba(0, 91, 255, .32);
          box-shadow: 0 6px 18px rgba(0, 91, 255, .32);
}
.handle-badge b { font-size: 18px; font-weight: 700; }
.handle-badge span { font-size: 10px; margin-top: 2px; opacity: .85; text-transform: uppercase; letter-spacing: .05em; }

/* «2 насадки в подарок» — бейдж на фото первого комплекта */
.kit-card__gift {
  position: absolute;
  left: 6px;
  top: 6px;
  z-index: 4;
  padding: 5px 10px;
  border-radius: 8px;
  background: -webkit-gradient(linear, left top, right top, from(#ff9500), to(#ff5e00));
  background: linear-gradient(90deg, #ff9500, #ff5e00);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  -webkit-box-shadow: 0 4px 12px rgba(255, 94, 0, .4);
          box-shadow: 0 4px 12px rgba(255, 94, 0, .4);
}

/* Корзина: старая/новая цена + красная скидка */
.ecs-line__old { text-decoration: line-through; color: #b0b4bd; font-size: 12px; margin-right: 4px; }
.ecs-line__new { color: #1c1c1e; font-weight: 700; }
.ecs-line__disc {
  display: inline-block;
  margin-left: 6px;
  padding: 1px 6px;
  border-radius: 6px;
  background: #ffe9e9;
  color: #e5342b;
  font-size: 11px;
  font-weight: 700;
}
.ecs-total-row--save span:last-child { color: #e5342b !important; }

/* Бонус-строка (скидка за комплект швабра+насадки) */
.ecs-bundle {
  margin: 0 0 10px;
  padding: 9px 12px;
  border-radius: 10px;
  background: #fff4e8;
  border: 1px solid #ffd9b3;
  color: #b3560a;
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 600;
}

/* Инфо-бейджи (диаметр/длина) в углу фото «уборка безопасна» */
.manual-cleaning { position: relative; }
.manual-cleaning img { border-radius: 12px; }

.photo-specs {
  position: absolute;
  top: 12px;
  right: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.photo-spec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 8px 13px;
  border-radius: 13px;
  background: rgba(16, 20, 28, .5);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
          backdrop-filter: blur(10px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  text-align: right;
  line-height: 1.05;
  -webkit-box-shadow: 0 6px 18px rgba(8, 12, 20, .28);
          box-shadow: 0 6px 18px rgba(8, 12, 20, .28);
}

.photo-spec b { font-size: 17px; font-weight: 700; }
.photo-spec span { font-size: 10px; margin-top: 2px; opacity: .82; text-transform: uppercase; letter-spacing: .04em; }

@media (max-width: 400px) {
  .photo-spec { padding: 6px 10px; }
  .photo-spec b { font-size: 15px; }
}

/* Инфо-бейджи 25мм/135см — более премиальный вид (override) */
.photo-specs { gap: 9px !important; top: 14px !important; right: 14px !important; }

.photo-spec {
  min-width: 96px;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  padding: 10px 16px !important;
  border-radius: 16px !important;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(22, 27, 36, .64)), to(rgba(12, 15, 20, .52))) !important;
  background: linear-gradient(180deg, rgba(22, 27, 36, .64), rgba(12, 15, 20, .52)) !important;
  -webkit-backdrop-filter: blur(16px) saturate(1.35) !important;
          backdrop-filter: blur(16px) saturate(1.35) !important;
  border: 1px solid rgba(255, 255, 255, .3) !important;
  -webkit-box-shadow: 0 10px 26px rgba(8, 12, 20, .34), inset 0 1px 0 rgba(255, 255, 255, .22) !important;
          box-shadow: 0 10px 26px rgba(8, 12, 20, .34), inset 0 1px 0 rgba(255, 255, 255, .22) !important;
  text-align: center !important;
}

.photo-spec b {
  font-size: 20px !important;
  font-weight: 800 !important;
  letter-spacing: -.01em;
  line-height: 1;
}

.photo-spec span {
  margin-top: 5px !important;
  font-size: 9px !important;
  font-weight: 600;
  letter-spacing: .1em !important;
  color: rgba(255, 255, 255, .68) !important;
}

@media (max-width: 400px) {
  .photo-spec { min-width: 84px; padding: 8px 12px !important; }
  .photo-spec b { font-size: 17px !important; }
}

/* ================= ПЕРВЫЙ ЭКРАН — новый контент ================= */
/* Видео чуть светлее */
.hero__scrim {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(8,12,18,.5)), color-stop(30%, rgba(8,12,18,.32)), color-stop(62%, rgba(8,12,18,.44)), to(rgba(8,12,18,.78))) !important;
  background: linear-gradient(180deg, rgba(8,12,18,.5) 0%, rgba(8,12,18,.32) 30%, rgba(8,12,18,.44) 62%, rgba(8,12,18,.78) 100%) !important;
}

.hero__subtitle {
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255,255,255,.9);
  max-width: 410px;
  margin: 0 auto 20px !important;
  text-shadow: 0 1px 10px rgba(0,0,0,.45);
}

.hero-gift { margin: 0 auto 16px !important; }
.hero-gift__label { color: #ffe14d; padding-left: 0; }
.hero-gift__label::before { content: none !important; }

.hero__checks {
  list-style: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin: 0 auto;
  text-align: left;
}
.hero__checks li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.hero__checks li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 19px; height: 19px;
  margin-top: -9.5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 2px 8px rgba(34,197,94,.4);
}
.hero__checks li::after {
  content: "";
  position: absolute;
  left: 7px; top: 50%;
  width: 4px; height: 8px;
  margin-top: -6px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.social-proof__line {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 13.5px;
  line-height: 1.4;
  color: rgba(255,255,255,.92);
  font-weight: 500;
  text-shadow: 0 1px 10px rgba(0,0,0,.45);
}
.social-proof__line b { font-size: 16px; font-weight: 800; }
.social-proof__star { width: 15px; height: 15px; }

/* Fix «троения» при скролле — убираем анимацию размытия и фильтров в шапке */
.header { transition: background-color .3s ease, box-shadow .3s ease !important; }
.header__logo, .header__logo img, .ecs-ic, .ecs-account { transition: none !important; }


/* ============ HERO: подложка под текст (чтобы не «наложен») ============ */
.hero__container { position: relative; }
.hero__container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 132%;
  height: 120%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: -webkit-radial-gradient(center, ellipse, rgba(6,9,15,.62) 0%, rgba(6,9,15,.34) 48%, rgba(6,9,15,0) 76%);
  background: radial-gradient(ellipse at center, rgba(6,9,15,.62) 0%, rgba(6,9,15,.34) 48%, rgba(6,9,15,0) 76%);
  z-index: -1;
  pointer-events: none;
}

/* =====================================================================
   HERO — цельный дизайн v6 (по практикам: направленный скрим, якорь
   контента внизу, чистая типографика). Перекрывает все прежние правки.
   ===================================================================== */
/* Направленный скрим: вверху видео светлое, внизу затемнение под текст */
.hero__scrim {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(6,9,15,.12)), color-stop(38%, rgba(6,9,15,.22)), color-stop(72%, rgba(6,9,15,.6)), to(rgba(6,9,15,.9))) !important;
  background: linear-gradient(180deg, rgba(6,9,15,.12) 0%, rgba(6,9,15,.22) 38%, rgba(6,9,15,.6) 72%, rgba(6,9,15,.9) 100%) !important;
}

.hero {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
  padding-top: 90px !important;
  padding-bottom: 52px !important;
}

.hero__container {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 auto !important;
          flex: 0 0 auto !important;
  display: block !important;
  isolation: isolate;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding-left: 20px !important;
  padding-right: 20px !important;
  text-align: center;
}
.hero__container::before { content: none !important; }

/* Бейдж-подарок (тёплый акцент) */
.hero-gift {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto 16px !important;
  padding: 7px 15px !important;
  border-radius: 100px !important;
  background: rgba(255,183,3,.15) !important;
  border: 1px solid rgba(255,183,3,.5) !important;
}
.hero-gift__label {
  color: #ffcf4d !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .01em;
}

/* Заголовок */
.hero__title {
  font-size: clamp(32px, 9vw, 48px) !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  letter-spacing: -.02em;
  margin: 0 0 14px !important;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
}

/* Подзаголовок */
.hero__subtitle {
  font-size: 15px !important;
  line-height: 1.5 !important;
  color: rgba(255,255,255,.85) !important;
  max-width: 380px;
  margin: 0 auto 22px !important;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}

/* Выгоды — аккуратные галочки */
.hero__checks {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-orient: vertical;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px !important;
  margin: 0 auto 24px !important;
  text-align: left;
}
.hero__checks li {
  position: relative;
  padding-left: 30px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #fff !important;
  line-height: 1.25;
  text-shadow: 0 1px 6px rgba(0,0,0,.3);
}
.hero__checks li::before {
  content: "" !important;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,.13) !important;
  border: 1px solid rgba(255,255,255,.32) !important;
  margin: 0 !important;
}
.hero__checks li::after {
  content: "" !important;
  position: absolute;
  left: 7px;
  top: 5px;
  width: 4px;
  height: 8px;
  border: solid #86e6ad;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: none !important;
}

/* Соц-доказательство — одна аккуратная строка */
.social-proof { margin: 0 !important; }
.social-proof__line {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px !important;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 13px !important;
  line-height: 1.4;
  color: rgba(255,255,255,.82) !important;
  font-weight: 500;
}
.social-proof__line b { font-size: 15px !important; font-weight: 800; color: #fff; }
.social-proof__star { width: 15px !important; height: 15px !important; }

.hero__scroll { display: block !important; bottom: 16px !important; }

/* Правка: контент по центру + галочка ровно в кружке */
.hero {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  padding-top: 84px !important;
  padding-bottom: 48px !important;
}
.hero__scrim {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(6,9,15,.22)), color-stop(52%, rgba(6,9,15,.4)), to(rgba(6,9,15,.8))) !important;
  background: linear-gradient(180deg, rgba(6,9,15,.22) 0%, rgba(6,9,15,.4) 52%, rgba(6,9,15,.8) 100%) !important;
}
.hero__checks li::after {
  left: 10px !important;
  top: 9px !important;
  width: 4px !important;
  height: 8px !important;
  -webkit-transform: translate(-50%, -50%) rotate(45deg) !important;
          transform: translate(-50%, -50%) rotate(45deg) !important;
}

/* Галочки — SVG-иконка, идеальное выравнивание через flex */
.hero__checks li {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  gap: 11px !important;
  padding-left: 0 !important;
  text-align: left;
}
.hero__checks li::before, .hero__checks li::after { content: none !important; }
.hero__check { width: 22px !important; height: 22px !important; -ms-flex-negative: 0; flex-shrink: 0; display: block; }

/* Правки первого экрана: подзаголовок крупнее, строку рейтинга ниже и выделить */
.hero__subtitle {
  font-size: 16.5px !important;
  line-height: 1.5 !important;
  max-width: 400px;
}

.social-proof {
  margin-top: 34px !important;
  margin-top: clamp(30px, 9vh, 74px) !important;
}
.social-proof__line {
  padding: 9px 16px !important;
  border-radius: 100px !important;
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.2) !important;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  font-size: 14px !important;
  color: #fff !important;
}
.social-proof__line b { font-size: 16px !important; }

/* ============ Фикс «троения» на iOS: убираем backdrop-filter у фикс-шапки ============ */
.header,
.header.sticky {
  -webkit-backdrop-filter: none !important;
          backdrop-filter: none !important;
  will-change: auto !important;
}
.header.sticky {
  background: rgba(249, 249, 249, .96) !important;
  -webkit-box-shadow: 0 2px 14px rgba(8, 12, 20, .07) !important;
          box-shadow: 0 2px 14px rgba(8, 12, 20, .07) !important;
}

/* Строка рейтинга в hero — без блюра (тоже репейнтит при скролле) */
.social-proof__line {
  -webkit-backdrop-filter: none !important;
          backdrop-filter: none !important;
  background: rgba(255, 255, 255, .14) !important;
}

/* Подзаголовок про швабру — крупнее и жирнее (но не как заголовок) */
.hero__subtitle {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #fff !important;
  line-height: 1.4 !important;
  max-width: 420px;
}

/* Рейтинг — БЕЗ выделения, просто аккуратная строка */
.social-proof {
  margin-top: 26px !important;
  margin-top: clamp(24px, 7vh, 58px) !important;
}
.social-proof__line {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  -webkit-backdrop-filter: none !important;
          backdrop-filter: none !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,.82) !important;
}
.social-proof__line b { font-size: 14px !important; font-weight: 700 !important; color: #fff; }

/* ============ Оплата/Доставка — карусель-веер ============ */
.info { padding: 4px 0 48px; }
.info-slider { margin: 0; overflow: hidden; }
.info-slider .swiper-wrapper { -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; }
.info-slider .swiper-slide { width: 84%; max-width: 420px; height: auto; }

.info-card {
  height: auto;
  background: #fff;
  border: 1px solid #ececf1;
  border-radius: 16px;
  padding: 20px 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.info-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.info-card__ic { width: 24px; height: 24px; -ms-flex-negative: 0; flex-shrink: 0; }
.info-card__title { font-size: 20px; font-weight: 700; color: #1c1c1e; }

.info-card__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.info-card__list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.45;
  color: #454951;
}
.info-card__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #005bff;
}
.info-card__list a { color: #005bff; text-decoration: underline; word-break: break-word; }

.info-slider-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
  margin-top: 14px;
}
.info-slider__dots {
  position: static !important;
  left: auto !important;
  bottom: auto !important;
  width: auto !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.info-slider__dots .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 !important;
  border-radius: 50%;
  background: #c7ccd6;
  opacity: 1;
  -webkit-transition: width .25s ease, background-color .25s ease;
  -o-transition: width .25s ease, background-color .25s ease;
  transition: width .25s ease, background-color .25s ease;
}
.info-slider__dots .swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 4px;
  background: #005bff;
}

/* ============ Значки оплаты в футере (МИР / Visa / Mastercard) ============ */
.footer__pay { margin-bottom: 24px; }
.footer__pay-label {
  display: block;
  font-size: 13px;
  color: #8a8f99;
  margin-bottom: 10px;
}
.pay-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pay-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 34px;
  min-width: 56px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid #e6e8ee;
  border-radius: 8px;
  -webkit-box-shadow: 0 1px 3px rgba(16,24,40,.06);
          box-shadow: 0 1px 3px rgba(16,24,40,.06);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
}
.pay-badge--mir { color: #0f9b4c; font-style: normal; }
.pay-badge--visa { color: #1a1f71; font-style: italic; letter-spacing: .04em; }
.pay-badge--mc { position: relative; width: 56px; }
.mc-c {
  position: absolute;
  top: 50%;
  width: 19px;
  height: 19px;
  margin-top: -9.5px;
  border-radius: 50%;
}
.mc-c1 { left: 12px; background: #eb001b; }
.mc-c2 {
  left: 24px;
  background: #f79e1b;
  mix-blend-mode: multiply;
}

/* Иконки-выгоды в hero (белые, полупрозрачные, с текстом) */
.hero__checks { display: none !important; }
.hero__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  margin: 0 auto 22px;
}
.hero-ic {
  display: block;
  width: auto;
  height: auto;
  max-width: 235px;
  opacity: .92;
}
@media (max-width: 400px) {
  .hero-ic { max-width: 205px; }
  .hero__icons { gap: 12px; }
}

/* Выгоды в hero — значок + подпись, единый стиль (аккуратно) */
.hero__icons { display: none !important; }
.hero__feats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin: 0 auto 22px;
}
.hero-feat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
.hero-feat__ic {
  display: block;
  width: auto;
  height: 42px;
  opacity: .95;
}
.hero-feat span {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
@media (max-width: 400px) {
  .hero-feat__ic { height: 38px; }
  .hero__feats { gap: 13px; }
}

/* Размер иконок выгод — крупнее (спина была мелкой) */
.hero-feat__ic { height: 52px !important; }
.hero-feat__ic--floor { height: 44px !important; }
.hero-feat { gap: 8px; }
.hero__feats { gap: 18px; }
@media (max-width: 400px) {
  .hero-feat__ic { height: 46px !important; }
  .hero-feat__ic--floor { height: 40px !important; }
}

/* Спина — крупнее (значок с кругом) */
.hero-feat__ic--back { height: 60px !important; }
@media (max-width: 400px) { .hero-feat__ic--back { height: 54px !important; } }

/* Спина — ещё крупнее */
.hero-feat__ic--back { height: 78px !important; }
@media (max-width: 400px) { .hero-feat__ic--back { height: 68px !important; } }

/* ============ Кнопка Ozon Pay (по брендбуку) ============ */
.ecs-pay-ozon {
  background: #005AFF !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 56px;
  padding: 10px 16px;
  -webkit-box-shadow: 0 6px 18px rgba(0,90,255,.28);
          box-shadow: 0 6px 18px rgba(0,90,255,.28);
}
.ecs-pay-ozon:hover { background: #0049e0 !important; }
.ecs-pay-ozon:active { -webkit-transform: translateY(1px); transform: translateY(1px); }
.ecs-pay-ozon__logo { height: 27px; width: auto; display: block; }
.ecs-pay-ozon--loading { color: #fff; font-size: 16px; font-weight: 600; }

.ecs-pay-note {
  text-align: center;
  font-size: 12px;
  color: #8a8f99;
  margin-top: 9px;
  line-height: 1.35;
}

/* Кнопка Ozon Pay — по брендбуку: горизонтальный логотип, размер по логотипу + охранное поле (override) */
.ecs-pay-ozon {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  min-width: 0 !important;
  max-width: 100%;
  margin: 0 auto !important;
  padding: 15px 32px !important;
  border-radius: 14px !important;
  min-height: 0 !important;
}
.ecs-pay-ozon__logo { height: 24px !important; width: auto !important; }
@media (max-width: 400px) {
  .ecs-pay-ozon { padding: 14px 26px !important; }
  .ecs-pay-ozon__logo { height: 22px !important; }
}

/* Кнопка Ozon Pay: убрать тень (брендбук), зафиксировать точный фон #005AFF */
.ecs-pay-ozon {
  background: #005AFF !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.ecs-pay-ozon:hover { background: #0050EE !important; }

/* ============ Hero-выгоды — компактный горизонтальный ряд чипов ============ */
.hero__feats {
  -webkit-box-orient: horizontal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 8px !important;
  margin: 0 auto 16px !important;
  max-width: 430px;
}
.hero-feat {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  -webkit-box-orient: horizontal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px !important;
  padding: 9px 10px;
  border-radius: 13px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .2);
  text-align: left;
}
.hero-feat__ic {
  height: 27px !important;
  width: auto !important;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  opacity: .95;
}
.hero-feat__ic--floor { height: 25px !important; }
.hero-feat__ic--back { height: 31px !important; }
.hero-feat span {
  font-size: 11.5px !important;
  font-weight: 600 !important;
  line-height: 1.18 !important;
  color: #fff !important;
  text-shadow: none !important;
}
@media (max-width: 360px) {
  .hero-feat { padding: 8px 8px; gap: 6px !important; }
  .hero-feat__ic { height: 24px !important; }
  .hero-feat__ic--back { height: 28px !important; }
  .hero-feat span { font-size: 10.5px !important; }
}

/* ============ Hero: заголовок по центру, чипы-выгоды прижаты к низу ============ */
.hero__container { position: static; }
.hero__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 46px;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 22px;
}
.hero__bottom .hero__feats { margin: 0; width: 100%; }
.hero__bottom .social-proof { margin: 16px 0 0 !important; }

/* ============ Остатки: «Нет в наличии» / «Осталось N шт» ============ */
.btn-oos {
  background: #e7e9ef !important;
  color: #9aa0ab !important;
  cursor: not-allowed !important;
  pointer-events: none;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  opacity: 1 !important;
}
.kit-card__stock {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 9px;
  border-radius: 7px;
  background: #fff2ed;
  color: #e5533c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

/* ============ Кнопка «В корзину» → «Перейти в корзину» (плавно) ============ */
.btn-buy {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  gap: 9px;
  border: 2px solid transparent;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: .01em;
  -webkit-transition: background-color .4s ease, color .3s ease, border-color .4s ease;
  transition: background-color .4s ease, color .3s ease, border-color .4s ease;
}
.btn-buy > svg, .btn-buy > span {
  -webkit-transition: opacity .16s ease;
  -o-transition: opacity .16s ease;
  transition: opacity .16s ease;
}
.btn-buy.is-morphing > svg, .btn-buy.is-morphing > span { opacity: 0; }
.btn-buy svg { width: 21px; height: 21px; -ms-flex-negative: 0; flex-shrink: 0; }
.btn-buy.in-cart {
  background: #00c25a !important;
  color: #fff !important;
  border-color: #00c25a !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

/* ============ Кнопка корзины: «Оформить заказ» + Ozon Pay ============ */
.ecs-pay-caption {
  text-align: center;
  margin-bottom: 11px;
}
.ecs-pay-caption > span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  background: #eef3ff;
  color: #005bff;
  padding: 7px 14px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 600;
}
.ecs-pay-ozon {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  gap: 14px;
  min-height: 70px !important;
  padding: 10px 20px !important;
  border-radius: 12px !important;
}
.ecs-pay-ozon__cta {
  color: #fff;
  font-size: 18.5px;
  font-weight: 700;
  letter-spacing: .01em;
}
.ecs-pay-ozon__logo { height: 48px !important; width: auto !important; }


/* ===== Плавающий бейдж «2 насадки в подарок» под корзиной + бегущий свет вокруг насадок ===== */
.gift-float {
  position: fixed;
  top: calc(var(--ticker-h, 34px) + var(--header-h, 59px) + 4px);
  right: 6px;
  z-index: 90;
  display: block;
  width: 116px;
  line-height: 0;
  -webkit-animation: giftBlink 1.5s ease-in-out infinite;
          animation: giftBlink 1.5s ease-in-out infinite;
}
.gift-float img { width: 100%; height: auto; display: block; }
@-webkit-keyframes giftBlink { 0%,100% { -webkit-filter: brightness(.9) drop-shadow(0 0 3px rgba(255,205,70,.35)); } 50% { -webkit-filter: brightness(1.32) drop-shadow(0 0 16px rgba(255,205,70,.95)); } }
@keyframes giftBlink {
  0%,100% { -webkit-filter: brightness(.9) drop-shadow(0 0 3px rgba(255,205,70,.35)); filter: brightness(.9) drop-shadow(0 0 3px rgba(255,205,70,.35)); }
  50%     { -webkit-filter: brightness(1.32) drop-shadow(0 0 16px rgba(255,205,70,.95)); filter: brightness(1.32) drop-shadow(0 0 16px rgba(255,205,70,.95)); }
}
/* Десктоп: центр бейджа ровно под центром корзины (контейнер 600px) */
@media (min-width: 768px) { .gift-float { width: 150px; right: calc(50vw - 340px); } }
@media (max-width: 360px) { .gift-float { width: 104px; right: 4px; } }
@media (prefers-reduced-motion: reduce) { .gift-float, .gift-float::before { -webkit-animation: none; animation: none; } }

/* ===== Кнопка «Купить» на первом экране: меньше и ниже, без пустоты ===== */
.hero__cta { margin-top: 16px !important; }
.hero__cta .btn-marketplace {
  min-width: 210px !important;
  max-width: 320px;
  padding: 13px 30px !important;
  font-size: 16px !important;
}
@media (min-width: 768px) {
  .hero__bottom { bottom: 24px !important; }
}

/* Иконка Ozon внутри плашки-подписи (плашка на span, блок центрируется text-align:center) */
.ecs-pay-caption__ozon { height: 22px; width: 22px; border-radius: 5px; display: inline-block; vertical-align: middle; margin-left: 2px; }

/* Надпись «Отслеживайте заказ в приложении Ozon» под кнопками «Купить» */
.track-note { text-align: center; margin-top: 9px; }
.track-note span {
  display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  gap: 5px; background: #eef3ff; color: #005bff;
  padding: 5px 11px; border-radius: 8px;
  font-size: 12px; font-weight: 600; line-height: 1.25;
}
.track-note__ozon { height: 18px; width: 18px; border-radius: 4px; display: inline-block; -ms-flex-negative: 0; flex-shrink: 0; }

/* Hero: кнопка и надпись «Отслеживайте…» — в колонку (надпись под кнопкой) */
.hero__cta { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 9px; }
