.page {
  width: 100%;
  background-color: #f5f5f5;
  font-family: "Jost", sans-serif;
  color: #1a1a18;
}

:root {
  --font-family: "Jost", sans-serif;
  --color-text: #1a1a18;
  --color-white: #ffffff;
  --color-muted: #bebebe;
  --color-blue: #3391c5;
  --color-gray: #f2f2f2;
}

input,
textarea {
  caret-color: #3391C5;
}

::selection {
  background: #3391C5;
  color: #fff;
}

.t-hero-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 90px;
  line-height: 120px;
  letter-spacing: 0;
}

.t-section-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 90px;
  line-height: 100px;
  letter-spacing: 0;
}

.t-office-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 90px;
  line-height: 90px;
  letter-spacing: 0;
}

.t-25 {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 36.125px;
  letter-spacing: 0;
}

.t-20 {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28.9px;
  letter-spacing: 0;
}

.t-20-29 {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 29px;
  letter-spacing: 0;
}

.t-18 {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26.01px;
  letter-spacing: 0;
}

.t-18-25 {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0;
}

.t-16 {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 23.12px;
  letter-spacing: 0;
}

.t-22 {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 25px;
  letter-spacing: 0;
}

.t-30-43 {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 43px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.t-70-101 {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 70px;
  line-height: 80px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.t-14-20 {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20.23px;
  letter-spacing: 0;
}

.t-14-light {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0;
}

.t-85-100 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 85px;
  line-height: 100px;
  letter-spacing: 0;
}


.text-muted {
  color: var(--color-muted);
}

.text-blue {
  color: var(--color-blue);
}

.container {
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.header {
  padding-top: 30px;
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  border-radius: 10px;
}

.header__logo {
  flex-shrink: 0;
  display: flex;
  gap: 10px;
}

.header__logo-img {
  display: block;
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.header__slogan {
  margin: 0;
  width: 165px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 50px;
}

.header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background-color: var(--color-gray);
  border: 0.5px solid var(--color-gray);
  border-radius: 5px;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s ease;
}

.header__nav-link:hover {
  border-color: #3391c5;
}

.header__nav-link svg {
  height: 100%;
  width: 100%;
}


.header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__search {
  display: flex;
  align-items: center;

  width: 221px;
  height: 50px;
  background-color: var(--color-white);
  border: 1px solid var(--color-blue);
  border-radius: 100px;
  padding-right: 5px;
}

.header__search-input {
  flex: 1;
  border: none;
  background: none;
  height: 100%;
  width: 90%;
  padding: 15px;
  padding-right: 2px;
  outline: none;
  border-radius: 100px;
}

.header__search-input::placeholder {
  color: #b7b7b7;
}

.header__search-btn {
  width: 40px;
  height: 40px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background-color: var(--color-blue);
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.header__search-btn:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.header__contacts {
  text-align: right;
}

.header__burger {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 30px;
  min-width: 30px;
  max-width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--color-blue);
  border-radius: 5px;
  flex-shrink: 0;
  box-sizing: border-box;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.body_mobile-menu-open .header__burger {
  background-color: var(--color-blue);
  color: #ffffff;
}

.header__burger-icon {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.header__burger-icon_close {
  opacity: 0;
  pointer-events: none;
}

.body_mobile-menu-open .header__burger-icon_burger {
  opacity: 0;
  pointer-events: none;
}

.body_mobile-menu-open .header__burger-icon_close {
  opacity: 1;
  pointer-events: auto;
}

.header__burger-icon_close svg {
  display: block;
  width: 15px;
  height: 15px;
}

.header__burger-line {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background-color: currentColor;
}

.header {
  position: relative;
  z-index: 1001;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s 0.3s;
}

.mobile-menu_is-open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s 0s;
}

.mobile-menu_is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu_is-open .mobile-menu__backdrop {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-menu__panel {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu__nav {
  flex: 1;
  padding: 78px 10px 20px;
  display: flex;
  flex-direction: column;
}

.mobile-menu__nav>.mobile-menu__link,
.mobile-menu__nav>.mobile-menu__dropdown {
  border-bottom: 2px solid #f2f2f2;
}

.mobile-menu__link {
  display: block;
  padding: 12px 0;
  color: var(--color-text);
  text-decoration: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 26.01px;
  transition: color 0.2s ease;
}

.mobile-menu__link:hover {
  color: var(--color-blue);
}

.mobile-menu__link_current,
.mobile-menu__link_active-page {
  font-weight: 600;
  position: relative;
  padding-left: 21px;
}

.mobile-menu__link_current::before,
.mobile-menu__link_active-page::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3.5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-blue);
}

.mobile-menu__dropdown {
  border-bottom: 2px solid #f2f2f2;
}

.mobile-menu__dropdown-heading {
  display: block;
  width: 100%;
  margin: 0;
  padding: 12px 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 26.01px;
  color: var(--color-text);
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  padding-right: 30px;
}

.mobile-menu__dropdown-heading:hover {
  color: var(--color-blue);
}

.mobile-menu__dropdown-heading::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.mobile-menu__dropdown_is-open .mobile-menu__dropdown-heading::after {
  transform: rotate(-135deg);
  margin-top: -6px;
}

.mobile-menu__dropdown-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu__dropdown_is-open .mobile-menu__dropdown-list {
  max-height: 240px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--color-blue) transparent;
}

.mobile-menu__dropdown_is-open .mobile-menu__dropdown-list::-webkit-scrollbar {
  width: 6px;
}

.mobile-menu__dropdown_is-open .mobile-menu__dropdown-list::-webkit-scrollbar-track {
  background: transparent;
}

.mobile-menu__dropdown_is-open .mobile-menu__dropdown-list::-webkit-scrollbar-thumb {
  background-color: var(--color-blue);
  border-radius: 3px;
}

.mobile-menu__dropdown_is-open .mobile-menu__dropdown-list::-webkit-scrollbar-thumb:hover {
  background-color: #2a7ab0;
}

.mobile-menu__sublink {
  display: block;
  padding: 8px 0 8px 15px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 2px solid #f2f2f2;
}

.mobile-menu__sublink:last-child {
  border-bottom: none;
}

.mobile-menu__sublink:hover {
  color: var(--color-blue);
}

.mobile-menu__schedule {
  margin: 0;
  margin-top: 20px;
  font-size: 16px;
  line-height: 23.12px;
  color: var(--color-text);
}

.mobile-menu__phone {
  display: block;
  padding: 3px 0 0;
  font-size: 18px;
  line-height: 26.01px;
  color: var(--color-text);
  text-decoration: none;
}

.mobile-menu__phone:hover {
  color: var(--color-blue);
}



.hero-contact .contact-bar {
  z-index: 1002;
}

@media (min-width: 1021px) {
  .mobile-menu {
    display: none;
  }
}

.hero {
  height: 800px;
  margin-top: 0;
  overflow: hidden;
}

.hero .container {
  height: 100%;
}

.hero__inner {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
  background: linear-gradient(135deg, #3e609a 0%, #00304e 100%);

}

.hero__inner.hero-swiper .swiper-wrapper {
  height: 100%;
  align-items: stretch;
}

.hero__inner .swiper-slide {
  height: 100%;
}

.hero__slide-inner {
  position: relative;
  border-radius: 15px;
  padding: 25px 90px;
  height: 100%;
  min-height: 100%;
  display: grid;
  grid-template-columns: 57% 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  color: var(--color-white);
}

.hero__btn svg {
  rotate: -90deg;
}

.hero__left {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-width: 0;
}

.hero__content {
  max-width: 1010px;
  width: 100%;
  margin-bottom: -50px;
}

.hero__title {
  margin: 0 0 27px 0;
  text-transform: uppercase;
}

.hero__list {
  list-style: none;
  padding: 0;
}

.hero__list-item {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.hero__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background-color: var(--color-blue);
}

.hero__slide-inner .hero__btn {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 303px;
  height: 70px;
  background-color: var(--color-blue);
  border-radius: 10px;
  padding: 0 18px;
  text-decoration: none;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.25);
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__media {
  grid-column: 2;
  grid-row: 1 / -1;
  min-width: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 750px;
}

.hero__btn:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

.hero__img {
  height: 100%;
  min-height: 750px;
  object-fit: cover;
  object-position: center bottom;
}

.hero-contact {
  position: absolute;
  right: 80px;
  bottom: 75px;
  z-index: 10;
  width: 80px;
  transition: width 0.35s ease;
}

.hero-contact_is-open {
  width: 100px;
}

.hero-contact_is-open.hero-contact .contact-bar {
  background-color: #ffffff;
}




.hero-contact .contact-bar {
  position: fixed;
  right: 2.5vw;
  bottom: 100px;
  width: 80px;
  padding: 0;
  background-color: #ffffff00;
  border-radius: 100px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  max-height: 80px;
  transition: max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), padding 0.35s ease, width 0.35s ease;
}

.hero-contact_is-open .contact-bar {
  max-height: 280px;
  padding: 10px;
  width: 100px;
}

.hero-contact__trigger.contact-bar__trigger {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 100px;
  background-color: var(--color-blue);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}


.hero-contact_is-open .hero-contact__trigger {
  background-color: #f2f2f2;
}

.hero-contact__trigger-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.hero-contact__trigger-icon_phone {
  opacity: 1;
}

.hero-contact__trigger-icon_close {
  color: #1a1a18;
}

.hero-contact_is-open .hero-contact__trigger-icon_phone {
  opacity: 0;
}

.hero-contact_is-open .hero-contact__trigger-icon_close {
  opacity: 1;
}

.contact-bar__item {
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(0.5em);
  transition: opacity 0.35s ease 0.1s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

.hero-contact_is-open .contact-bar__item {
  opacity: 1;
  transform: translateY(0);
}

.contact-bar__item {
  width: 80px;
  height: 80px;
  border-radius: 100px;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.contact-bar__item:hover {
  opacity: 0.9;
}

.contact-bar__item_blue {
  background-color: #005ff9;
}

.contact-bar__item_green {
  background-color: #2ab200;
}

.contact-bar__item_gray {
  background-color: #f2f2f2;
}

.contact-bar__item_gray svg,
.contact-bar__item_close svg {
  display: block;
}

.contact-bar__item_close {
  background-color: #f2f2f2;
}

.contact-bar__item_callback {
  width: auto;
  min-width: 80px;
  padding: 0 20px;
  border-radius: 100px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  background-color: #3391c5;
}

.contact-bar__item_callback:hover {
  background-color: #2673a8;
}

.contact-bar__callback-text {
  white-space: nowrap;
}

.catalog {
  padding: 70px 0 60px;
}


.catalog__title {
  text-align: center;
  margin: 0 0 30px 0;
}

.catalog__tabs-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 46px;
}

.catalog__tabs {
  display: grid;
  grid-template-columns: 50% 50%;
  width: 860px;

  max-width: 100%;
  height: 66px;
  background-color: var(--color-gray);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.25);
}

.catalog__tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  background-color: var(--color-gray);
  color: #000000;
  transition: background-color 0.2s, color 0.2s;
}

.catalog__tab:first-child {
  flex: 0 0 444px;
}

.catalog__tab_active {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.catalog__panel {
  display: none;
}

.catalog__panel_active {
  display: block;
}

.catalog__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.catalog__card {
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 20px 20px 10px;
  min-height: 346px;
  border-bottom: 10px solid var(--color-white);
  display: flex;
  flex-direction: column;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.catalog__card:hover {
  background-color: var(--color-blue);
  border-color: #242e49;
  box-shadow: 0 0 60px 10px rgba(0, 0, 0, 0.35);
}

.catalog__card:hover .catalog__card-title,
.catalog__card:hover .catalog__card-desc {
  color: var(--color-white);
}

.header__phone {
  white-space: nowrap;
}

.catalog__card-image {
  width: 100%;
  max-width: 280px;
  height: 160px;
  padding: 20px;
  border-radius: 10px;
  background-color: var(--color-white);
  margin-bottom: 20px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.15);
}

.catalog__card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog__card-title {
  margin: 0 0 5px 0;
  text-transform: uppercase;
}

.catalog__card-desc {
  margin: 0;
  flex: 1;
  text-transform: uppercase;
}

.about {
  min-height: 700px;
  margin-top: 60px;
  margin-bottom: 50px;
  position: relative;
  color: var(--color-white);
}

.about__inner {
  padding: 60px;
  min-height: 700px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #3e609a 0%, #00304e 100%);
  border-radius: 15px;
  gap: 60px;
  box-shadow: 0 0 60px 15px rgba(0, 0, 0, 0.45);
}

.about__media {
  flex: 0 0 40%;
  max-width: 700px;
  position: relative;
}

.about__gallery {
  width: 100%;
  height: 580px;
  border-radius: 15px;
  overflow: hidden;
}

.about__gallery .swiper-slide {
  height: 580px;
}

.about__img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.about__content {
  flex: 1;
  min-width: 0;
}

.about__title {
  margin: 0 0 30px 0;
}

.about__text {
  margin: 0 0 30px 0;
}

.about__text p {
  margin: 0 0 20px 0;
}

.about__text p:last-child {
  margin-bottom: 0;
}

.about__btn {
  display: flex;

  align-items: center;
  justify-content: space-between;
  width: 303px;
  height: 70px;
  padding: 0 20px;
  background-color: var(--color-blue);
  color: var(--color-white);
  border-radius: 5px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.about__btn:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

.about__pagination {
  position: absolute;
  bottom: 20px;
  left: 50% !important;
  transform: translateX(-50%);
  width: 90% !important;
  max-width: 700px;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
  z-index: 2;
}

.about__pagination .swiper-pagination-bullet {
  max-width: 115px;
  width: 100%;
  height: 5px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0;
}

.about__pagination .swiper-pagination-bullet-active {
  background: var(--color-blue);
}

.office {
  padding: 50px 0 0;
}

.office__title {
  margin: 0 0 50px 0;
}

.office__map-wrap {
  position: relative;
  width: 100%;
  max-width: 1760px;
  height: 495px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 60px 15px rgba(0, 0, 0, 0.45);
}

/* ========== Каталог внутренняя ========== */
.catalog-inner {
  padding-top: 40px;
  padding-bottom: 40px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.breadcrumbs__link {
  color: #858585;
  text-decoration: none;
}

.breadcrumbs__link:hover {
  color: var(--color-text);
}

.breadcrumbs__sep {
  color: #858585;
  font-size: 16px;
  line-height: 20px;
}

.breadcrumbs__current {
  color: var(--color-text);
}

.breadcrumbs__current_weight_medium {
  font-weight: 500;
}

.hero-page {
  display: flex;
  align-items: center;
  gap: 20px 40px;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 15px;
  min-height: 200px;
  box-sizing: border-box;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.15);
}

.hero-page_theme_blue {
  background: #e6f0f8;
}

.hero-page_theme_pink {
  background: linear-gradient(135deg, #e51d8a 0%, #ffffff 100%);
}

.hero-page_theme_product {
  background: linear-gradient(135deg, #006ea9 0%, #ffffff 100%);
}

.hero-page_theme_product .hero-page__title,
.hero-page_theme_product .hero-page__subtitle {
  color: #ffffff;
}

.hero-page__card {
  flex-shrink: 0;
  width: 261px;
  height: 160px;
  background: var(--color-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-page__logo {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 640px) {
  .hero-page__card {
    aspect-ratio: 460 / 309;
    width: 100%;
    height: auto;
  }

  .hero-page__logo {
    aspect-ratio: 460 / 309;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}

.hero-page__content {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  container-type: inline-size;
  container-name: hero-content;
}

.hero-page__title {
  margin: 0 0 8px 0;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero-page__subtitle {
  margin: 0;
}

/* ========== Страница товара ========== */
.product-page {
  padding-bottom: 80px;
  font-family: "Jost", sans-serif;
}

.product-hero {
  display: flex;
  align-items: center;
  gap: 20px 40px;
  padding: 20px;
  margin-bottom: 40px;
  background: #e6f0f8;
  border-radius: 15px;
  min-height: 200px;
  box-sizing: border-box;
}

.product-hero__card {
  flex-shrink: 0;
  width: 261px;
  height: 160px;
  background: var(--color-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-hero__logo {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-hero__content {
  flex: 1;
  min-width: 0;
}

.product-hero__brand {
  margin: 0 0 8px 0;
  font-weight: 500;
  font-size: 70px;
  color: #1a1a18;
}

.product-hero__name {
  margin: 0;
  font-size: 30px;
  line-height: 1.44;
  color: #1a1a18;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 100px;

  box-sizing: border-box;
}

.product-gallery {
  min-width: 0;
}

.product-galery_slider {
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  background: var(--color-white);

}

.product-gallery__main-wrap {
  position: relative;
  border-radius: 15px;
  height: 504px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;

}

.product-gallery-main {
  min-height: 724px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.product-gallery-main .swiper-wrapper {
  height: 100%;
}

.product-gallery-main .swiper-slide {
  height: 100%;
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
}

.product-gallery__thumbs .swiper-slide {
  padding: 33px;
}

.product-gallery__slide img {
  object-fit: contain;
  height: 100%;
}

.product-gallery__arrow {
  position: absolute;
  top: 53%;
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  background: var(--color-white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
  padding: 28px 18px;
}

.product-gallery__arrow_prev {
  left: 50px;
}

.product-gallery__arrow_next {
  right: 50px;
}

.product-gallery-main .swiper-button-prev::after,
.product-gallery-main .swiper-button-next::after {
  content: none;
}

.product-gallery__thumbs {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  height: 138px;
  margin-top: 20px;
}

.product-gallery-thumbs.swiper {
  height: 138px;
  overflow: hidden;
  background-color: transparent;
  position: relative;
}

.product-gallery-thumbs-progress-track {
  width: 100%;
  height: 4px;
  margin-top: 5px;
  background: rgba(51, 145, 197, 0.18);
  border-radius: 999px;
  overflow: hidden;
  pointer-events: none;
}

.product-gallery-thumbs-progress-bar {
  height: 100%;
  width: 100%;
  background: #3391c5;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.1s linear;
  pointer-events: none;
}

.product-gallery-thumbs .swiper-wrapper {
  flex-wrap: nowrap;
  height: 138px;
  align-items: stretch;
  background-color: transparent;
}

.product-gallery__thumbs .swiper-slide {
  height: 138px;
  flex-shrink: 0;
  border-radius: 15px;
  background: var(--color-white);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}


.product-gallery__thumbs .swiper-slide img {
  display: block;
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.product-gallery__thumbs .swiper-slide-thumb-active {
  border-color: #3391c5;
}

.product-gallery__thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-info {
  background: var(--color-white);
  border-radius: 15px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.15);
}

.product-info__title {
  margin: 0 0 30px 0;
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  font-size: 35px;
  line-height: 1.57;
  color: #1a1a18;
}

.product-info__short {
  margin: 0 0 20px 0;
  font-size: 20px;
  line-height: 1.28;
  color: #1a1a18;
}

.desc-bold {
  font-weight: 500;
}

.product-info__features-title {
  margin: 0 0 5px 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.45;
  color: #1a1a18;
}

.product-info__list {
  margin: 0 0 30px 0;
  padding-left: 7px;
  list-style: none;
  font-size: 20px;
  line-height: 1.45;
  color: #1a1a18;
}

.product-info__list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 8px;
}

.product-info__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: #3391c5;
  border-radius: 50%;
}

.product-contact {
  padding: 20px;
  background: #f2f2f2;
  border-radius: 10px;
  box-sizing: border-box;
}

.product-contact__title {
  margin: 0 0 20px 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.45;
  color: #1a1a18;
}

.product-contact__row {
  display: flex;
  gap: 15px 25px;
}

.product-contact__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--color-white);
  border-radius: 5px;
  font-size: 18px;
  line-height: 1.44;
  color: #1a1a18;
  text-decoration: none;
  box-sizing: border-box;
}

.product-contact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 3px;
  flex-shrink: 0;
}

.product-contact__icon_phone {
  background: #2ab200;
}

.product-contact__icon_mail {
  background: #005ff9;
}

@media (min-width: 1440px) {
  .product-page .product-card {
    align-items: stretch;
  }

  .product-page .product-gallery {
    display: flex;
    flex-direction: column;

    height: 100%;
  }

  .product-page .product-galery_slider {
    flex-shrink: 0;
  }

  .product-page .product-gallery__main-wrap {
    height: 480px;
  }

  .product-page .product-gallery-main {
    min-height: 480px;
    height: 480px;
  }

  .product-page .product-gallery-main .swiper-wrapper,
  .product-page .product-gallery-main .swiper-slide {
    height: 100%;
  }

  .product-page .product-thunb_slider {
    flex-shrink: 0;
    margin-top: auto;
  }

  .product-page .product-gallery__thumbs,
  .product-page .product-gallery-thumbs.swiper {
    height: 138px;
  }

  .product-page .product-info {
    display: flex;
    flex-direction: column;
  }

  .product-page .product-info_content {
    flex: 1;
    min-height: 0;
  }
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 0;
  border-radius: 5px 5px 0 0;
  overflow: hidden;

}

.product-tabs__btn {
  flex: 1;
  min-width: 120px;
  height: 66px;
  padding: 0 20px;
  border: none;
  background: var(--color-white);
  color: #1a1a18;
  font-family: inherit;
  font-size: 25px;
  line-height: 36px;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
  border-bottom: 2px solid #DDDDDD;
  border-radius: 15px 15px 0 0;
}

.product-tabs__btn:not(:first-child)::after {
  content: "";
  position: absolute;
  left: -1px;
  top: 60%;
  transform: translateY(-50%);
  width: 2px;
  height: 51px;
  background: #dddddd;
  border-radius: 100px;
}

.product-tabs__btn_active {
  background: #3391c5;
  color: var(--color-white);
}

.product-tabs__btn_active::after {
  display: none;
}

.product-tabs__btn-arrow {
  display: none;
}

.product-panels {
  padding: 40px;
  margin-top: -2px;
  background: var(--color-white);
  border: 1px solid #dddddd;
  border-top: 2px solid #dddddd;
  box-sizing: border-box;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 15px 15px;
  min-height: 350px;
}

.product-panel {
  display: none;
}

.product-panel[data-product-panel="description"] {
  min-height: 350px;
}

.product-panel_active {
  display: block;
}

.product-panel .tab-content,
.product-panel .productTabContent {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.product-panel .productDescription,
.product-panel .productDescription.characteristics_table {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.product-panel .ru-table-wrap {
  border-radius: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.product-panel__title {
  margin: 0 0 24px 0;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.44;
  color: #1a1a18;
}

.product-panel__text {
  margin: 0;
  font-size: 20px;
  line-height: 1.28;
  color: #1a1a18;
}

.product-panel__text p {
  margin: 0 0 1em 0;
}

.product-panel__text p:last-child {
  margin-bottom: 0;
}

.product-panel_active#panel-video {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.product-panel__video-block {
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
}

.product-panel__video-block:last-child {
  margin-bottom: 0;
}

.product-panel__video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

.product-panel__video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.order-popup-wrapper {
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}



.tab-content h2 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 30px;
  color: #1a1a18;
  text-align: left;
  margin: 0;
  margin-bottom: 20px;
}

.productDescription {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: #1a1a18;
}




.productDescription p {
  margin-bottom: 0rem;
}

.productDescription.characteristics_table table {
  width: 100% !important;
  max-width: 100%;
  table-layout: fixed;
  box-sizing: border-box;
}

.characteristics_table {
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
}

.characteristics_table th,
.characteristics_table td {
  border: 2px solid black;
}

.product-page .characteristics_table td {
  padding: 10px;
  vertical-align: top;
}

.product-page .characteristics_table td:has(.characteristics_table__nested-table) {
  padding: 0;
  vertical-align: top;
}

.product-page .characteristics_table tr td:first-child {
  width: 420px;
  max-width: 420px;
  vertical-align: middle;
}

.characteristics_table__nested-table {
  margin: 0;
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  color: #1a1a18;
  background-color: #fff;
}

.characteristics_table__nested-table td {
  border: 2px solid black;
  padding: 14px 20px;
  vertical-align: top;
  background-color: #fff;
}

.characteristics_table__nested-table tr:first-child td {
  border-top: none;
}

.characteristics_table__nested-table tr:last-child td {
  border-bottom: none;
}

.characteristics_table__nested-table td {
  border-left: none;
  border-right: none;
}

.table {
  margin-bottom: 0;
}

.productCatalogs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.productCatalogs__item {
  margin: 0;
  width: 100%;
}

.productCatalogs__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 20px;
  font-family: var(--font-family, "Jost", sans-serif);
  font-weight: 500;
  font-size: 25px;
  line-height: 1.3;
  color: #1a1a18;
  background-color: #ffffff;
  border: 2px solid #3391c5;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.productCatalogs__link:hover {
  background-color: #3391c5;
  border-color: #3391c5;
  color: #ffffff;
}

.productCatalogs__link:hover .productCatalogs__icon {
  color: #ffffff;
}

.productCatalogs__link:focus-visible {
  outline: 2px solid #3391c5;
  outline-offset: 2px;
}

.productCatalogs__icon {
  display: flex;
  flex-shrink: 0;
  color: #3391c5;
  transition: color 0.2s;
}

.productCatalogs__icon svg {
  width: 24px;
  height: 24px;
}

.productCatalogs__icon svg,
.productCatalogs__icon svg path {
  fill: currentColor;
}

.product-panel .ru-table-wrap_order {
  padding: 0;
  box-shadow: none;
}

.ru-table-wrap_order .ru-table {
  grid-template-columns: 171px 1fr 154px 246px;
}

.ru-table-wrap_order .ru-table__ru-blue .ru-table__td,
.ru-table-wrap_order .ru-table__ru-gray .ru-table__td {
  border-radius: 5px;
}

.ru-table-wrap_order .ru-table__td_action {
  padding: 5px;
}

.ru-table-wrap_order .ru-table__qty-control {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
}

.ru-table-wrap_order .ru-table__qty-group {
  display: flex;
  align-items: center;
  max-width: 140px;
  width: 100%;
  flex-shrink: 0;
  border-radius: 5px;
  overflow: hidden;
  padding: 3px;
  background-color: #ffffff;
}

.ru-table-wrap_order .ru-table__qty-btn {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3391c5;
  color: var(--color-white);
  border: none;
  font-size: 18px;
  font-weight: 400;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.ru-table-wrap_order .ru-table__qty-btn:hover {
  background: #2a7aad;
}

.ru-table-wrap_order .ru-table__qty-btn:active {
  transform: scale(0.95);
}

.ru-table-wrap_order .ru-table__qty-input {
  width: 100%;
  height: 100%;
  padding: 0 4px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1a1a18;
  text-align: center;
  background: var(--color-white);
  border: none;
  box-sizing: border-box;
  appearance: textfield;
  -moz-appearance: textfield;
}

.ru-table-wrap_order .ru-table__qty-input::-webkit-outer-spin-button,
.ru-table-wrap_order .ru-table__qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ru-table-wrap_order .ru-table__qty-add {
  flex: 1;
  min-width: 0;
  height: 32px;
  padding: 0 12px;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  line-height: 1;
  color: var(--color-white);
  background: #3391c5;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.ru-table-wrap_order .ru-table__qty-add:hover {
  background: #2a7aad;
}

.ru-table-wrap_order .ru-table__qty-add:active {
  transform: scale(0.98);
}

.ru-table-wrap_order .ru-table__td_num {
  justify-content: center;
  padding-left: 14px;
}

.product-order__actions {
  display: none;
  gap: 20px;
  align-items: center;
  flex-direction: row;
  margin-top: 40px;
  padding: 40px;
  background: var(--color-white);
  border: 1px solid #dddddd;
  border-top: none;
  border-radius: 15px;
  box-sizing: border-box;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.15);
}

@media (min-width: 1801px) {
  .product-tabs-accordion_order-active .product-order__actions {
    display: flex;
  }
}

.product-order__upload-form {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.product-order__delete-form {
  flex: 0 0 auto;
}

.product-order__action-btn {
  width: 220px;
  height: 70px;
  padding: 0;
  border: none;
  border-radius: 10px;
  font-family: "Jost", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  box-sizing: border-box;
}

.product-order__action-btn_file {
  width: 533px;
  height: 70px;
  padding: 0;
  background-color: #f2f2f2;
  color: transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 25px;
  overflow: hidden;
}

.product-order__action-btn_file::-webkit-file-upload-button {
  width: 100%;
  height: 70px;
  padding: 0;
  margin: 0;
  background-color: #f2f2f2;
  color: #1a1a18;
  border: none;
  border-radius: 10px;
  font-family: "Jost", sans-serif;
  font-size: 25px;
  cursor: pointer;
}

.product-order__action-btn_file::file-selector-button {
  width: 100%;
  height: 70px;
  padding: 0;
  margin: 0;
  background-color: #f2f2f2;
  color: #1a1a18;
  border: none;
  border-radius: 10px;
  font-family: "Jost", sans-serif;
  font-size: 25px;
  cursor: pointer;
}

.product-order__action-btn_upload {
  width: 533px;
  background-color: #f2f2f2;
  color: #1a1a18;
}

.product-order__action-btn_upload:hover {
  background-color: #e5e5e5;
}

.product-order__action-btn_delete {
  width: 450px;
  height: 70px;
  background-color: #e60000;
  color: var(--color-white);
  border-radius: 10px;
}

.product-order__action-btn_delete:hover {
  background-color: #cc0000;
  opacity: 0.95;
}

.product-order__total-panel[hidden],
._cart-clearing .product-order__total-panel {
  display: none !important;
}

.product-order__total-panel {
  position: fixed;
  right: calc(4vw + 90px);
  bottom: 100px;
  z-index: 9998;
  display: flex;
  align-items: stretch;
  gap: 20px;
  width: 100%;
  max-width: 636px;
  min-height: 80px;
  padding: 10px;
  background: #ffffff;
  border-radius: 15px;
  box-sizing: border-box;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.15);
}

.product-order__total-caption {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  width: 100%;
  max-width: 303px;
  padding: 0 20px;
  background: #3391c5;
  border-radius: 10px;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 29px;
  color: #ffffff;
  text-align: center;
  box-sizing: border-box;
}

.product-order__total-info {
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
  padding: 0 20px;
  background: #f2f2f2;
  border-radius: 10px;
  box-sizing: border-box;
}

.product-order__total-label,
.product-order__total-count {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  line-height: 29px;
}

.product-order__total-label {
  font-weight: 400;
  color: #1a1a18;
}

.product-order__total-count {
  font-weight: 500;
  color: #3391c5;
}

/* ========== Виджет куки ========== */
.cookie-bar[hidden] {
  display: none !important;
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #e6f0f8;
  min-height: 80px;
  display: flex;
  align-items: center;
  box-shadow: 0px -12px 34.8px 0px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-bar.cookie-bar_hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 80px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.cookie-bar__text {
  margin: 0;
  font-family: "Jost", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 32.05px;
  color: #000000;
  flex: 1;
  max-width: 1287px;
}

.cookie-bar__link {
  color: #3391c5;
  text-decoration: underline;
}

.cookie-bar__link:hover {
  text-decoration: none;
}

.cookie-bar__btn {
  flex-shrink: 0;
  min-width: 260px;
  height: 50px;
  padding: 0 20px;
  background: #3391c5;
  border: none;
  border-radius: 5px;
  font-family: "Jost", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 36.125px;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-bar__btn:hover {
  background: #2a7aa8;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.catalog-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-white);
  border-radius: 10px;
  border-right: 10px solid var(--color-white);
  text-decoration: none;
  color: var(--color-text);
  min-height: 190px;
  box-sizing: border-box;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.catalog-card:hover {
  background-color: var(--color-blue);
  border-right-color: #242e49;
  box-shadow: 0 0 60px 10px rgba(0, 0, 0, 0.35);
}

.catalog-card:hover .catalog-card__title {
  color: var(--color-white);
}

.catalog-inner .catalog-card__title {
  text-transform: uppercase;
}

.catalog-card__img-wrap {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.15);
}

.catalog-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.catalog-card__title {
  flex: 1;
  margin: 0;
  min-width: 0;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 29px;
  letter-spacing: 0;
  display: flex;
  align-items: center;
}

/* ========== Сертификаты ========== */
.certificates,
.product-page {
  padding-top: 40px;
  padding-bottom: 40px;
}

.brand-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}

.brand-card {
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 20px;
  min-height: 278px;
  border-bottom: 10px solid var(--color-white);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--color-text);
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.brand-card:hover {
  background-color: var(--color-blue);
  border-color: #242e49;
  box-shadow: 0 0 60px 10px rgba(0, 0, 0, 0.35);
}

.brand-card:hover .brand-card__title {
  color: var(--color-white);
}

.brand-card__img-wrap {
  width: 100%;
  max-width: 280px;
  height: 160px;
  padding: 20px;
  border-radius: 10px;
  background-color: var(--color-white);
  margin-bottom: 20px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.15);
}

.brand-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-card__title {
  margin: 0 0 5px 0;
  text-transform: uppercase;
  text-align: center;
}

/* ========== Контакты ========== */
.contacts {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* ========== Поиск ========== */
.page_search .search-page {
  background: #f5f5f5;
  padding-top: 50px;
  padding-bottom: 80px;
  min-height: 60vh;
}

.search-results__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.search-results__title {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 69.36px;
  color: #1a1a18;
  margin: 0;
}

.search-results__list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.search-card {
  display: block;
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, color 0.2s ease;
}

.search-card:hover {
  background: #3391c5;
  color: #ffffff;
}

.search-card:hover .search-card__title {
  color: #ffffff;
}

.search-card:hover .search-card__meta {
  background: #242e49;
  color: #ffffff;
}

.search-card:hover .search-card__art,
.search-card:hover .search-card__desc {
  color: #ffffff;
}

.search-card__title {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 29px;
  color: #1a1a18;
  margin: 0 0 20px;
  transition: color 0.2s ease;
}

.search-card__meta {
  background: #f5f5f5;
  border-radius: 15px;
  padding: 20px;
  transition: background 0.2s ease;
}

.search-card__meta+.search-card__meta {
  margin-top: 20px;
}

.search-card__art,
.search-card__desc {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 23.12px;
  color: #1a1a18;
  margin: 0 0 4px;
  transition: color 0.2s ease;
}

.search-card__art .search-card__label,
.search-card__desc .search-card__label {
  font-weight: 500;
}

.search-card__desc:last-child {
  margin-bottom: 0;
}

.search-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.search-pagination__link {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #3391c5;
  text-decoration: none;
}

.search-pagination__link:hover {
  text-decoration: underline;
}

.search-pagination__link-icon {
  display: none;
}

.search-pagination__btn {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  background: rgba(51, 145, 197, 0.5);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3391c5;
}

.search-pagination__btn_next {
  background: #3391c5;
  color: #fff;
}

.search-pagination__btn-icon {
  display: none;
}

.search-pagination__btn::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.search-pagination__btn_next::after {
  transform: rotate(-135deg);
}

.search-pagination__btn_prev .search-pagination__btn-icon {
  opacity: 0.6;
}

.search-pagination__numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-pagination__num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  border-radius: 5px;
  border: 1px solid #c9c9c9;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #b0b0b0;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.search-pagination__num:hover {
  color: #3391c5;
  border-color: #3391c5;
}

.search-pagination__num_active {
  background: #3391c5;
  border-color: #3391c5;
  color: #ffffff;
  font-weight: 500;
}

.search-pagination__num_active:hover {
  color: #ffffff;
}

.search-pagination__ellipsis {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  color: #b0b0b0;
  padding: 0 4px;
}

.search-pagination_bottom {
  margin-top: 20px;
  justify-content: center;
}

/* ========== Условия работы / Политика ========== */
.usloviya,
.politika {
  background-color: #f5f5f5;
  padding-top: 40px;
  padding-bottom: 40px;
  font-family: "Jost", sans-serif;
}


.usloviya-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 80px;
  margin-bottom: 150px;
  border-radius: 15px;
  background: radial-gradient(ellipse 82% 50% at 83% 50%, #f6fbff 0%, #e6f0f8 100%);
  background-image: url("../img/uslovia/bg-uslovia.svg"), radial-gradient(ellipse 82% 50% at 83% 50%, #f6fbff 0%, #e6f0f8 100%);
  background-position: right center, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-size: auto 140%, 100% 100%;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.politika-hero {
  margin-bottom: 40px;
}

.usloviya-hero__brand {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  margin-bottom: 30px;
}

.usloviya-hero__logo-wrap {
  width: 70px;
  height: 70px;
  background: #3292c5;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
  box-sizing: border-box;
}

.usloviya-hero__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.usloviya-hero__company {
  margin: 0;
  color: #1a1a18;
  font-size: 18px;
  line-height: 26px;
}

.usloviya-hero__content {
  width: 100%;
  min-width: 0;
}

.usloviya-hero__title {
  margin: 0 0 20px 0;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 90px;
  line-height: 120px;
  color: #1a1a18;
  letter-spacing: 0;
  text-transform: uppercase;
}

.usloviya-hero__subtitle {
  margin: 0;
  max-width: 777px;
  color: #1a1a18;
  font-size: 25px;
  line-height: 36px;
}

.politika__content {
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 0 40px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28.9px;
  color: #1a1a18;
}

.politika__content h2 {
  margin: 0 0 24px 0;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28.9px;
  color: #1a1a18;
}

.politika__content h3 {
  margin: 28px 0 12px 0;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28.9px;
  color: #1a1a18;
}

.politika__content h3:first-of-type {
  margin-top: 0;
}

.politika__content p {
  margin: 0 0 12px 0;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28.9px;
  color: #1a1a18;
}

.politika__content ul {
  margin: 0 0 12px 0;
  padding-left: 24px;
  list-style: disc;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28.9px;
  color: #1a1a18;
}

.politika__content ul li {
  margin-bottom: 6px;
}

.politika__content ul li:last-child {
  margin-bottom: 0;
}

/* Списки с тире (3.1, 3.2, 4.1, 4.2) — маркер «—»; в п.6 списки с точками (ul по умолчанию) */
.politika__content ul.list_dash {
  list-style: none;
  padding-left: 0;
}

.politika__content ul.list_dash li {
  padding-left: 0;
}

.politika__content ul.list_dash li::before {
  content: "— ";
}

.politika__content a {
  color: #3391c5;
  text-decoration: underline;
}

.politika__content a:hover {
  text-decoration: none;
}

.usloviya-section {
  margin-bottom: 150px;
}

.usloviya-section:last-of-type {
  margin-bottom: 0;
}

.usloviya-section__title,
.usloviya-section-title {
  margin: 0 0 40px 0;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 90px;
  line-height: 120px;
  color: #1a1a18;
  text-align: left;
}

.usloviya-section__title_center,
.usloviya-section-title_center {
  text-align: center;
  margin-bottom: 50px;
}

.usloviya-cards {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.usloviya-cards_row1 .usloviya-card_w33 {
  flex: 0 0 560px;
}

.usloviya-cards_row1 .usloviya-card_w66 {
  flex: 1 1 auto;
  min-width: 0;
}

.usloviya-cards_row2 .usloviya-card_w66 {
  flex: 1 1 auto;
  min-width: 0;
}

.usloviya-cards_row2 .usloviya-card_w33 {
  flex: 0 0 560px;
}

.usloviya-cards_two .usloviya-card_half {
  flex: 1 1 calc(50% - 20px);
  min-width: 0;
}

.usloviya-card_large {
  min-height: 457px;
}

.usloviya-cards_three .usloviya-card_third {
  flex: 1 1 calc(33.333% - 27px);
  min-width: 0;
}

.usloviya-photos {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.usloviya-photo {
  flex: 1 1 calc(33.333% - 27px);
  border-radius: 10px;
  overflow: hidden;
  background: #e6f0f8;
  min-height: 373px;
}

.usloviya-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 373px;
  object-fit: cover;
}

.usloviya-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px 30px 40px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.usloviya-section_order .usloviya-card::before,
.usloviya-section_stock .usloviya-card::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 30px;
  width: 80px;
  height: 80px;
  background: url("../img/uslovia/covuch-uslov.png") no-repeat center;
  background-size: contain;
  pointer-events: none;
}

.usloviya-section_offer .usloviya-card:nth-child(1)::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: url("../img/uslovia/doc-uslov.png") no-repeat right bottom;
  background-size: contain;
  pointer-events: none;
  z-index: 2;
}

.usloviya-section_offer .usloviya-card:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 270px;
  height: 270px;
  background: url("../img/uslovia/group-uslov.png") no-repeat right bottom;
  background-size: contain;
  pointer-events: none;
  z-index: 2;
}

.usloviya-card__num {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: #c6dff1;
  border: 1px solid #3391c5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 40px;
  color: #3391c5;
  margin-bottom: 30px;
  flex-shrink: 0;
}

.usloviya-card__text {
  margin: 0;
  color: #1a1a18;
  font-size: 20px;
  line-height: 29px;
  font-weight: 400;
  z-index: 3;
  position: relative;
}

.usloviya-card__text a {
  color: #3391c5;
  text-decoration: none;
}

.usloviya-card__text a:hover {
  text-decoration: underline;
}

.usloviya-card_subtitle .usloviya-card__heading {
  margin: 0 0 20px 0;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  color: #1a1a18;
}

.usloviya-card_subtitle .usloviya-card__text {
  margin: 0;
}

/* Баннер внизу (плейсхолдер под изображение из макета) */
.usloviya-banner {
  margin-top: 60px;
  border-radius: 15px;
  overflow: hidden;
  background: #e6f0f8;
  min-height: 400px;
}

.usloviya-banner__img {
  width: 100%;
  height: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
}

.usloviya-banner__img img {
  min-height: 100%;
  width: auto;
  object-fit: cover;
}

.contacts__map-wrap {
  margin-bottom: 40px;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  position: relative;
}

.contacts__map {
  width: 100%;
  height: 495px;
  border-radius: 20px;
  overflow: hidden;
}

.contacts__map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 495px;
  background: linear-gradient(135deg, #d0d8e0 0%, #e8eef4 100%);
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.contact-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 30px;
  box-sizing: border-box;
}

.contact-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: #c6dff1;
  border: 1px solid var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.contact-card__icon_type_doc {
  padding: 10px;
  box-sizing: border-box;
}

.contact-card__icon svg {
  width: 26px;
  height: 27px;
}

.contact-card__icon_type_doc svg {
  width: 21px;
  height: 27px;
}

.contact-card__title {
  margin: 0 0 20px 0;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  color: var(--color-text);
}

.contact-card__title.t-30-43 {
  font-size: 30px;
  line-height: 40px;
}

.contact-card__text,
.contact-card__link {
  margin: 0 0 12px 0;
  display: flex;
  align-items: start;
  gap: 7px;
  color: var(--color-text);
  text-decoration: none;
}

.contact-card__text svg,
.contact-card__link svg {
  margin-top: 7px;
}

.contact-card__link:hover {
  color: var(--color-blue);
}



.contact-card__body {
  margin: 0;
  color: var(--color-text);
}

.contact-card__body p {
  margin: 0 0 4px 0;
  font-size: 20px;
  line-height: 28.9px;
}

.contact-card__body p:last-child {
  margin-bottom: 0;
}

/* Контакты — адаптив 1440 */
@media (max-width: 1440px) {
  .contacts {
    padding-top: 40px;
    padding-bottom: 40px;
  }


  .contacts__map-wrap {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.15);
  }

  .contacts__map,
  .contacts__map-placeholder {
    height: 495px;
    border-radius: 20px;
  }

  .contacts-grid {
    display: grid;
    grid-template-columns: repeat(2, 49%);
    gap: 40px;
  }

  .contacts .contact-card {
    width: 100%;
    min-height: 458px;
    padding: 20px;
    border-radius: 20px;
    background: #ffffff;
    box-sizing: border-box;
  }

  .contact-card-thee {
    grid-column: 1/3;
  }

  .contacts .contact-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background: #c6dff1;
    border: 1px solid #3391c5;
    margin-bottom: 50px;
  }

  .contacts .contact-card__title {
    font-size: 25px;
    line-height: 35px;
    margin: 0 0 20px;
  }

  .contacts .contact-card__text,
  .contacts .contact-card__link {
    font-size: 18px;
    margin: 0 0 12px;
  }

  .contacts .contact-card__body,
  .contacts .contact-card__body p {
    font-size: 18px;
  }
}

/* ========== Сертификаты внутренняя ========== */
.certificates-inner {
  padding-top: 40px;
  padding-bottom: 40px;
}

.ru-table-wrap {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  padding: 30px;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.15);
}

.ru-table {
  display: grid;
  grid-template-columns: 60px 1fr 151px 150px;
  gap: 10px;
  width: 100%;
  font-family: "Jost", sans-serif;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ru-table__head,
.ru-table__ru-blue,
.ru-table__ru-gray {
  display: contents;
}

.ru-table__ru-blue>li.ru-table__th,
.ru-table__ru-gray>li.ru-table__th {
  display: none;
}

.ru-table__th {
  background: #3391c5;
  color: var(--color-white);
  font-weight: 500;
  font-size: 25px;
  line-height: 36px;
  text-align: left;
  padding: 12px 14px;
  border: none;
  border-radius: 10px;
  vertical-align: middle;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ru-table__th_num {
  text-align: left;
  padding-left: 17px;
}

.ru-table__th_doc {
  padding-left: 14px;
  justify-content: start;
}

.ru-table__th_ru-num {
  text-align: left;
}

.ru-table__th_ru {
  text-align: center;
}

.ru-table__td {
  color: #1a1a18;
  font-size: 16px;
  line-height: 23px;
  font-weight: 400;
  padding: 10px 14px;
  border: none;
  border-radius: 5px;
  vertical-align: middle;
  box-sizing: border-box;
}

.ru-table>.ru-table__ru-blue:nth-child(2n+2) .ru-table__td,
.ru-table>.ru-table__ru-gray:nth-child(2n+2) .ru-table__td {
  background: #e6f0f8;
}

.ru-table>.ru-table__ru-blue:nth-child(2n+3) .ru-table__td,
.ru-table>.ru-table__ru-gray:nth-child(2n+3) .ru-table__td {
  background: #f2f2f2;
}

.ru-table__td_num {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ru-table__td_doc {
  padding-left: 14px;
}

.ru-table__td_ru-num {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ru-table__td_action {
  padding: 0;
  vertical-align: middle;
  background: transparent;
  position: relative;
}

.ru-table__link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
  padding: 0 14px;
  background: #3391c5;
  color: var(--color-white);
  text-decoration: none;
  font-size: 16px;
  line-height: 23px;
  border-radius: 5px;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.ru-table__link:hover {
  background-color: #2a7aad;
  box-shadow: 0 4px 12px rgba(51, 145, 197, 0.35);
  transform: scale(1.02);
}

.ru-table__link:active {
  transform: scale(0.98);
}

.ru-table__link-icon {
  flex-shrink: 0;
}



.footer {
  padding: 50px 0 80px;
  position: relative;
  color: var(--color-white);
}

.footer__inner {
  padding: 60px;
  background-image: url("../img/bg-footer.png"), linear-gradient(135deg, #3e609a 0%, #00304e 100%);
  background-position: left 200%, 0 0;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 15px;
  min-height: 351px;
  display: flex;

  gap: 0 80px;
  align-content: start;
  justify-content: space-between;

  position: relative;
  z-index: 1;
  box-shadow: 0 0 60px 15px rgba(0, 0, 0, 0.45);
}

.footer-content {
  display: flex;
}

.footer-logo_content {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  align-items: center;
  margin-bottom: 24px;
}

.footer__brand {
  max-width: 528px;
  position: relative;
  z-index: 1;
}

.footer__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 8px;
}


.footer__copyright {
  margin: 0;
}

.footer__schedule {
  padding-top: 0;
  position: relative;
  z-index: 1;
  margin-right: 74px;
}

.footer__heading {
  margin: 0 0 11px 0;
}

.footer__schedule-text {
  margin: 0;
  white-space: nowrap;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  max-width: 206px;
  margin-right: 17px;
}

.footer__nav .footer__heading {
  margin-bottom: 11px;
}

.footer__link {
  display: block;
  margin-bottom: 4px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer__link:hover {
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.9;
}

.footer__link_active {
  color: var(--color-blue);
  font-weight: 500;
}

.footer__address {
  position: relative;
  z-index: 1;
  max-width: 404px;
}

.footer__address .footer__heading {
  margin-top: 0;
}

.footer__address .footer__heading+.footer__address-text {
  margin-bottom: 16px;
}

.footer__address-text {
  margin: 0 0 16px 0;
}

#hero-contact {
  z-index: 9999;
}

.breadcrumbs .t-18 {
  font-size: 18px;
}

.product-tabs-accordion {
  border-radius: 15px;

}

/* ========== Страница 404 ========== */
.page-error {
  background-color: #e6f0f8;
  height: 100vh;
  max-height: 100vh;
  position: relative;
}

.page.page-error {
  display: flex;
  flex-direction: column;
}

.page.page-error .error {
  flex: 1;
  min-height: 0;
}

.error {
  display: flex;
  align-items: center;
  background-color: #e6f0f8;
  padding-top: 40px;
  padding-bottom: 40px;
  box-sizing: border-box;
}

.error-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 140px;
  width: 100%;
  min-height: 0;
}

.error-content {
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.error-content_title {
  margin: 0 0 20px 0;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 300px;
  line-height: 235px;
  color: #1a1a18;
  letter-spacing: 0;
}

.error-content_desc {
  margin: 0 0 30px 0;
  max-width: 777px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 51px;
  text-align: center;
  color: #1a1a18;
}

.error-content_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 318px;
  min-height: 70px;
  padding: 0 24px;
  background-color: #3391c5;
  color: #ffffff;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 29px;
  text-decoration: none;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, background-color 0.2s ease;
  box-sizing: border-box;
}

.error-content_link:hover {
  opacity: 0.95;
  background-color: #2a7aad;
}

.error-image {
  flex: 0 0 auto;
  min-width: 0;
  max-width: 50%;
}

.error-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ========== Попап «Оформить заказ» ========== */
.order-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.order-popup.order-popup_is-open {
  opacity: 1;
  visibility: visible;
}

.order-popup[hidden] {
  display: none !important;
}

.order-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.order-popup.order-popup_is-open .order-popup__backdrop {
  opacity: 1;
}

.order-popup__modal {
  position: relative;
  width: 100%;
  max-width: 1300px;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 15px;
  box-sizing: border-box;
  padding: 50px 40px 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.order-popup.order-popup_is-open .order-popup__modal {
  opacity: 1;
  transform: scale(1);
}

.body_order-popup-open .product-order__total-panel {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.product-order__total-panel {
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.order-popup__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  color: #1a1a18;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}

.order-popup__close:hover {
  background: #f2f2f2;
  color: #3391c5;
}

.order-popup__title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  color: #1a1a18;
  text-align: center;
  margin: 0 0 30px;
}

.order-popup__tabs {
  display: flex;
  gap: 0;
  margin: 0 auto 46px;
  background: #f2f2f2;
  border-radius: 5px;
  width: fit-content;
  box-shadow: 0 0 30px 3px rgba(0, 0, 0, 0.15);
}

.order-popup__tab {
  font-family: "Jost", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 36px;
  color: #000000;
  background: transparent;
  border: none;
  border-radius: 5px;
  padding: 15px 24px;
  min-height: 66px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.order-popup__tab_active {
  background: #3391c5;
  color: #ffffff;
}

.order-popup__tab:not(.order-popup__tab_active):hover {
  background: rgba(51, 145, 197, 0.1);
  color: #3391c5;
}

.order-popup__body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.order-popup__forms {
  min-width: 0;
}

.order-popup__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-popup__form-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-popup__form-panel[hidden] {
  display: none !important;
}

.order-popup__legal-intro {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #1a1a18;
  text-align: center;
  margin: 0 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.order-popup__summary-title_legal {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 40px;
  color: #1a1a18;
}

.order-popup__summary-title[hidden],
.order-popup__summary-title_legal[hidden] {
  display: none !important;
}

.order-popup__field {
  flex: 1;
  min-width: 0;
  box-shadow: 0 0 30px 3px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.order-popup__field_full {
  width: 100%;
  background-color: #F5F5F5;
}

.order-popup__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.order-popup__input,
.order-popup__textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 18px;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #1a1a18;
  background: rgba(245, 245, 245, 0.96);
  border: 1px solid transparent;
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}

.order-popup__input::placeholder,
.order-popup__textarea::placeholder {
  color: #6b6b6b;
}

.order-popup__input:hover,
.order-popup__textarea:hover {
  background: #f0f0f0;
}

.order-popup__input:focus,
.order-popup__textarea:focus {
  outline: none;
  border-color: #3391c5;
  background: #ffffff;
}

.order-popup__input_error,
.order-popup__textarea.order-popup__input_error {
  border-color: #ff0000 !important;
}

.order-popup__file-label.order-popup__input_error {
  border-color: #ff0000 !important;
}

.smart-captcha.order-popup__input_error {
  border: 2px solid #ff0000;
  border-radius: 10px;
}

.order-popup__checkbox-wrap.order-popup__input_error .order-popup__checkbox-label,
.order-popup__checkbox-label .order-popup__privacy-link {
  color: #ff0000;
}

.order-popup__textarea {
  min-height: 150px;
  resize: vertical;
}

.order-popup__label {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  color: #6b6b6b;
  margin-bottom: 6px;
}

.order-popup__file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 16px 18px;
  background: rgba(245, 245, 245, 0.96);
  border: 1px dashed #3391c5;
  border-radius: 10px;
  color: #3391c5;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.order-popup__file-label:hover {
  background: rgba(51, 145, 197, 0.08);
  border-color: #2673a8;
}

.order-popup__checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-popup__checkbox {
  width: 20px;
  height: 20px;
  accent-color: #3391c5;
  cursor: pointer;
  flex-shrink: 0;
}

.order-popup__checkbox-label {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  color: #1b1b1d;
  cursor: pointer;
}

.order-popup__checkbox-label .order-popup__privacy-link {
  color: #3391c5;
  text-decoration: underline;
  cursor: pointer;
}

.order-popup__checkbox-label .order-popup__privacy-link:hover {
  color: #2673a8;
}

.order-popup__captcha {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 100px;
  padding: 0 0 0 34px;
  width: fit-content;
  border-radius: 10px;
  background-color: #F5F5F5;
}

.order-popup__captcha-checkbox {
  width: 32px;
  height: 32px;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 3px;
  border: 1px solid #c1c1c1;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.order-popup__captcha-checkbox:checked {
  background: #3391c5;
  border-color: #3391c5;
}

.order-popup__captcha-checkbox:checked::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  margin-bottom: 4px;
}

.order-popup__captcha-label {
  font-family: "Jost", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 36px;
  color: #000000;
  cursor: pointer;
  flex-shrink: 0;
}

.order-popup__captcha-placeholder {
  width: 97px;
  height: 92px;
  min-width: 97px;
  min-height: 92px;
  background: rgba(245, 245, 245, 0.96);
  border-radius: 4px;
  margin-left: 40px;
}

.order-popup__submit {
  width: 100%;
  padding: 17px 24px;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #ffffff;
  background: #3391c5;
  border: 1px solid #3391c5;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 30px 3px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, border-color 0.2s;
}

.order-popup__submit:hover {
  background: #2673a8;
  border-color: #2673a8;
}

.callback-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.callback-form__panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.callback-form__field {
  flex: 1;
  min-width: 0;
  box-shadow: 0 0 30px 3px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.callback-form__field_full {
  width: 100%;
  background-color: #F5F5F5;
}

.callback-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.callback-form__input,
.callback-form__textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 18px;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #1a1a18;
  background: rgba(245, 245, 245, 0.96);
  border: 1px solid transparent;
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}

.callback-form__input::placeholder,
.callback-form__textarea::placeholder {
  color: #6b6b6b;
}

.callback-form__input:hover,
.callback-form__textarea:hover {
  background: #f0f0f0;
}

.callback-form__input:focus,
.callback-form__textarea:focus {
  outline: none;
  border-color: #3391c5;
  background: #ffffff;
}

.callback-form__input_error,
.callback-form__textarea.callback-form__input_error {
  border-color: #ff0000 !important;
}

.callback-form__checkbox-wrap.callback-form__input_error .callback-form__checkbox-label,
.callback-form__checkbox-label .callback-form__privacy-link {
  color: #ff0000;
}

.callback-form__textarea {
  min-height: 150px;
  resize: vertical;
}

.callback-form__checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.callback-form__checkbox {
  width: 20px;
  height: 20px;
  accent-color: #3391c5;
  cursor: pointer;
  flex-shrink: 0;
}

.callback-form__checkbox-label {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  color: #1b1b1d;
  cursor: pointer;
}

.callback-form__checkbox-label .callback-form__privacy-link {
  color: #3391c5;
  text-decoration: underline;
  cursor: pointer;
}

.callback-form__checkbox-label .callback-form__privacy-link:hover {
  color: #2673a8;
}

.callback-form__captcha {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 100px;
  padding: 0 0 0 34px;
  width: fit-content;
  border-radius: 10px;
  background-color: #F5F5F5;
}

.callback-form__captcha-checkbox {
  width: 32px;
  height: 32px;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 3px;
  border: 1px solid #c1c1c1;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.callback-form__captcha-checkbox:checked {
  background: #3391c5;
  border-color: #3391c5;
}

.callback-form__captcha-checkbox:checked::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  margin-bottom: 4px;
}

.callback-form__captcha-label {
  font-family: "Jost", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 36px;
  color: #000000;
  cursor: pointer;
  flex-shrink: 0;
}

.callback-form__captcha-placeholder {
  width: 97px;
  height: 92px;
  min-width: 97px;
  min-height: 92px;
  background: rgba(245, 245, 245, 0.96);
  border-radius: 4px;
  margin-left: 40px;
}

.callback-form__submit {
  width: 100%;
  padding: 17px 24px;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #ffffff;
  background: #3391c5;
  border: 1px solid #3391c5;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 30px 3px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, border-color 0.2s;
}

.callback-form__submit:hover {
  background: #2673a8;
  border-color: #2673a8;
}

.order-popup__summary {
  background: transparent;
  border-radius: 0;
  padding: 0;
  top: 20px;
}

.order-popup__summary-title {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #1a1a18;
  margin: 0 0 12px;
}

.order-popup__summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.order-popup__summary-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin: 0;
  padding: 0;
}

.order-popup__summary-row-name {
  flex: 1;
  min-width: 0;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #1a1a18;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  box-shadow: 0 0 30px 3px rgba(0, 0, 0, 0.15);
  /* width:auto ; */
}

.order-popup__summary-row-qty {
  width: 60px;
  flex-shrink: 0;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 29px;
  color: #3391c5;
  background: #f5f5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  box-shadow: 0 0 30px 3px rgba(0, 0, 0, 0.15);
}

.order-popup__summary-row-remove {
  width: 60px;
  flex-shrink: 0;
  border: none;
  border-radius: 10px;
  background: #3391c5;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  box-shadow: 0 0 30px 3px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.order-popup__summary-row-remove:hover {
  background: #2673a8;
  transform: scale(1.02);
}

.order-popup__summary-row-remove svg {
  display: block;
}

.order-popup__summary-empty {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  color: #8a8a8a;
  background: #f5f5f5;
  border-radius: 10px;
  padding: 16px 18px;
  margin: 0;
  list-style: none;
}

/* ========== Попап «Запросить звонок» ========== */
.callback-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.callback-popup.callback-popup_is-open {
  opacity: 1;
  visibility: visible;
}

.callback-popup[hidden] {
  display: none !important;
}

.callback-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.callback-popup.callback-popup_is-open .callback-popup__backdrop {
  opacity: 1;
}

.callback-popup-wrapper {
  position: relative;
  width: 100%;
  max-width: 1300px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.callback-popup__modal {
  position: relative;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 15px;
  box-sizing: border-box;
  padding: 40px 50px 50px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.callback-popup.callback-popup_is-open .callback-popup__modal {
  opacity: 1;
  transform: scale(1);
}

.callback-popup__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  color: #1a1a18;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}

.callback-popup__close:hover {
  background: #f2f2f2;
  color: #3391c5;
}

.callback-popup__title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  color: #1a1a18;
  text-align: left;
  margin: 0 0 40px;
}

.callback-popup__modal .modal-content {
  padding: 0;
}

.callback-popup__modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 50px 0 0;
  margin-bottom: 24px;
}

.callback-popup__modal .modal-title {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  color: #1a1a18;
  margin: 0;
}

.callback-popup__modal .btn-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  color: #1a1a18;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}

.callback-popup__modal .btn-close:hover {
  background: #f2f2f2;
  color: #3391c5;
}

.callback-popup__modal .btn-close::before,
.callback-popup__modal .btn-close::after {
  content: "";
  position: absolute;
  width: 2.5px;
  height: 20px;
  background: currentColor;
  top: 50%;
  left: 50%;
  border-radius: 2px;
}

.callback-popup__modal .btn-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.callback-popup__modal .btn-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.callback-popup__modal .modal-body {
  padding: 0 0 50px;
}

.callback-popup__modal .form-floating {
  position: relative;
  margin-bottom: 16px;
}

.callback-popup__modal .form-floating .form-control,
.callback-popup__modal .form-floating input[type="text"],
.callback-popup__modal .form-floating input[type="tel"],
.callback-popup__modal .form-floating textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 18px;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #1a1a18;
  background: rgba(245, 245, 245, 0.96);
  border: 1px solid transparent;
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
}

.callback-popup__modal .form-floating input:focus,
.callback-popup__modal .form-floating textarea:focus {
  outline: none;
  border-color: #3391c5;
  background: #ffffff;
}

.callback-popup__modal .form-floating .form-control.is-invalid,
.callback-popup__modal .form-floating input.is-invalid,
.callback-popup__modal .form-floating textarea.is-invalid {
  border-color: #ff0000;
}

.callback-popup__modal .form-floating label {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  color: #6b6b6b;
  margin-bottom: 6px;
}

.callback-popup__modal .mb-2 {
  margin-bottom: 16px;
}

.callback-popup__modal .mt-3 {
  margin-top: 24px;
}

.callback-popup__modal .text-danger {
  color: #ff0000;
  font-size: 14px;
  margin-top: 4px;
}

.callback-popup__modal .input-file {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 16px 18px;
  background: rgba(245, 245, 245, 0.96);
  border: 1px dashed #3391c5;
  border-radius: 10px;
  color: #3391c5;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, border-style 0.2s;
}

.callback-popup__modal .input-file:hover {
  background: rgba(51, 145, 197, 0.08);
  border-color: #2673a8;
}

.callback-popup__modal .input-file.input-file_has-file {
  background: #eceff1;
  border-style: solid;
  border-color: #3391c5;
  color: #3391c5;
}

.callback-popup__modal .input-file.input-file_has-file:hover {
  background: #e3e8ec;
  border-color: #2673a8;
}

.callback-popup__modal .input-file input[type="file"] {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.callback-popup__modal .input-file span {
  pointer-events: none;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.callback-popup__modal #captcha-container.smart-captcha {
  min-height: 100px;
  margin-bottom: 16px;
}

.oneLine {
  display: flex;
  gap: 20px;
}

.w-50 {
  width: 50%;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 10px;
}

.btn.btn-primary {
  width: 100%;
  padding: 17px 24px;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #ffffff;
  background: #3391c5;
  border: 1px solid #3391c5;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 30px 3px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, border-color 0.2s;
}

.btn.btn-primary:hover {
  background: #2673a8;
  border-color: #2673a8;
}

.callback-popup__modal .btn.btn-success {
  width: 100%;
  padding: 17px 24px;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #ffffff;
  background: #3391c5;
  border: 1px solid #3391c5;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 30px 3px rgba(0, 0, 0, 0.15);
  transition: background 0.2s, border-color 0.2s;
}

.callback-popup__modal .btn.btn-success:hover {
  background: #2673a8;
  border-color: #2673a8;
}

.callback-popup__modal .btn.w-100 {
  width: 100%;
}

.callback-popup__modal .htmx-indicator {
  display: none;
}

.callback-popup__modal .htmx-request .htmx-indicator {
  display: inline-block;
}

.callback-popup__modal .htmx-request .htmx-indicator[aria-hidden="true"] {
  display: inline-block;
}

.callback-popup__modal .spinner-border {
  vertical-align: middle;
  width: 1em;
  height: 1em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: callback-spinner 0.75s linear infinite;
}

@keyframes callback-spinner {
  to {
    transform: rotate(360deg);
  }
}

/* ========== Окно успеха ========== */
.success-popup {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.success-popup.success-popup_is-open {
  opacity: 1;
  visibility: visible;
}

.success-popup[hidden] {
  display: none !important;
}

.success-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.success-popup.success-popup_is-open .success-popup__backdrop {
  opacity: 1;
}

.success-popup-wrapper {
  position: relative;
  width: 100%;
  max-width: 1300px;
}

.success-popup__modal {
  position: relative;
  width: 100%;
  max-width: 1300px;
  min-height: 790px;
  max-height: 90vh;
  overflow-y: auto;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 15px;
  padding: 95px 95px 95px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.success-popup.success-popup_is-open .success-popup__modal {
  opacity: 1;
  transform: scale(1);
}

.success-popup__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  color: #1a1a18;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}

.success-popup__close:hover {
  background: #f2f2f2;
  color: #3391c5;
}

.success-popup__icon {
  flex-shrink: 0;
  margin: 0 0 40px;
}

.success-popup__icon svg {
  display: block;
  width: 207px;
  height: 207px;
}

.success-popup__text {
  font-family: "Jost", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 36px;
  color: #1a1a18;
  margin: 0 0 40px;
  max-width: 1110px;
}

.success-popup__btn {
  width: 300px;
  height: 60px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 29px;
  color: #ffffff;
  background: #3391c5;
  border: 1px solid #3391c5;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.success-popup__btn:hover {
  background: #2673a8;
  border-color: #2673a8;
}

/* ========== Попап ошибки ========== */
.error-popup {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.error-popup.error-popup_is-open {
  opacity: 1;
  visibility: visible;
}

.error-popup[hidden] {
  display: none !important;
}

.error-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.error-popup.error-popup_is-open .error-popup__backdrop {
  opacity: 1;
}

.error-popup-wrapper {
  position: relative;
  width: 100%;
  max-width: 964px;
}

.error-popup__modal {
  position: relative;
  width: 100%;
  max-width: 964px;
  height: 964px;
  max-height: 90vh;
  overflow-y: auto;
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 15px;
  padding: 59px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.error-popup.error-popup_is-open .error-popup__modal {
  opacity: 1;
  transform: scale(1);
}

.error-popup__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  color: #1a1a18;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}

.error-popup__close:hover {
  background: #f2f2f2;
  color: #3391c5;
}

.error-popup__icon {
  flex-shrink: 0;
  margin: 0 0 20px;
}

.error-popup__icon svg {
  display: block;
  width: 207px;
  height: 207px;
}

.error-popup__text {
  font-family: "Jost", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 60px;
  color: #db5b5d;
  margin: 0;
  max-width: 846px;
  text-align: center;
}

@media (max-width: 1800px) {
  .container {
    max-width: 100%;
    padding: 0 60px;
  }

  .header {
    padding-top: 20px;
  }

  .header__inner {
    padding: 10px 20px;
    min-height: 70px;
  }

  .header__logo-img {
    width: 50px;
    height: 50px;
  }

  .header__slogan {
    width: 128px;
  }

  .header__search {
    width: 180px;
    height: 40px;
  }

  .header__search-btn {
    width: 30px;
    height: 30px;
  }

  .header__search-input::placeholder {
    font-size: 14px;
    line-height: 20.23px;
  }

  .t-18-25 {
    font-size: 14px;
    line-height: 16px;
  }

  .t-18 {
    font-size: 16px;
  }

  .t-20-29 {
    font-size: 18px;
    line-height: 25px;
  }

  .t-16 {
    font-size: 14px;
  }

  .header__contacts p {
    font-size: 14px;
  }

  .hero {
    min-height: 700px;
    margin-top: 30px;
  }

  .hero__slide-inner {
    padding: 60px 60px 60px 60px;
    border-radius: 15px;
    min-height: 700px;
  }

  .hero__content {
    max-width: 1010px;
    margin-bottom: -10px;
  }

  .hero__btn {
    width: 303px;
    height: 70px;
  }

  .hero__img {
    height: 100%;
    min-height: auto;
    object-fit: contain;
    object-position: right bottom;
  }

  .hero__media {
    height: 515px;
  }



  .hero__list-item {
    margin-bottom: 6px;
  }

  .catalog {
    padding: 60px 0 50px;
  }

  .catalog__tabs {
    width: 860px;
    height: 66px;
  }

  .catalog__tab:first-child {
    flex: 0 0 444px;
  }

  .catalog__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }

  .catalog__card {
    width: 100%;
    min-height: 293px;
    padding: 20px 20px 20px;
    box-sizing: border-box;
  }

  .catalog__tabs-wrap {
    margin-bottom: 36px;
  }

  .catalog__card-image {
    width: 100%;
    height: 133px;

    padding: 10px;
    margin-bottom: 17px;
    box-sizing: border-box;
  }

  .about {
    min-height: 651px;
    margin-top: 40px;
  }

  .about__inner {
    padding: 40px;
    min-height: 651px;
    gap: 40px;
    border-radius: 15px;
  }

  .about__media {
    flex: 0 0 40%;
    max-width: 520px;
  }

  .about__gallery {
    height: 100%;
  }

  .about__title {
    max-width: 680px;
  }

  .about__gallery .swiper-slide {
    min-height: 571px;
    height: 100%;
  }

  .about__img {
    min-height: 571px;
  }

  .about__btn {
    width: 303px;
    height: 70px;
  }


  .office__map-wrap {
    height: 495px;
    border-radius: 15px;
  }


  .footer__inner {
    padding: 60px;
    min-height: 333px;
    border-radius: 15px;
    gap: 0 80px;
  }

  .footer__schedule {
    margin-right: 60px;
  }

  .footer__brand {
    max-width: 380px;
  }

  .t-20 {
    font-size: 18px;
  }

  /* Каталог внутренняя — адаптив 1800 */
  .catalog-inner,
  .certificates,
  .contacts,
  .certificates-inner,
  .product-page {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .catalog-inner .breadcrumbs {
    margin-bottom: 30px;
  }

  .catalog-inner .hero-page {
    margin-bottom: 40px;
    min-height: 180px;
    padding: 20px;
  }

  .hero-page__subtitle {
    font-size: 20px;
    line-height: 28.9px;
  }

  .catalog-inner .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .catalog-inner .catalog-card__title {
    font-size: 18px;
    line-height: 23px;
  }

  .certificates .breadcrumbs,
  .certificates-inner .breadcrumbs {
    margin-bottom: 30px;
  }

  .certificates .brand-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }

  .certificates .brand-card {
    width: 100%;
    min-height: 239px;
    padding: 20px 20px 10px;
  }

  .certificates .brand-card__img-wrap {
    width: 100%;
    height: 133px;
    padding: 10px;
    margin-bottom: 17px;
    box-sizing: border-box;
  }

  .contacts .breadcrumbs {
    margin-bottom: 30px;
  }

  .contacts__map-wrap {
    margin-bottom: 40px;
  }

  .contacts__map,
  .contacts__map-placeholder {
    height: 495px;
  }

  .contacts-grid {
    gap: 20px;
  }

  .contact-card__title.t-30-43 {
    font-size: 25px;
    line-height: 35px;
  }

  .contact-card__body p {
    font-size: 18px;
    line-height: 26px;
  }

  /* product-page: product-card, product-tabs, product-panels (по макету) */
  .product-page .product-card {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    min-height: 0px;
  }

  .product-page .product-info__title {
    font-size: 25px;
    line-height: 40px;
  }

  .product-page .product-info__short,
  .product-page .product-info__list,
  .product-page .product-contact__title {
    font-size: 18px;
    line-height: 26px;
  }

  .product-page .product-tabs {
    flex-wrap: nowrap;
    gap: 0;
  }

  .product-page .product-tabs__btn {
    font-size: 25px;
    line-height: 36px;
    padding: 15px 20px;
  }

  .product-page .product-panel__title {
    font-size: 30px;
    line-height: 43px;
  }

  .product-page .product-panel__text {
    font-size: 18px;
    line-height: 23px;
  }

  .cookie-bar__text {
    font-size: 20px;
  }

}

@media (max-width: 1440px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header {
    padding-top: 12px;
  }

  .header__inner {
    padding: 10px;
    min-height: 70px;
  }

  .header__actions {
    gap: 3px;
  }

  .header__logo-img {
    width: 50px;
    height: 50px;
  }



  .header__search {
    width: 40px;
    height: 40px;
    min-width: 40px;
    padding-right: 0;
    justify-content: center;
  }

  .header__search-input {
    display: none;
  }

  .header__search-btn {
    width: 32px;
    height: 32px;
  }

  .hero-contact .contact-bar {
    right: 20px;
    bottom: 105px;
    width: 60px;
    max-height: 60px;
  }

  .hero-contact_is-open .contact-bar {
    width: 80px;
    max-height: 280px;
  }

  .hero-contact__trigger.contact-bar__trigger,
  .contact-bar__item {
    width: 60px;
    height: 60px;
  }

  .contact-bar__item_callback {
    width: auto;
    min-width: 60px;
    height: 60px;
    padding: 0 16px;
    font-size: 15px;
  }

  /* Плашка заказа — адаптив 1440 */
  .product-order__total-panel {
    right: calc(40px + 70px);
    bottom: 100px;
    max-width: 540px;
    min-height: 70px;
    padding: 10px;
    border-radius: 10px;
    gap: 10px;
  }

  .product-order__total-caption {
    min-width: 80px;
    max-width: 250px;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 5px;
    font-size: 18px;
    line-height: 26px;
  }

  .product-order__total-info {
    min-height: 50px;
    padding: 0 16px;
    border-radius: 5px;
    gap: 6px;
  }

  .product-order__total-label,
  .product-order__total-count {
    font-size: 18px;
    line-height: 26px;
  }

  .header__nav {
    gap: 10px;
  }

  .header__phone.t-18 {
    font-size: 16px;
  }

  .t-18-25 {
    font-size: 14px;
  }

  .t-18 {
    font-size: 14px;
  }

  .breadcrumbs .t-18 {
    font-size: 18px;
  }

  .header__contacts p {
    font-size: 14px;
  }

  .t-hero-title {
    font-size: 60px;
    line-height: 80px;
  }

  .hero__list-item.t-25 {
    font-size: 20px;
    line-height: 28.9px;
  }

  .catalog__tab.t-25 {
    font-size: 18px;
    line-height: 26.01px;
  }

  .t-section-title {
    font-size: 60px;
    line-height: 70px;
  }

  .t-office-title {
    font-size: 60px;
  }

  .t-85-100 {
    font-size: 60px;
  }

  .hero {
    min-height: 535px;
    margin-top: 20px;
  }

  .hero__slide-inner {
    padding: 50px 40px;
    min-height: 535px;
    border-radius: 15px;
  }

  .hero__content {
    max-width: 527px;
    margin-bottom: -30px;
  }

  .hero__title {
    margin-bottom: 9px;
  }



  .hero__btn.t-20 {
    font-size: 18px;
  }

  .catalog {
    padding: 40px 0 50px;
  }

  .catalog__tabs {
    width: 660px;
    max-width: 100%;
    height: 58px;
  }

  .catalog__tab:first-child {
    flex: 0 0 330px;
  }

  .catalog__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .catalog__card {
    min-height: 316px;
  }

  .catalog__tabs-wrap {
    margin-bottom: 17px;
  }

  .about {
    min-height: 612px;
    margin-top: 50px;
  }

  .about__inner {
    padding: 40px 40px;
    min-height: 612px;
    gap: 30px;
    border-radius: 15px;
  }

  .about__media {
    max-width: 415px;
  }

  .about__gallery {
    min-height: 532px;
    height: 100%;
  }

  .about__gallery .swiper-slide {
    min-height: 532px;
    height: 100%;
  }

  .about__btn {
    width: 303px;
    height: 70px;
  }



  .office__title {
    margin-bottom: 30px;
  }

  .footer {
    padding: 40px 0 40px;
  }

  .footer__inner {
    padding: 30px;
    min-height: 261px;
    border-radius: 15px;
    gap: 0 40px;
    background-position: left 120px, 0 0;
    background-size: auto, cover;
  }

  .footer__brand {
    max-width: 322px;
  }

  .footer-logo_content {
    margin-bottom: 20px;
    gap: 10px;
  }

  .footer__nav {
    margin-right: 0px;
  }

  .footer__schedule {
    margin-right: 40px;
  }

  /* catalog-inner (1440 по макету 1024) */


  .catalog-inner .breadcrumbs {
    margin-bottom: 20px;
  }

  .hero-page {
    margin-bottom: 24px;
    min-height: 200px;
    padding: 20px;
    gap: 30px;
  }

  .t-70-101 {
    font-size: 60px;
  }

  .hero-page__subtitle {
    font-size: 25px;
    line-height: 36px;
  }

  .catalog-inner .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .catalog-inner .catalog-card {
    min-height: 160px;
    padding: 20px;
  }

  .catalog-inner .catalog-card__img-wrap {
    width: 120px;
    height: 120px;
  }

  .catalog-inner .catalog-card__title {
    font-size: 16px;
    line-height: 23px;
  }

  .certificates .breadcrumbs,
  .certificates-inner .breadcrumbs {
    margin-bottom: 20px;
  }

  .certificates .brand-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }



  .certificates .brand-card__img-wrap {
    height: 133px;
    padding: 10px;
    margin-bottom: 17px;
    box-sizing: border-box;
  }

  .contacts .breadcrumbs {
    margin-bottom: 20px;
  }

  .contacts__map,
  .contacts__map-placeholder {
    min-height: 400px;
  }

  .contacts-grid {
    gap: 20px;
  }

  .contact-card__title.t-30-43 {
    font-size: 25px;
    line-height: 35px;
  }

  .contact-card__body p {
    font-size: 18px;
    line-height: 26px;
  }



  .product-page .product-info__title {
    font-family: "Roboto", sans-serif;
    font-weight: 800;
    font-size: 20px;
    line-height: 30px;
  }

  .product-page .product-info__short,
  .product-page .product-info__list,
  .product-page .product-contact__title {
    font-size: 16px;
    line-height: 23px;
  }

  .product-page .product-info__features-title {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 23px;
  }

  .product-page .product-contact__title {
    font-size: 18px;
    line-height: 26px;
  }

  .product-page .product-tabs {
    flex-wrap: nowrap;
    gap: 0;
  }

  .product-page .product-tabs__btn {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 29px;
    padding: 15px 20px;
  }

  .product-info__title {
    margin-bottom: 20px;
  }

  .product-contact__link {
    font-size: 16px;
  }

  .product-gallery-main .swiper-slide {
    padding: 44px;
  }

  .product-gallery__thumbs .swiper-slide {
    padding: 27px;
  }

  .product-page .product-panel__title {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 29px;
  }

  .product-gallery__arrow {
    width: 40px;
    height: 60px;
    padding: 24px 15px;
  }

  .product-gallery__arrow_next {
    right: 30px;
  }

  .product-gallery__arrow_prev {
    left: 30px;
  }

  .product-page .product-panel__text,
  .product-page .product-panel__text p {
    font-size: 16px;
    line-height: 20.5px;
  }

  .product-page .productDescription.characteristics_table .table {
    font-size: 16px;
  }


  .product-page .productCatalogs__link {
    padding: 12px 16px;
    font-size: 18px;
  }

  .product-page .product-gallery__main-wrap {
    min-height: 603px;
  }

  .product-page .product-info {
    padding: 20px;
  }

  .ru-table-wrap {
    padding: 10px;
  }

  .productCatalogs__list {
    gap: 32px;
  }

  /* Поиск — адаптив 1440 */
  .page_search .search-page {
    padding-top: 30px;
    padding-bottom: 60px;
  }

  .search-results__head {
    margin-bottom: 24px;
  }

  .search-results__title {
    font-size: 25px;
    line-height: 36.125px;
  }

  .search-results__list {
    gap: 20px;
    margin-bottom: 30px;
  }

  .search-card {
    padding: 20px;
  }

  .search-card__title {
    font-size: 16px;
    line-height: 29px;
    margin-bottom: 12px;
  }

  .search-card__meta {
    border-radius: 10px;
    padding: 14px 20px;
    min-height: 65px;
  }

  .search-card__meta+.search-card__meta {
    margin-top: 10px;
  }

  .search-card__art,
  .search-card__desc {
    font-size: 14px;
    line-height: 20.23px;
  }

  .search-pagination__link {
    font-size: 14px;
    line-height: 20.23px;
  }

  .search-pagination__btn {
    width: 35px;
    height: 35px;
    border-radius: 5px;
  }

  .search-pagination__num {
    min-width: 25px;
    height: 25px;
    font-size: 14px;
    line-height: 20.23px;
    border-radius: 5px;
  }

  .search-pagination__ellipsis {
    font-size: 14px;
  }

  /* Попап «Оформить заказ» — адаптив 1440 */
  .order-popup__modal {
    padding: 30px;
  }

  .callback-popup__modal {
    padding: 50px;
  }

  .order-popup__title {
    margin: 0 0 20px;
  }

  .order-popup__tabs {
    margin: 0 auto 36px;
  }

  .order-popup__body {
    gap: 20px;
  }

  .order-popup__legal-intro {
    margin: 0 0 30px;
  }

  .order-popup__field_full .order-popup__input,
  .order-popup__field_full .order-popup__textarea {
    min-height: 60px;
  }

  .order-popup__input,
  .order-popup__textarea {
    min-height: 60px;
  }

  .order-popup__submit {
    min-height: 60px;
  }

  .order-popup__summary-title,
  .order-popup__summary-title_legal {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
  }

  .order-popup__captcha {
    width: 100%;
  }

  .order-popup__captcha-placeholder {
    margin-left: auto;
  }

  .order-popup-wrapper {
    width: 100%;
  }

  /* Страница 404 — адаптив 1440 */
  .error-content_title {
    font-size: 200px;
    line-height: 150px;
  }

  .error-content_desc {
    font-size: 25px;
    line-height: 36px;
  }

  .error-content_link {
    min-width: 318px;
    min-height: 70px;
    font-size: 20px;
    line-height: 29px;
  }

  .error-wrapper {
    gap: 100px;
  }

  .error-image {
    max-width: 48%;
  }

  /* Условия работы — адаптив 1440 */
  .usloviya,
  .politika {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .usloviya .breadcrumbs {
    margin-bottom: 20px;
  }

  .usloviya-card_large {
    min-height: 350px;
  }

  .usloviya-hero {
    padding: 40px 40px 50px;
    margin-bottom: 140px;
    min-height: 312px;
    background-size: auto 130%, 100% 150%;
  }

  .politika-hero {
    margin-bottom: 40px;
    min-height: 0;
  }

  .usloviya-hero__brand {
    margin-bottom: 20px;
  }

  .usloviya-hero__logo-wrap {
    width: 70px;
    height: 70px;
  }

  .usloviya-hero__company {
    font-size: 18px;
    line-height: 26px;
  }

  .usloviya-hero__title {
    font-size: 60px;
    line-height: 80px;
    margin-bottom: 10px;
  }

  .usloviya-hero__subtitle {
    font-size: 20px;
    line-height: 29px;
    max-width: 619px;
  }

  .usloviya-section {
    margin-bottom: 140px;
  }

  .usloviya-section__title,
  .usloviya-section-title {
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 40px;
  }

  .usloviya-section__title_center,
  .usloviya-section-title_center {
    margin-bottom: 40px;
  }

  .usloviya-cards {
    gap: 20px;
    margin-bottom: 20px;
  }

  .usloviya-cards_row1 .usloviya-card_w33,
  .usloviya-cards_row2 .usloviya-card_w33 {
    flex: 0 0 320px;
  }

  .usloviya-cards_row1 .usloviya-card_w66,
  .usloviya-cards_row2 .usloviya-card_w66 {
    flex: 1 1 auto;
    min-width: 0;
  }

  .usloviya-cards_two .usloviya-card_half {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
  }

  .usloviya-cards_three .usloviya-card_third {
    flex: 1 1 calc(33.333% - 14px);
    min-width: 0;
  }

  .usloviya-photos {
    gap: 20px;
    margin-bottom: 40px;
  }

  .usloviya-photo {
    min-height: 200px;
    flex: 1 1 calc(33.333% - 14px);
  }

  .usloviya-photo img {
    min-height: 200px;
  }

  .usloviya-card {
    padding: 20px 20px 30px;
  }

  .usloviya-section_offer .usloviya-card:nth-child(1)::after {
    width: 120px;
    height: 120px;
  }

  .usloviya-section_offer .usloviya-card:nth-child(2)::after {
    width: 155px;
    height: 155px;
  }

  .usloviya-card__num {
    width: 60px;
    height: 60px;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 20px;
  }

  .usloviya-card__text {
    font-size: 18px;
    line-height: 26px;
  }

  .usloviya-card_subtitle .usloviya-card__heading {
    font-size: 25px;
    line-height: 36px;
    margin-bottom: 20px;
  }

  .usloviya-banner {
    margin-top: 40px;
    min-height: 350px;
  }

  .usloviya-banner__img {
    height: 350px;
  }

  .cookie-bar__btn {
    min-width: 180px;
    font-size: 20px;
  }
}

@media (max-width: 1020px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .t-70-101 {
    font-size: 30px;
  }

  .header__inner {
    min-height: 48px;
    padding: 5px 10px;
    border-radius: 5px;
  }

  .header__logo-img {
    width: 38px;
    height: 38px;
  }

  .header__slogan {
    display: none;
  }

  .header__nav {
    display: none;
  }

  .header__contacts {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header__search {
    width: 100%;
    height: 38px;
    border-radius: 6px;
    min-width: 0;
  }

  .header__actions {
    width: 100%;
  }


  .header__search-input {
    display: block;
  }

  .header__inner {
    gap: 20px;
    justify-content: unset;
  }

  .header__search-input::placeholder {
    font-size: 14px;
    line-height: 20.23px;
  }

  .header__search-btn {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    margin-right: 5px;
  }

  .hero-contact .contact-bar {
    right: 10px;
    bottom: 210px;
  }

  /* Плашка заказа — адаптив 1020 */
  .product-order__total-panel {
    right: 10px;
    bottom: 130px;
    max-width: 465px;
    min-height: 70px;
    padding: 10px;
    border-radius: 10px;
    gap: 15px;
  }

  .product-order__total-caption {
    min-width: 60px;
    max-width: 200px;
    min-height: 50px;
    padding: 0 12px;
    border-radius: 5px;
    font-size: 16px;
    line-height: 23px;
  }

  .product-order__total-info {
    min-height: 50px;
    padding: 0 12px;
    border-radius: 5px;
  }

  .product-order__total-label,
  .product-order__total-count {
    font-size: 16px;
    line-height: 23px;
  }

  .t-hero-title {
    line-height: 70px;
    text-align: center;
  }

  .hero__list-item.t-25 {
    font-size: 20px;
    line-height: 28.9px;
    text-align: center;
  }

  .hero__list {
    text-align: center;
    margin-bottom: 17px;
  }

  .hero__list-item {
    padding-left: 0;
    text-align: center;
  }

  .hero__list-item::before {

    display: none;
  }

  .hero {
    min-height: 800px;
    margin-top: 12px;
  }

  .mobile-menu__link.t-18,
  .mobile-menu__dropdown-heading.t-18,
  .mobile-menu__phone.t-18 {
    font-size: 18px;
  }

  .mobile-menu__schedule.t-16 {
    font-size: 16px;
  }


  .hero__slide-inner {
    display: flex;
    flex-direction: column;
    padding: 65px 20px 40px;
    min-height: 800px;
    border-radius: 15px;
    gap: 30px;
    align-items: center;
    text-align: center;
  }

  .hero__left {
    order: 1;
    width: 100%;
    align-items: center;
  }

  .hero__content {
    max-width: 100%;
    width: 100%;
  }

  .hero__title {
    margin-bottom: 15px;
  }

  .hero__btn {
    order: 2;
    width: 235px;
    height: 55px;
    margin: 0 auto;
  }

  .hero__btn.t-20 {
    font-size: 18px;
  }

  .hero__media {
    order: 3;
    width: 100%;
    justify-content: center;
    padding: 0 60px;
    margin-bottom: -60px;
    height: 435px;
  }

  .hero__img {
    min-height: 400px;
    max-width: 600px;
  }

  .hero-contact__trigger.contact-bar__trigger {
    width: 60px;
    height: 60px;
  }

  .contact-bar__item {
    width: 60px;
    height: 60px;
  }

  .contact-bar__item_callback {
    width: auto;
    min-width: 60px;
    height: 60px;
    padding: 0 16px;
    font-size: 15px;
  }

  .catalog {
    padding: 40px 0 40px;
  }


  .catalog__title {
    margin-bottom: 20px;
  }

  .catalog__tabs {
    width: 620px;
    max-width: 100%;
    height: 55px;
  }

  .catalog__tab:first-child {
    flex: 0 0 310px;
  }

  .catalog__tab.t-25 {
    font-size: 18px;
    line-height: 26.01px;
  }

  .catalog__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .catalog__card {

    min-height: 266px;
    padding: 10px;
    box-sizing: border-box;
  }

  .catalog__card-image {

    height: 120px;
    padding: 8px;
    margin-bottom: 15px;
    box-sizing: border-box;
  }

  .catalog__card .t-20-29 {
    font-size: 16px;
    line-height: 20px;
  }

  .catalog__card .t-16 {
    font-size: 14px;
  }

  .t-16 {
    line-height: 20px;
  }

  .certificates .brand-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .certificates .brand-card {
    min-height: 200px;
  }

  .certificates .brand-card__img-wrap {
    height: 120px;
    padding: 8px;
    margin-bottom: 15px;
    box-sizing: border-box;
  }

  .certificates .brand-card .t-20-29 {
    font-size: 16px;
  }

  .about {
    min-height: 1010px;
    margin-top: 40px;
  }

  .about__inner {
    flex-direction: column;
    padding: 40px;
    min-height: 1010px;
    gap: 30px;
  }



  .about__text .t-20 {
    font-size: 18px;
  }

  .about__media {
    max-width: 100%;
    order: 1;
  }

  .about__gallery {
    height: 400px;
  }

  .about__gallery .swiper-slide {
    height: 400px;
  }

  .about__btn {
    width: 303px;
    height: 60px;
  }


  .office {
    padding: 25px 0 0;
  }

  .office__title {
    margin-bottom: 25px;
  }

  .office__map-wrap {
    height: 360px;
    border-radius: 15px;
  }

  .footer__inner {
    padding: 30px 20px;
    min-height: 415px;
    flex-direction: column;
    gap: 20px;
    background-size: contain;
    background-position: left 250px, 0 0;
  }


  .footer__brand {
    max-width: 100%;
  }

  .footer__slogan.t-20,
  .footer__copyright.t-20,
  .footer__link.t-20,
  .footer__schedule-text.t-20,
  .footer__address-text.t-20 {
    font-size: 16px;
  }

  .footer__heading.t-22 {
    font-size: 18px;
  }

  .footer__name.t-22 {
    font-size: 16px;
  }

  .footer-logo_content {
    margin-bottom: 10px;
  }

  .footer-content {
    justify-content: space-between;
  }

  /* Каталог внутренняя — адаптив 1020 */
  .catalog-inner,
  .certificates,
  .contacts,
  .certificates-inner,
  .product-page {
    padding-top: 45px;
    padding-bottom: 40px;
  }

  .catalog-inner .breadcrumbs,
  .certificates .breadcrumbs,
  .contacts .breadcrumbs,
  .certificates-inner .breadcrumbs {
    margin-bottom: 10px;
  }

  .hero-page {
    flex-direction: row;
    align-items: center;
    margin-bottom: 20px;
    min-height: 200px;
    padding: 20px;
    gap: 20px;
  }

  .hero-page__subtitle {
    font-size: 20px;
    line-height: 23px;
  }

  .catalog-inner .catalog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .catalog-inner .catalog-card {
    min-height: 160px;
    padding: 20px;
  }

  .catalog-inner .catalog-card__img-wrap {
    width: 120px;
    height: 120px;
  }

  .catalog-inner .catalog-card__title {
    font-size: 16px;
    line-height: 23px;
  }

  .contacts__map-wrap {
    margin-bottom: 20px;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card-thee {
    grid-column: 1/2;
  }

  .contact-card {
    padding: 20px;
  }

  .breadcrumbs .t-18 {
    font-size: 16px;
  }

  .ru-table__th {
    font-size: 18px;
    padding: 14px;
    line-height: 20px;
  }

  .product-page .product-tabs__btn {
    font-size: 16px;
    padding: 9px 2px;
  }

  .ru-table {
    grid-template-columns: 60px 1fr 103px 103px;
  }

  .product-card {
    grid-template-columns: 1fr;
  }

  .ru-table-wrap_order .ru-table {
    grid-template-columns: 104px 1fr 73px 174px;
  }

  .ru-table-wrap_order .ru-table__qty-group {
    max-width: 94px;
  }

  .ru-table-wrap_order .ru-table__qty-add {
    font-size: 12px;
    padding: 0 8px;
  }

  .product-panels {
    padding: 20px;
  }

  .product-panel_active#panel-video {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .product-panel__video-block {
    margin-bottom: 32px;
  }

  #panel-video.product-panel .product-panel__video-block:last-child {
    margin-bottom: 0;
  }

  .ru-table-wrap_order .ru-table__qty-control {
    gap: 5px;
  }

  .product-page .product-card {
    grid-template-columns: 1fr;
  }

  .ru-table-wrap_order .ru-table__qty-input {
    font-size: 12px;
  }

  .product-page .product-gallery__main-wrap {
    min-height: 532px;
  }

  .product-hero__brand {
    font-size: 50px;
  }

  .product-info__title {
    font-size: 28px;
  }

  .product-tabs__btn {
    font-size: 20px;
  }

  .ru-table__th_ru-num,
  .ru-table__th_ru {
    padding: 10px;
  }

  .ru-table__td {
    font-size: 12px;
  }


  .product-page .characteristics_table tr td:first-child {
    width: 170pt;
  }

  .product-page .productCatalogs__link {
    padding: 14px 20px;
    font-size: 18px;
  }

  .productCatalogs__list {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Поиск — адаптив 1020 */
  .page_search .search-page {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .search-results__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
  }

  .search-results__title {
    font-size: 25px;
    line-height: 36.125px;
  }

  .search-results__list {
    gap: 20px;
    margin-bottom: 24px;
  }

  .search-card {
    padding: 20px;
  }

  .search-card__title {
    font-size: 16px;
    line-height: 29px;
    margin-bottom: 12px;
  }

  .search-card__meta {
    border-radius: 10px;
    padding: 10px;
    min-height: 85px;
  }

  .search-card__art,
  .search-card__desc {
    font-size: 14px;
    line-height: 20.23px;
  }

  .search-pagination {
    gap: 10px;
  }

  .search-pagination__btn {
    width: 35px;
    height: 35px;
    border-radius: 5px;
  }

  .search-pagination__num {
    min-width: 25px;
    height: 25px;
    font-size: 14px;
    line-height: 20.23px;
    border-radius: 5px;
  }

  .search-pagination__link {
    font-size: 14px;
  }

  /* Попап «Оформить заказ» — адаптив 1020 */
  .order-popup__modal {
    padding: 30px;
  }



  .order-popup__title {
    margin: 0 0 20px;
  }

  .order-popup__tabs {
    margin: 0 auto 36px;
  }

  .order-popup__body {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .order-popup__field_full .order-popup__input,
  .order-popup__field_full .order-popup__textarea,
  .order-popup__field_full .order-popup__file-label {
    width: 100%;
    box-sizing: border-box;
  }

  .order-popup__summary {
    order: 0;
  }

  .order-popup__form {
    order: 1;
  }

  /* Страница 404 — адаптив 1020 */
  .error-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .error-content {
    align-items: center;
    text-align: center;
  }



  .error-content_desc {
    font-size: 24px;
    line-height: 36px;
    text-align: center;
  }

  .error-image {
    max-width: 80%;
  }

  /* Условия работы — адаптив 1020 */
  .usloviya,
  .politika {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .usloviya .breadcrumbs {
    margin-bottom: 16px;
  }

  .usloviya-hero {
    padding: 24px 20px 30px;
    margin-bottom: 80px;
    min-height: auto;
    background-size: auto 100%, 100% 100%;
    background-position: 110% -20px, 0 0;
  }

  .politika-hero {
    margin-bottom: 40px;
  }

  .usloviya-hero__brand {
    margin-bottom: 16px;
  }

  .usloviya-hero__logo-wrap {
    width: 50px;
    height: 50px;
  }

  .usloviya-hero__company {
    font-size: 16px;
    line-height: 23px;
  }

  .usloviya-hero__title {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 8px;
  }

  .usloviya-hero__subtitle {
    font-size: 18px;
    line-height: 26px;
    max-width: 100%;
  }

  .usloviya-section {
    margin-bottom: 80px;
  }

  .usloviya-section__title,
  .usloviya-section-title {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 24px;
  }

  .usloviya-section__title_center,
  .usloviya-section-title_center {
    margin-bottom: 24px;
  }

  .usloviya-cards {
    gap: 16px;
    margin-bottom: 16px;
  }

  .usloviya-section_order .usloviya-cards_row1,
  .usloviya-section_order .usloviya-cards_row2 {
    flex-direction: column;
  }

  .usloviya-section_order .usloviya-cards_row1 .usloviya-card_w33,
  .usloviya-section_order .usloviya-cards_row1 .usloviya-card_w66,
  .usloviya-section_order .usloviya-cards_row2 .usloviya-card_w33,
  .usloviya-section_order .usloviya-cards_row2 .usloviya-card_w66 {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
  }

  .usloviya-section_offer .usloviya-cards_two .usloviya-card_half {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }

  .usloviya-section .usloviya-cards_two .usloviya-card_half {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }

  .usloviya-section_stock .usloviya-cards_two {
    flex-direction: column;
  }

  .usloviya-section_stock .usloviya-cards_two .usloviya-card_half {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
  }

  .usloviya-section_stock .usloviya-cards_three {
    flex-wrap: wrap;
  }

  .usloviya-section_stock .usloviya-cards_three .usloviya-card_third:nth-child(1),
  .usloviya-section_stock .usloviya-cards_three .usloviya-card_third:nth-child(2) {
    flex: 0 0 calc(50% - 8px);
    min-width: 0;
    max-width: none;
  }

  .usloviya-section_stock .usloviya-cards_three .usloviya-card_third:nth-child(3) {
    flex: 0 0 100%;
    min-width: 0;
    max-width: none;
  }

  .usloviya-section_delivery .usloviya-cards_two {
    flex-direction: column;
  }

  .usloviya-section_delivery .usloviya-cards_two .usloviya-card_half {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
  }

  .usloviya-section_delivery .usloviya-cards_three {
    flex-wrap: wrap;
  }

  .usloviya-section_delivery .usloviya-cards_three .usloviya-card_third:nth-child(1),
  .usloviya-section_delivery .usloviya-cards_three .usloviya-card_third:nth-child(2) {
    flex: 0 0 calc(50% - 8px);
    min-width: 0;
    max-width: none;
  }

  .usloviya-section_delivery .usloviya-cards_three .usloviya-card_third:nth-child(3) {
    flex: 0 0 100%;
    min-width: 0;
    max-width: none;
  }

  .usloviya-photos {
    gap: 16px;
    margin-bottom: 24px;
  }

  .usloviya-photo {
    min-height: 200px;
    max-width: none;
    flex: 1 1 calc(33.333% - 11px);
  }

  .usloviya-photo img {
    min-height: 200px;
  }

  .usloviya-card {
    padding: 20px 20px 24px;
  }

  .usloviya-section_offer .usloviya-card:nth-child(1)::after {
    width: 100px;
    height: 100px;
  }

  .usloviya-section_offer .usloviya-card:nth-child(2)::after {
    width: 120px;
    height: 120px;
  }

  .usloviya-card__num {
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 16px;
  }

  .usloviya-card__text {
    font-size: 16px;
    line-height: 23px;
  }

  .usloviya-card_subtitle .usloviya-card__heading {
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 12px;
  }

  .usloviya-banner {
    margin-top: 24px;
    min-height: 262px;
  }

  .usloviya-banner__img {
    height: 262px;
  }

  /* Виджет куки — адаптив 640 */
  .cookie-bar {
    bottom: 32px;
    left: 10px;
    right: 10px;
    border-radius: 10px;
    padding: 15px;
  }

  /* Окно успеха — адаптив 1020 */
  .success-popup-wrapper {
    max-width: calc(100vw - 40px);
  }

  .success-popup__modal {
    min-height: auto;
    padding: 50px 30px 50px;
  }

  .success-popup__icon {
    margin-bottom: 28px;
  }

  .success-popup__icon svg {
    width: 140px;
    height: 140px;
  }

  .success-popup__text {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 32px;
  }

  .success-popup__btn {
    width: 280px;
    height: 56px;
    font-size: 18px;
    line-height: 26px;
  }

  /* Попап ошибки — адаптив 1020 */
  .error-popup-wrapper {
    max-width: 620px;
  }

  .error-popup__modal {
    max-width: 620px;
    min-height: 620px;
    height: 100%;
    padding: 40px 55px 50px;
  }

  .error-popup__text {
    font-size: 40px;
    line-height: 50px;
    max-width: 510px;
  }

}

@media (max-width: 640px) {

  .header__slogan {
    display: none;
  }

  .header__nav {
    display: none;
  }

  .header__contacts {
    display: none;
  }

  .header__burger {
    display: flex;
  }


  .header__search-input {
    display: block;
  }

  .header__search-input::placeholder {
    font-size: 12px;
    line-height: 17.34px;
  }

  .header__search-btn {
    width: 30px;
    height: 30px;
  }

  .hero-contact .contact-bar {
    right: 10px;
    bottom: 150px;
  }

  /* Плашка заказа — адаптив 640 */
  .product-order__total-panel {
    flex-direction: column;
    right: 10px;
    bottom: 30px;
    max-width: 300px;
    min-height: 110px;
    padding: 10px;
    border-radius: 15px;
    gap: 10px;
  }

  .product-order__total-caption {
    order: 2;
    min-width: unset;
    max-width: 280px;
    width: 100%;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 20px;
  }

  .product-order__total-info {
    order: 1;
    min-height: 40px;
    padding: 0 12px;
    border-radius: 10px;
    justify-content: center;
  }

  .product-order__total-label,
  .product-order__total-count {
    font-size: 14px;
    line-height: 20px;
  }

  .t-hero-title {
    font-size: 33px;
    line-height: 40px;
    text-align: center;
  }

  .hero__list-item.t-25 {
    font-size: 20px;
    line-height: 28.9px;
    text-align: center;
  }

  .hero__list {
    display: none;
  }

  .hero__list-item {
    padding-left: 0;
    text-align: center;
  }

  .hero__list-item::before {
    left: 50%;
    margin-left: -4px;
  }

  .hero {
    min-height: 700px;
    margin-top: 10px;
    height: auto;
  }

  .hero__slide-inner {
    display: flex;
    padding: 20px;
    min-height: auto;
    border-radius: 15px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 13px;
  }

  .hero__left {
    order: 1;
    width: 100%;
    align-items: center;
  }

  .hero__content {
    max-width: 100%;
    width: 100%;
  }

  .hero__title {
    margin-bottom: 12px;
  }

  .hero__list {
    margin-bottom: 20px;
  }

  .hero__btn {
    width: 100%;
    max-width: 100%;
    height: 55px;
    margin: 0 auto;
    order: 3;
    justify-content: center;
  }

  .hero__btn svg {
    display: none;
  }

  .hero__btn.t-20 {
    font-size: 18px;
  }

  .hero-contact .contact-bar {
    width: 40px;
    max-height: 40px;
  }

  .hero-contact_is-open .contact-bar {
    width: 60px;
    max-height: 280px;
  }

  .hero__media {
    order: 2;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
  }

  .hero__img {
    min-height: 280px;
  }

  .hero-contact__trigger.contact-bar__trigger {
    width: 40px;
    height: 40px;
  }

  .contact-bar__item {
    width: 40px;
    height: 40px;
  }

  .contact-bar__item_callback {
    width: auto;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }

  .catalog {
    padding: 25px 0 20px;
  }

  .catalog__title.t-section-title {
    font-size: 37px;
    line-height: 45px;
  }

  .catalog__title {
    margin-bottom: 15px;
  }

  .catalog__tabs {
    width: 100%;
    max-width: 100%;
    height: 46px;
  }

  .catalog__tab:first-child {
    flex: 0 0 150px;
  }

  .catalog__tab.t-25 {
    font-size: 16px;
    line-height: 18px;
  }

  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .catalog__card {
    min-height: 217px;
    padding: 10px 10px 10px;
    box-sizing: border-box;
  }

  .catalog__card-image {
    height: 83px;
    padding: 6px;
    margin-bottom: 10px;
    box-sizing: border-box;
  }

  .catalog__card .t-20-29 {
    font-size: 12px;
  }

  .catalog__card .t-16 {
    font-size: 10px;
    line-height: 15px;
  }

  .certificates .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .certificates .brand-card {
    min-height: 128px;
    padding: 10px 10px 0;
    gap: 10px;
  }

  .certificates .brand-card__img-wrap {
    height: 83px;
    padding: 6px;
    margin-bottom: 10px;
    box-sizing: border-box;
  }

  .certificates .brand-card .t-20-29 {
    font-size: 12px;
  }

  .about {
    min-height: auto;
    margin-top: 20px;
  }

  .about__inner {
    flex-direction: column;
    padding: 30px 10px;
    min-height: auto;
    gap: 25px;
  }

  .about__title.t-85-100 {
    font-size: 33px;
    line-height: 40px;
  }

  .about__title {
    margin-bottom: 10px;
  }

  .about__text {
    margin-bottom: 20px;
  }

  .about__pagination {
    gap: 10px;
  }

  .about__text .t-20 {
    font-size: 16px;
  }

  .about__media {
    max-width: 100%;
    max-height: 260px;
    order: 1;
  }

  .about__gallery {
    height: 260px;
    min-height: 0;
  }

  .about__gallery .swiper-slide {
    height: 100%;
  }

  .about__img {
    min-height: 100%;
  }

  .about__btn {
    width: 100%;
    max-width: 100%;
    height: 50px;
  }

  .about__btn.t-20 {
    font-size: 18px;
  }

  .office__title.t-office-title {
    font-size: 37px;
    line-height: 40px;
  }

  .office {
    padding: 20px 0 0;
  }

  .office__title {
    margin-bottom: 20px;
  }

  .office__map-wrap {
    height: 300px;
    border-radius: 15px;
  }

  .footer {
    padding: 20px 0 10px;
  }

  .footer__inner {
    padding: 25px 15px;
    min-height: auto;
    gap: 20px;
  }

  .footer__slogan.t-20 {
    font-size: 14px;
  }

  .footer__copyright.t-20 {
    font-size: 14px;
  }

  .footer__link.t-20,
  .footer__schedule-text.t-20,
  .footer__address-text.t-20 {
    font-size: 16px;
  }

  .footer__name.t-22 {
    font-size: 14px;
  }

  .footer__heading.t-22 {
    font-size: 18px;
  }

  .footer-content {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer__inner {
    background-position: left 110%, 0 0;
  }

  .footer__nav {
    max-width: 170px;
  }

  /* Каталог внутренняя — адаптив 640 */
  .catalog-inner,
  .certificates,
  .contacts,
  .certificates-inner,
  .product-page {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .catalog-inner .breadcrumbs,
  .certificates .breadcrumbs,
  .contacts .breadcrumbs,
  .certificates-inner .breadcrumbs {
    margin-bottom: 10px;
  }

  .catalog-inner .breadcrumbs__link,
  .catalog-inner .breadcrumbs__current {
    font-size: 14px;
    line-height: 20px;
  }

  .hero-page {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 20px;
    min-height: auto;
    padding: 16px;
  }

  .product-gallery-thumbs.swiper {
    margin-top: 0px;
    height: 95px;
  }

  .product-gallery__thumbs .swiper-slide,
  .product-gallery-thumbs .swiper-wrapper {
    height: 95px;
  }

  .product-gallery__main-wrap {
    margin-bottom: 10px;
  }

  .product-gallery__arrow {
    width: 30px;
    height: 48px;
    padding: 10px;
  }

  .product-gallery__arrow_next {
    right: 20px;
  }

  .product-gallery__thumbs .swiper-slide {
    padding: 12px;
  }

  .product-gallery__arrow_prev {
    left: 20px;
  }



  .hero-page__content {
    display: none;
  }

  .catalog-inner .catalog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .catalog-inner .catalog-card {
    min-height: 120px;
    padding: 16px;
    gap: 10px;
  }

  .catalog-inner .catalog-card__img-wrap {
    width: 100px;
    height: 100px;
  }

  .catalog-inner .catalog-card__title {
    font-size: 12px;
    line-height: 15px;
  }

  .contacts .hero-page {
    display: none;
  }

  .certificates-inner .hero-page {
    flex-direction: column;
    padding: 16px;
    margin-bottom: 20px;
    min-height: auto;
  }

  .certificates-inner .hero-page__card {
    width: 100%;
  }

  .product-hero {
    flex-direction: column;
    padding: 16px;
    margin-bottom: 20px;
  }

  .product-hero__card {
    width: 100%;
  }

  .product-hero__brand {
    font-size: 35px;
    text-align: center;
  }

  .product-hero__name {
    font-size: 22px;
    text-align: center;
  }

  .product-card {
    grid-template-columns: 1fr;
    padding: 16px;
    margin-bottom: 60px;
  }



  .product-gallery__thumbs .swiper-slide {
    max-height: 120px;
  }

  /* Страница товара — адаптив 640 */
  .product-page .product-info__title {
    font-weight: 800;
    font-size: 18px;
    line-height: 35px;
  }

  .product-page .product-info__short {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    line-height: 20.51px;
  }

  .product-page .product-info__features-title {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 23.12px;
  }

  .product-page .product-info__list,
  .product-page .product-info__list li {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    line-height: 23.12px;
  }

  .product-page .product-contact__title {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 10px;
  }

  .product-page .product-tabs-accordion .product-tabs__btn {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 23.12px;
  }

  .product-page .product-panel__title {
    font-family: "Jost", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28.9px;
  }

  .product-hero__content {
    display: none;
  }

  .product-page .product-panel__text,
  .product-page .product-panel__text p {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    line-height: 20.51px;
  }

  .product-page .productDescription.characteristics_table .table {
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1.35;
  }

  .product-page .productDescription.characteristics_table .table tr td:first-child {
    width: 42%;
    max-width: 280px;
    padding: 10px 12px;
    font-size: 14px;
  }

  .product-page .productDescription.characteristics_table .table td {
    font-size: 12px;
  }

  .product-page .productDescription.characteristics_table .table tr td:first-child {
    font-size: 12px;
    width: 120pt;
  }

  .product-page .productCatalogs__list {
    gap: 20px;
    grid-template-columns: 1fr;
  }



  .product-page .productCatalogs__icon svg {
    width: 20px;
    height: 20px;
  }

  .product-page .productCatalogs__icon {
    position: relative;
    padding-left: 10px;
  }

  .product-page .productCatalogs__icon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 20px;
    background-color: #3391c5;
    border-radius: 1px;
    transition: background-color 0.2s;
  }

  .product-page .productCatalogs__link:hover .productCatalogs__icon::before {
    background-color: #ffffff;
  }

  .ru-table-wrap_order .ru-table {
    grid-template-columns: 1fr 2fr 80px 90px;
  }

  .ru-table-wrap_order .ru-table__th {
    font-size: 18px;
    padding: 10px 12px;
  }

  .ru-table-wrap_order .ru-table__td {
    font-size: 16px;
    padding: 10px 12px;
  }

  .product-tabs-accordion {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #dddddd;
    box-shadow: 0 0 40px 3px rgba(0, 0, 0, 0.15);

  }

  .product-tabs-accordion .product-tabs,
  .product-tabs-accordion .product-panels {
    display: contents;
  }

  .product-tabs-accordion .product-tabs__btn {
    flex: none;
    width: 100%;
    min-width: unset;
    height: auto;
    font-size: 16px;
    padding: 15px 20px;
    text-align: left;
    border: none;
    border-bottom: 1px solid #dddddd;
    border-radius: 0;
    background: #ffffff;
    color: #1a1a18;
  }


  .product-tabs-accordion .product-tabs__btn:not(:first-child)::after {
    display: none;
  }

  .product-tabs-accordion .product-tabs__btn_active {
    background: #ffffff;
    color: #1a1a18;
  }

  .product-tabs-accordion .product-tabs__btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 13px;
    height: 8px;
    margin-left: auto;
    transition: transform 0.2s ease;
  }

  .product-tabs-accordion .product-tabs__btn-arrow svg {
    display: block;
  }

  .product-tabs-accordion .product-tabs__btn {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .product-tabs-accordion .product-tabs__btn_active .product-tabs__btn-arrow {
    transform: rotate(180deg);
  }

  .product-tabs-accordion .product-tabs__btn[data-product-tab="description"] {
    order: 0;
  }

  .product-tabs-accordion .product-panel[data-product-panel="description"] {
    order: 1;
    min-height: 0;
  }

  .product-tabs-accordion .product-tabs__btn[data-product-tab="specs"] {
    order: 2;
  }

  .product-tabs-accordion .product-panel[data-product-panel="specs"] {
    order: 3;
  }

  .product-tabs-accordion .product-tabs__btn[data-product-tab="order"] {
    order: 4;
  }

  .product-tabs-accordion .product-panel[data-product-panel="order"] {
    order: 5;
  }

  .product-tabs-accordion .product-tabs__btn[data-product-tab="catalogs"] {
    order: 6;
  }

  .product-tabs-accordion .product-panel[data-product-panel="catalogs"] {
    order: 7;
  }

  .product-tabs-accordion .product-tabs__btn[data-product-tab="video"] {
    order: 8;
  }

  .product-tabs-accordion .product-panel[data-product-panel="video"] {
    order: 9;
  }

  .product-tabs-accordion .product-panel {
    padding: 0 20px;
    margin: 0;
    border: none;
    border-radius: 0;
    background: #ffffff;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.25s ease;
  }

  .product-tabs-accordion .product-panel[hidden] {
    max-height: 0 !important;
    overflow: hidden !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    opacity: 0;
    display: block !important;
  }

  .product-tabs-accordion .product-panel_active {
    max-height: 10000px !important;
    overflow: visible;
    padding: 20px 20px 24px !important;
    opacity: 1;
    display: block !important;
  }

  .product-contact__row {
    flex-direction: column;
    gap: 10px;
  }

  .product-contact {
    padding: 15px;
  }

  .product-page .product-card {
    padding: 0;
  }

  .product-page .product-gallery__main-wrap {
    min-height: auto;
    height: 300px;
  }

  .product-page .product-panel__title {
    font-size: 20px;
  }

  .product-page .product-panel__text {
    font-size: 16px;
  }

  /* Таблица РУ  */
  .certificates-inner .ru-table-wrap {
    padding: 16px;
    overflow: visible;
  }

  .certificates-inner .ru-table {
    display: block !important;
  }

  .certificates-inner .ru-table__head {
    display: none !important;
  }

  .certificates-inner .ru-table__ru-blue,
  .certificates-inner .ru-table__ru-gray {
    display: grid !important;
    grid-template-columns: 87px 1fr;
    gap: 5px;
    list-style: none;
    padding: 10px 0 10px;
    margin-left: 0;
    padding-left: 0;
    border-top: 2px solid #f2f2f2;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .certificates-inner .ru-table>*:nth-child(2n+2) .ru-table__td {
    background: #e6f0f8;
  }

  .certificates-inner .ru-table>*:nth-child(2n+3) .ru-table__td {
    background: #f2f2f2;
  }

  .certificates-inner .ru-table__ru-blue:hover,
  .certificates-inner .ru-table__ru-gray:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }

  .certificates-inner .ru-table__ru-blue:last-child,
  .certificates-inner .ru-table__ru-gray:last-child {
    padding-bottom: 0;
  }

  .certificates-inner .ru-table__ru-blue:nth-child(2),
  .certificates-inner .ru-table__ru-gray:nth-child(2) {
    border-top: none;
    padding-top: 0;
  }

  .certificates-inner .ru-table__ru-blue>li.ru-table__th,
  .certificates-inner .ru-table__ru-gray>li.ru-table__th {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    background: #3391c5;
    color: var(--color-white);
    border-radius: 5px;
    box-sizing: border-box;
  }

  .certificates-inner .ru-table__ru-blue>li.ru-table__th_doc,
  .certificates-inner .ru-table__ru-gray>li.ru-table__th_doc {
    justify-content: flex-start;
  }

  .certificates-inner .ru-table__ru-blue>li.ru-table__td,
  .certificates-inner .ru-table__ru-gray>li.ru-table__td {
    min-height: 35px;
    padding: 8px 12px !important;
    font-size: 12px !important;
    line-height: 17px !important;
    box-sizing: border-box;
  }

  .certificates-inner .ru-table__ru-blue>li.ru-table__td_action,
  .certificates-inner .ru-table__ru-gray>li.ru-table__td_action {
    padding: 0 !important;
  }

  .certificates-inner .ru-table__ru-blue>li.ru-table__td_action .ru-table__link,
  .certificates-inner .ru-table__ru-gray>li.ru-table__td_action .ru-table__link {
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 6px;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 17px;
    background: #3391c5;
    color: var(--color-white);
    text-decoration: none;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  }

  .certificates-inner .ru-table__ru-blue>li.ru-table__td_action .ru-table__link:hover,
  .certificates-inner .ru-table__ru-gray>li.ru-table__td_action .ru-table__link:hover {
    background-color: #2a7aad;
    box-shadow: 0 4px 12px rgba(51, 145, 197, 0.35);
    transform: scale(1.03);
  }

  .ru-table-wrap {
    padding: 16px;
    overflow: visible;
  }

  .ru-table {
    display: block !important;
  }

  .ru-table__head {
    display: none !important;
  }

  .ru-table__ru-blue,
  .ru-table__ru-gray {
    display: grid !important;
    grid-template-columns: 87px 1fr;
    gap: 5px;
    list-style: none;
    padding: 10px 0 10px;
    margin-left: 0;
    padding-left: 0;
    border-top: 2px solid #f2f2f2;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }



  .ru-table__ru-blue:last-child,
  .ru-table__ru-gray:last-child {
    padding-bottom: 0;
  }

  .ru-table__ru-blue:nth-child(2),
  .ru-table__ru-gray:nth-child(2) {
    border-top: none;
    padding-top: 0;
  }

  .ru-table__ru-blue>li.ru-table__th,
  .ru-table__ru-gray>li.ru-table__th {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 35px;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    background: #3391c5;
    color: var(--color-white);
    border-radius: 5px;
    box-sizing: border-box;
  }

  .ru-table__ru-blue>li.ru-table__th_doc,
  .ru-table__ru-gray>li.ru-table__th_doc {
    justify-content: flex-start;
  }

  .ru-table__ru-blue>li.ru-table__td,
  .ru-table__ru-gray>li.ru-table__td {
    min-height: 35px;
    padding: 8px 12px !important;
    font-size: 12px !important;
    line-height: 17px !important;
    box-sizing: border-box;
    justify-content: start;
  }


  .ru-table__ru-blue>li.ru-table__td_action,
  .ru-table__ru-gray>li.ru-table__td_action {
    padding: 3px !important;
  }

  .ru-table__ru-blue>li.ru-table__td_action .ru-table__link,
  .ru-table__ru-gray>li.ru-table__td_action .ru-table__link {
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 6px;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 17px;
    background: #3391c5;
    color: var(--color-white);
    text-decoration: none;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
  }

  .ru-table__ru-blue>li.ru-table__td_action .ru-table__link:hover,
  .ru-table__ru-gray>li.ru-table__td_action .ru-table__link:hover {
    background-color: #2a7aad;
    box-shadow: 0 4px 12px rgba(51, 145, 197, 0.35);
    transform: scale(1.03);
  }

  .ru-table__td_ru-num,
  .ru-table__td_num {
    justify-content: start;
  }

  .contacts .container {
    display: flex;
    flex-direction: column;
  }

  .contacts .breadcrumbs {
    order: -1;
  }

  /* Контакты 640: карта под блоком карточек */
  .contacts-grid {
    order: 0;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .contacts__map-wrap {
    order: 1;
    margin-bottom: 20px;
    border-radius: 20px;
  }

  .contacts__map,
  .contacts__map-placeholder {
    height: 360px;
    min-height: 300px;
    border-radius: 20px;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .contact-card__icon svg,
  .contact-card__icon_type_doc svg {
    width: 20px;
    height: 20px;
  }

  .contact-card__title.t-30-43 {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 16px;
  }

  .contact-card__text,
  .contact-card__link {
    font-size: 16px;
    line-height: 23.12px;
    margin-bottom: 8px;
  }

  .contact-card__body p {
    font-size: 16px;
    line-height: 23.12px;
  }

  .breadcrumbs .t-18 {
    font-size: 14px;
  }

  .breadcrumbs {
    margin-bottom: 10px;
    gap: 5px;
  }

  /* Виджет куки — адаптив 640 */
  .cookie-bar {
    box-shadow: 0px 0px 34.8px 0px rgba(0, 0, 0, 0.4);
    padding: 15px 5px;
  }

  .cookie-bar__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 16px;
  }

  .cookie-bar__text {
    font-size: 16px;
    line-height: 22px;
    max-width: none;
  }

  .cookie-bar__btn {
    min-width: 0;
    width: 100%;
    order: 2;
    font-size: 20px;
    height: 48px;
    margin-top: 0;
  }

  /* Поиск — адаптив 640 */
  .page_search .search-page {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .search-results__head {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
  }

  .search-results__title {
    font-size: 25px;
    line-height: 36.125px;
    width: 100%;
    align-items: start;
  }

  .search-results__list {
    gap: 20px;
    margin-bottom: 24px;
  }

  .search-card {
    padding: 10px;
    border-radius: 15px;
  }

  .search-card__title {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
  }

  .search-card__meta {
    border-radius: 10px;
    padding: 10px;
    min-height: 93px;
  }

  .search-card__art,
  .search-card__desc {
    font-size: 12px;
    line-height: 17.34px;
  }

  .search-pagination {
    gap: 10px;
    justify-content: center;
  }

  .search-pagination__btn {
    width: 35px;
    height: 35px;
    border-radius: 5px;
  }

  .search-pagination__num {
    min-width: 25px;
    height: 25px;
    font-size: 14px;
    line-height: 20.23px;
    border-radius: 5px;
  }

  .search-pagination__link {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1a1a18;
  }

  .search-pagination__link-text {
    display: none;
  }

  .search-pagination__link-icon {
    display: inline-flex;
  }

  .search-pagination__link-icon_prev svg {
    transform: scaleX(-1);
  }

  .search-pagination__btn::after {
    display: none;
  }

  .search-pagination__btn-icon {
    display: block;
  }

  .search-pagination__btn {
    color: #fff;
  }

  .search-pagination__btn_prev .search-pagination__btn-icon {
    transform: rotate(180deg);
    opacity: 0.6;
  }

  /* Попап «Оформить заказ» — адаптив 640 */
  .order-popup__modal {
    max-width: 620px;
    margin: 10px auto;
    padding: 20px;
    box-sizing: border-box;
  }

  .order-popup__title {
    font-size: 25px;
    line-height: 35px;
    margin: 0 0 15px;
  }

  .order-popup,
  .callback-popup {
    padding: 10px;
  }

  .callback-popup__modal {
    max-width: 620px;
    padding: 20px;
  }

  .order-popup__tabs {
    margin: 0 auto 30px;
  }

  .order-popup__tab {
    font-size: 16px;
    line-height: 16px;
    padding: 8px;
    min-height: 46px;
  }

  .order-popup__body {
    gap: 40px;
  }

  .order-popup__row {
    grid-template-columns: 1fr;
  }

  .order-popup__input,
  .order-popup__textarea {
    font-size: 16px;
    padding: 15px;
  }

  .order-popup__textarea {
    min-height: 100px;
    height: 100px;
  }

  .order-popup__captcha {
    min-height: 90px;
    padding-left: 10px;
    flex-wrap: wrap;
  }

  .order-popup__captcha-label {
    font-size: 16px;
  }

  .order-popup__captcha-placeholder {
    width: 67px;
    height: 67px;
    min-width: 0;
    min-height: 0;
  }

  .order-popup__summary-row-name {
    font-size: 16px;
  }

  .order-popup__summary-row-qty {
    font-size: 18px;
  }

  /* Страница 404 — адаптив 640 */
  .error {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .error-wrapper {
    gap: 30px;
  }

  .error-content_title {
    font-size: 150px;
    line-height: 110px;
    margin-bottom: 16px;
  }

  .error-content_desc {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 24px;
  }

  .error-content_link {
    min-width: 100%;
    width: 100%;
    min-height: 56px;
    font-size: 16px;
    line-height: 23px;
  }

  .error-image {
    max-width: 380px;
  }

  /* Окно успеха — адаптив 640 */
  .success-popup {
    padding: 16px;
  }

  .success-popup-wrapper {
    max-width: 100%;
  }

  .success-popup__modal {
    padding: 40px 20px 32px;
  }

  .success-popup__close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }

  .success-popup__icon {
    margin-bottom: 20px;
  }

  .success-popup__icon svg {
    width: 100px;
    height: 100px;
  }

  .success-popup__text {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 24px;
  }

  .success-popup__btn {
    width: 100%;
    max-width: 300px;
    height: 52px;
    font-size: 18px;
    line-height: 26px;
  }

  /* Попап ошибки — адаптив 640 */
  .error-popup-wrapper {
    max-width: 300px;
  }

  .error-popup__modal {
    max-width: 300px;
    min-height: 300px;
    padding: 32px 24px;
  }

  .error-popup__close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }

  .error-popup__icon {
    margin-bottom: 16px;
  }

  .error-popup__icon svg {
    width: 113px;
    height: 113px;
  }

  .error-popup__text {
    font-size: 25px;
    line-height: 30px;
    max-width: 253px;
  }

  /* Условия работы — адаптив 640 */
  .usloviya,
  .politika {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .usloviya .breadcrumbs {
    margin-bottom: 12px;
  }

  .usloviya-hero {
    padding: 20px;
    margin-bottom: 60px;
    min-height: 222px;
    border-radius: 15px;
    background-size: auto 80%, 100% 100%;
  }

  .politika-hero {
    margin-bottom: 30px;
    min-height: 0;
  }

  .usloviya-hero__brand {
    margin-bottom: 12px;
  }

  .usloviya-hero__logo-wrap {
    width: 50px;
    height: 50px;
  }

  .usloviya-hero__company {
    font-size: 16px;
    line-height: 23px;
  }

  .usloviya-hero__title {
    font-size: 23px;
    line-height: 30px;
    margin-bottom: 8px;
  }

  .usloviya-hero__subtitle {
    font-size: 18px;
    line-height: 26px;
    max-width: 100%;
  }

  .usloviya-section {
    margin-bottom: 60px;
  }

  .usloviya-section__title,
  .usloviya-section-title {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 20px;
  }

  .usloviya-section__title {
    line-height: 40px;
    font-size: 37px;
  }

  .usloviya-section__title_center,
  .usloviya-section-title_center {
    margin-bottom: 20px;
  }

  .usloviya-cards {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .usloviya .usloviya-cards .usloviya-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
  }

  .usloviya-photos {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .usloviya-photo {
    min-height: 200px;
    width: 100%;
    max-width: none;
    flex: 0 0 auto;
  }

  .usloviya-photo img {
    min-height: 200px;
  }

  .usloviya-card {
    padding: 20px;
  }

  .usloviya-cards .usloviya-card_large {
    min-height: 0;
    padding-bottom: 90px;
  }

  .usloviya-section_offer .usloviya-card:nth-child(1)::after {
    width: 100px;
    height: 100px;
  }

  .usloviya-section_offer .usloviya-card:nth-child(2)::after {
    width: 120px;
    height: 120px;
  }

  .usloviya-card__num {
    width: 50px;
    height: 50px;
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 12px;
  }

  .usloviya-card__text {
    font-size: 16px;
    line-height: 23px;
  }

  .usloviya-card_subtitle .usloviya-card__heading {
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 10px;
  }

  .usloviya-banner {
    margin-top: 20px;
    min-height: 262px;
    width: 100%;
    border-radius: 15px;
  }

  .usloviya-banner__img {
    height: 300px;
    width: 100%;
    border-radius: 15px;
  }

  .callback-popup__title {
    font-size: 25px;
    margin-bottom: 20px;
    line-height: 35px;
  }

  .order-popup__checkbox-label {
    font-size: 14px;
    line-height: 15px;
  }

  .order-popup__close {
    top: 20px;
    right: 10px;
  }
}

/* ===== Стили форм внутри попапа заказа ===== */
.order-popup__form .form-floating {
  position: relative;

}

.order-popup__form .form-floating input,
.order-popup__form .form-floating textarea,
.order-popup__form .form-floating select {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 18px;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #1a1a18;
  background: rgba(245, 245, 245, 0.96);
  border: 1px solid #d0e8f5;
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
  display: block;
  box-shadow: 0 0 30px 3px rgba(0, 0, 0, .15);
  appearance: none;
}

.order-popup__form .form-floating input:focus,
.order-popup__form .form-floating textarea:focus,
.order-popup__form .form-floating select:focus {
  outline: none;
  border-color: #3391c5;
  background: #ffffff;
}

.order-popup__form .form-floating textarea {
  min-height: 100px;
  resize: vertical;
}

.order-popup__form .form-floating label {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 6px;
}

.order-popup__form .mb-3 {
  margin-bottom: 16px;
}

.order-popup__form .text-danger {
  color: #ff0000;
  font-size: 14px;
  margin-top: 4px;
}

.order-popup__form .invalid-feedback {
  display: block;
  color: #ff0000;
  font-size: 14px;
  margin-top: 4px;
}

.order-popup__form .input-file {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 60px;
  padding: 16px 18px;
  background: rgba(245, 245, 245, 0.96);
  border: 1px dashed #3391c5;
  border-radius: 10px;
  color: #3391c5;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.order-popup__form .input-file:hover {
  background: rgba(51, 145, 197, 0.08);
  border-color: #2673a8;
}

.order-popup__form .input-file input[type="file"] {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.order-popup__form .input-file span {
  pointer-events: none;
}

/* ===== Стили блока формы (legal): контейнер формы заказа ===== */
#modal_form_container {
  width: 100%;
}

#modal_form_container .oneLine {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  align-items: flex-start;
}

#modal_form_container .oneLine .w-50 {
  flex: 1 1 0;
}

.iti {
  display: block !important;
  width: 100% !important;
}

/* Чтобы отступ не удваивался за счет mb-3 у каждого инпута */
#modal_form_container .oneLine .form-floating.mb-3 {
  margin-bottom: 0 !important;
  width: 100% !important;
}

@media (max-width: 640px) {
  #modal_form_container .oneLine {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
  }
}

/* ===== Floating labels (как Bootstrap form-floating) ===== */
#modal_form_container .form-floating,
#physical_modal_form_container .form-floating {
  position: relative;
}

#modal_form_container .form-floating>.form-control,
#modal_form_container .form-floating>.form-select,
#physical_modal_form_container .form-floating>.form-control,
#physical_modal_form_container .form-floating>.form-select {
  padding: 1.45rem 1.125rem 0.75rem;
}

#modal_form_container .form-floating>label,
#physical_modal_form_container .form-floating>label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 1.125rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  transform-origin: 0 0;
  transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
  color: rgba(26, 26, 24, 0.65);
  margin: 0;
}

#modal_form_container .form-floating>.form-control::placeholder,
#physical_modal_form_container .form-floating>.form-control::placeholder {
  color: transparent;
}

#modal_form_container .form-floating>.form-control:focus~label,
#modal_form_container .form-floating>.form-control:not(:placeholder-shown)~label,
#modal_form_container .form-floating>.form-select:focus~label,
#modal_form_container .form-floating>.form-select:not([value=""])~label,
#physical_modal_form_container .form-floating>.form-control:focus~label,
#physical_modal_form_container .form-floating>.form-control:not(:placeholder-shown)~label,
#physical_modal_form_container .form-floating>.form-select:focus~label,
#physical_modal_form_container .form-floating>.form-select:not([value=""])~label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  opacity: 0.85;
}

/* Поддержка, когда input оборачивается библиотекой (например intl-tel-input) */
#modal_form_container .form-floating:focus-within>label,
#physical_modal_form_container .form-floating:focus-within>label,
#modal_form_container .form-floating.form-floating_is-filled>label,
#physical_modal_form_container .form-floating.form-floating_is-filled>label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  opacity: 0.85;
}

/* ===== Floating labels для форм обратного звонка и письма ===== */
.callback-popup__modal .form-floating,
.callback-popup__modal .form-floating {
  position: relative;
}

.callback-popup__modal .form-floating>.form-control,
.callback-popup__modal .form-floating>textarea.form-control,
.callback-popup__modal .form-floating>input.form-control {
  padding: 1.45rem 1.125rem 0.75rem;
}

.callback-popup__modal .form-floating>.form-control,
.callback-popup__modal .form-floating>textarea.form-control,
.callback-popup__modal .form-floating>input.form-control {
  border: 1px solid #d0e8f5;
  box-shadow: 0 0 30px 3px rgba(0, 0, 0, 0.15);
}

.callback-popup__modal .form-floating>textarea.form-control {
  min-height: 100px;
  resize: vertical;
}

.callback-popup__modal .form-floating>label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 1.125rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  pointer-events: none;
  transform-origin: 0 0;
  transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
  color: rgba(26, 26, 24, 0.65);
  font-size: 14px;
  line-height: 1.2;
  margin: 0;
}

.callback-popup__modal .form-floating>.form-control::placeholder,
.callback-popup__modal .form-floating>textarea.form-control::placeholder,
.callback-popup__modal .form-floating>input.form-control::placeholder {
  color: transparent;
}

.callback-popup__modal .form-floating>input:focus~label,
.callback-popup__modal .form-floating>input:not(:placeholder-shown)~label,
.callback-popup__modal .form-floating>textarea:focus~label,
.callback-popup__modal .form-floating>textarea:not(:placeholder-shown)~label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  opacity: 0.85;
}

.callback-popup__modal .form-floating:focus-within>label,
.callback-popup__modal .form-floating.form-floating_is-filled>label {
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
  opacity: 0.85;
}

/* ===== Таблица товаров в «Ваш выбор» ===== */
#offers-table {
  width: 100%;
  border-collapse: collapse;
}

#offers-table tbody tr {
  display: grid;
  grid-template-columns: 1fr 60px 60px;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.offers-table__code {
  min-width: 0;
  padding: 10px 14px;
  background: #f0f5f9;
  border-radius: 10px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  color: #1a1a18;
  height: 60px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, .25);
}

.offers-table__qty {
  padding: 10px 14px;
  height: 60px;
  display: flex;
  width: 60px;
  align-items: center;
  justify-content: center;
  background: #f0f5f9;
  border-radius: 10px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #3391c5;
  white-space: nowrap;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, .25);
  text-align: center;
}

.offers-table__remove {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.offers-table__remove-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #3391c5;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
  box-shadow: 0 0 40px 3px rgba(0, 0, 0, .25);
}

.offers-table__remove-btn:hover {
  background: #2673a8;
}

#offers-table .offers-table__remove-btn img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

#offers-table .offers-table__remove-btn svg {
  width: 18px;
  height: 20px;
}

.order-popup__summary-empty {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  color: #9b9b9b;
  padding: 16px;
  background: #f2f2f2;
  border-radius: 10px;
  text-align: center;
  display: block;
}
