/* Client remarks 23.09.2026 */

.header__contacts {
  align-items: center;
  padding: 4px 2px;
}
.header__contacts .btn {
  display: none;
}

.callback-fab {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: var(--color-primary);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(237, 59, 58, 0.28);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.callback-fab .icon {
  font-size: 20px;
  transform-origin: 50% 55%;
}
.callback-fab::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(237, 59, 58, 0.35);
  animation: callback-ring 2s ease-out infinite;
  pointer-events: none;
}
@keyframes callback-ring {
  0% { transform: scale(0.92); opacity: 0.7; }
  70% { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}
@keyframes callback-shake {
  0%, 68%, 100% { transform: rotate(0); }
  72% { transform: rotate(14deg); }
  76% { transform: rotate(-12deg); }
  80% { transform: rotate(10deg); }
  84% { transform: rotate(-8deg); }
  88% { transform: rotate(4deg); }
}
@media (hover: hover) and (pointer: fine) {
  .callback-fab:hover {
    background: var(--color-primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(237, 59, 58, 0.36);
  }
}
.callback-fab:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: no-preference) {
  .callback-fab .icon {
    animation: callback-shake 2.4s ease-in-out infinite;
  }
}
@media (prefers-reduced-motion: reduce) {
  .callback-fab::after {
    animation: none;
  }
}

.offcanvas__callback {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  background: none;
  border: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
  text-align: left;
}
.offcanvas__callback .callback-fab {
  width: 48px;
  height: 48px;
}
.offcanvas__callback-label {
  font-weight: 700;
  font-size: 15px;
}

.floating-video {
  border: 0;
  border-radius: 16px;
  box-sizing: border-box;
  overflow: hidden;
}
.floating-video video {
  border-radius: 16px;
}

.product .buybox h1 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.25;
  margin: 0 0 6px;
}
.product .buybox__sku {
  margin: 0 0 8px;
}
.product .buybox__price {
  font-size: 26px;
  margin: 0 0 14px;
}
.product .buybox__actions {
  margin-bottom: 0;
}
.buybox__specs {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}
.buybox__specs .buybox__chars {
  margin: 0 0 10px;
  gap: 4px;
}
.buybox__specs table {
  width: 100%;
  font-size: 14px;
  border-collapse: collapse;
}
.buybox__specs table th,
.buybox__specs table td {
  padding: 6px 0;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-weight: 500;
}
.buybox__specs table th {
  color: var(--color-muted);
  font-weight: 600;
  width: 46%;
}

.category-section {
  margin: 0 0 36px;
}
.category-section__title {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.3;
}
.category-section__title a {
  color: inherit;
  text-decoration: none;
}
.category-section__title a:hover {
  color: var(--color-primary);
}

.contacts-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}
.contacts-print {
  min-height: 40px;
}
.contacts-schema-print {
  display: none;
}

.production-video {
  margin: 40px 0 8px;
  max-width: 860px;
}
.production-video h2 {
  margin: 0 0 16px;
  font-size: 22px;
}
.production-video__frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: var(--color-bg, #f4f7fb);
  border-radius: 16px;
  overflow: hidden;
}
.production-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media print {
  .header,
  .footer,
  .callback-fab,
  .floating-video,
  .cookie-banner,
  .no-print,
  .contacts-print,
  .contacts-hero-actions,
  [data-modal],
  .offcanvas,
  .crumbs {
    display: none !important;
  }
  .site-main,
  .container {
    max-width: none;
    padding: 0;
    margin: 0;
  }
  .page-hero h1 {
    margin-bottom: 8px;
  }
  .contacts-layout,
  .contacts-hours {
    display: block;
  }
  .contacts-layout__card,
  .contacts-access,
  .contacts-hours .contacts-layout__card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ccc;
    margin-bottom: 16px;
  }
}

.footer-trust {
  margin-top: 20px;
  padding: 16px 0 0;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-trust__grid {
  display: grid;
  gap: 10px;
}
@media (min-width: 900px) {
  .footer-trust__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}
.trust-card {
  border-radius: 14px;
  padding: 14px 16px 12px;
}
.trust-card__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 10px;
  margin-left: 12px;
}
.trust-card__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.trust-card__lead {
  margin: 2px 0 0;
  font-size: 11px;
  line-height: 1.3;
  color: var(--color-footer-muted);
}
.trust-card__icons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 5px;
  min-height: 80px;
}
.trust-ico {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 58px;
  text-align: center;
}
.trust-ico__mark {
  width: 36px;
  height: 36px;
  padding: 5px;
  box-sizing: border-box;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  transition: background 180ms ease;
}
.trust-ico__mark img,
.trust-ico__mark svg {
  width: auto;
  height: auto;
  max-width: 26px;
  max-height: 22px;
  object-fit: contain;
  display: block;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.72;
  transition: filter 180ms ease, opacity 180ms ease;
}
.trust-ico__mark .icon,
.trust-ico__mark i {
  font-size: 14px;
  color: #fff;
}
.trust-ico__letter {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
.trust-ico__name {
  font-size: 10px;
  line-height: 1.2;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}
@media (hover: hover) and (pointer: fine) {
  .trust-ico:hover .trust-ico__mark {
    transform: none;
    background: rgba(255, 255, 255, 0.08);
  }
  .trust-ico:hover .trust-ico__mark img,
  .trust-ico:hover .trust-ico__mark svg {
    filter: none;
    opacity: 1;
  }
}
.trust-card__feats {
  list-style: none;
  margin: 10px 0 0;
  padding: 8px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}
.trust-card__feats li {
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding-right: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 0 1 auto;
  min-width: 0;
  font-size: 11px;
  line-height: 1.25;
  color: var(--color-footer-muted);
}
.trust-card__feats li:last-child {
  border: none;
  padding-right: unset;
}

.sidebar-stack {
  display: grid;
  gap: 16px;
  align-content: start;
}
.sidebar-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 16px 16px 10px;
}
.sidebar-card__title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
}
.sidebar-price,
.sidebar-news {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-price li,
.sidebar-news li {
  border-top: 1px solid var(--color-border);
}
.sidebar-price__link,
.sidebar-news a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  color: var(--color-dark);
  text-decoration: none;
}
.sidebar-price__link .icon {
  color: #217346;
  margin-top: 2px;
}
.sidebar-price__link strong,
.sidebar-news__title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}
.sidebar-price__link small,
.sidebar-news__date {
  display: block;
  margin-top: 3px;
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 500;
}
.sidebar-price__link:hover,
.sidebar-news a:hover {
  color: var(--color-primary);
}

.article-related {
  display: grid;
  gap: 16px;
  background: transparent;
  border: 0;
  padding: 0;
}
.article-related > .sidebar-card,
.article-related__box {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 20px 20px 8px;
}

.form-field.is-error .form-error,
.form-field.is-error [data-validate-msg] {
  display: block;
}

.category-card,
.catalog-tile {
  position: relative;
}
.category-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  box-shadow: 0 6px 14px rgba(237, 59, 58, 0.28);
  pointer-events: none;
}

.title-nowrap {
  white-space: nowrap;
}
.product-card__title,
.buybox h1 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.product-card__unit-price,
.buybox__unit-price {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-muted);
}
.buybox__unit-price {
  margin: 0 0 16px;
}
.buybox__price {
  margin-bottom: 4px;
}
.buybox > .buybox__chars {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  font-size: 14px;
}
.buybox > .buybox__chars table {
  width: 100%;
  border-collapse: collapse;
}
.buybox > .buybox__chars table td {
  padding: 4px 8px 4px 0;
  border: 0;
  vertical-align: top;
}

.category-main {
  min-width: 0;
}
.category-after {
  clear: both;
  margin-top: 32px;
}
.category-after .accordion {
  width: 100%;
}
.category-after__cta {
  margin-top: 32px;
  clear: both;
}
.seo-block {
  clear: both;
  overflow: hidden;
}
.seo-block .g-align-center,
.content-typo .g-align-center {
  float: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  text-align: center;
}
.b-table_overflow {
  overflow-x: auto;
  margin: 20px 0 28px;
  clear: both;
  -webkit-overflow-scrolling: touch;
}
.content-typo .b-table,
.seo-block .b-table {
  display: table;
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.35;
  background: #fff;
}
.content-typo .b-table th,
.content-typo .b-table td,
.seo-block .b-table th,
.seo-block .b-table td {
  border: 1px solid var(--color-border);
  padding: 6px 8px;
  text-align: center;
  vertical-align: middle;
}
.content-typo .b-table th,
.seo-block .b-table th {
  background: #f4f7fb;
  font-weight: 700;
}
.b-table__yellow {
  background: #fff8d6;
  font-weight: 700;
}
.b-table__blue {
  background: #eef5ff;
  font-weight: 700;
  white-space: nowrap;
}

.footer__pay {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.footer__pay-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 22px;
}
.footer__bottom {
  margin-top: 20px;
}
.footer__pay-ico img {
  width: auto;
  height: 14px;
  max-width: 30px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}
.footer__pay-ico .icon,
.footer__pay-ico i {
  font-size: 13px;
  color: #fff;
}
@media (min-width: 768px) {
  .footer__pay {
    justify-content: flex-end;
  }
}
