@import url("https://fonts.googleapis.com/css2?family=SN+Pro:ital,wght@0,200..900;1,200..900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --dna-color: #68c4c1;
  --dna-glow: #78c3c0;
  --dna-light-glow: #7fdbd8;
  --text-color: #56a19e;
  --dna-color-main: #15dfc4;
  --dna-color-light: #a11515;
  --teal: #68c4c1;
  --teal-dark: #3fa9a6;
  --text: #1f2d2b;
}

.header .container {
  padding-top: 16px;
  padding-bottom: 16px;
}

.header__logo img {
  max-height: 25px;
  width: auto;
}

.header__nav {
  background: var(--dna-glow);
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.header__nav ul {
  display: flex;
  justify-content: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__nav ul li {
  flex-direction: column;
  align-items: stretch;
}

.header__nav ul li a {
  text-decoration: none;
  box-sizing: border-box;
  color: white;
  transition: all 0.3s ease;
  padding: 15px 20px;
  border-radius: 5px;
  font-weight: bold;
  position: relative;
  display: block;
}

.header__nav > ul > li > a:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--text-color);
}

.header__nav ul li.separator {
  color: var(--text-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
}

.header__contact {
  display: block;
  text-align: right;
}

.header__phone,
.header__email {
  color: var(--text-color);
  text-decoration: none;
  pointer-events: none;
  font-weight: bold;
}

.nav-item--dropdown {
  position: relative;
}

.nav-arrow {
  font-size: 0.65rem;
  margin-left: 4px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}

.nav-item--dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.dropdown {
  display: block !important;
  list-style: none;
  padding: 8px 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(104, 196, 193, 0.2);
  border: 1.5px solid rgba(104, 196, 193, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s;
  z-index: 200;
}

.nav-item--dropdown:hover > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown__item {
  position: relative;
}

.dropdown__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f2d2b !important;
  text-decoration: none;
  border-radius: 8px;
  margin: 2px 6px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  white-space: nowrap;
  min-width: 260px;
}

.dropdown__item--soon a {
  color: var(--muted, #9ab8b5) !important;
  font-style: italic;
  cursor: default;
  pointer-events: none;
  gap: 6px;
}

.dropdown__item--soon a i {
  color: var(--teal) !important;
}

.dropdown__item a:hover {
  background: rgba(104, 196, 193, 0.1);
  color: var(--teal-dark) !important;
  padding-left: 22px;
}

.dropdown__item a:hover::after {
  display: none !important;
}

.dropdown__item a i:first-child:not(.dropdown__arrow):not(.fa-chevron-right) {
  color: var(--teal);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.btn-outline {
  background: transparent;
  color: var(--teal-dark);
  border: 2px solid var(--teal);
  padding: 14px 36px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(104, 196, 193, 0.3);
}

.dropdown__arrow {
  margin-left: auto;
  font-size: 1rem !important;
  color: var(--teal);
  flex-shrink: 0;
  min-width: 20px;
  text-align: right;
  transition: transform 0.25s ease;
}

.dropdown--sub .dropdown__arrow {
  font-size: 1rem;
}

.dropdown__item--has-sub:hover .dropdown__arrow {
  transform: translateX(4px);
}

.dropdown__item--has-sub {
  position: relative;
}

.dropdown--sub {
  top: 0;
  left: 100%;
  margin-left: 8px;
  min-width: 200px;
}

.dropdown__item--has-sub:hover > .dropdown--sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown--sub .dropdown__item a i:first-child {
  font-size: 0.4rem;
  color: var(--teal);
}

.dna {
  position: relative;
  width: 200px;
  height: 250px;
  margin-top: 100px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dna__pair {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.dna__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--dna-glow);
}

.dna__dot--right {
  background: var(--dna-color-light);
  transform: translateX(var(--x-right));
}

.dna__bar {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 1px;
  background: var(--dna-glow);
  transform-origin: center;
}

.dna__dot--left {
  transform: translateX(var(--x-left));
}

body {
  font-family: "SN Pro", sans-serif;
  color: #1f2d2b;
  margin: 0;
  background-color: white;
}

html {
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  background-color: white;
  text-align: left;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero__text {
  font-size: 1rem;
  color: #4a6664;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--teal-dark);
  background: rgba(104, 196, 193, 0.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(104, 196, 193, 0.25);
}

.hero__content-left {
  flex: 1;
}

.hero__content-right {
  flex: 0 0 420px;
}

.news-panel {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 8px 40px rgba(104, 196, 193, 0.15);
  border: 1.5px solid rgba(104, 196, 193, 0.2);
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.3s;
}

.news-panel__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid rgba(104, 196, 193, 0.15);
}

.news-panel__icon {
  font-size: 1.2rem;
}

.news-panel__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  flex: 1;
}

.news-panel__badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(104, 196, 193, 0.12);
  padding: 3px 10px;
  border-radius: 100px;
}

.news-panel__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.news-item {
  padding: 16px;
  border-radius: 14px;
  background: #f4fafa;
  border: 1.5px solid rgba(104, 196, 193, 0.1);
  transition: all 0.3s ease;
  cursor: default;
}

.news-item:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(104, 196, 193, 0.15);
  transform: translateX(4px);
}

.news-item__date {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.news-item__text {
  font-size: 0.88rem;
  color: #9ab8b6;
  font-style: italic;
}

.news-item__bar {
  height: 4px;
  border-radius: 4px;
  background: rgba(104, 196, 193, 0.15);
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.news-item__bar::after {
  content: "";
  position: absolute;
  left: -60%;
  top: 0;
  height: 100%;
  width: 40%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(104, 196, 193, 0.4),
    transparent
  );
  animation: shimmer 2s infinite;
}

.news-panel__link {
  display: block;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-dark);
  text-decoration: none;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1.5px dashed rgba(104, 196, 193, 0.3);
}

.news-panel__link:hover {
  background: rgba(104, 196, 193, 0.08);
  border-style: solid;
  border-color: var(--teal);
}

@keyframes shimmer {
  to {
    left: 120%;
  }
}

@media (max-width: 768px) {
  .hero__container {
    flex-direction: column;
    gap: 40px;
  }
  .hero__content-right {
    flex: 1 1 100%;
    width: 100%;
  }
}

.text-box {
  text-align: center;
  margin-top: 30px;
}

.btn {
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 40px;
  display: inline-block;
  border-radius: 100px;
  transition: all 0.3s ease;
  position: relative;
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  background-color: var(--dna-glow);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  border-color: var(--dna-glow);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn-custom::after {
  background-color: var(--dna-glow);
}

.btn-animate {
  animation: moveInBottom 1s ease-out;
  animation-fill-mode: backwards;
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.about {
  position: relative;
  padding: 60px 0;
  background: #ffffff;
}

.about::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.5);
  clip-path: polygon(0 0, 100% 100%, 100% 0, 0 0);
}

/* ── Products Section ── */
.products.section {
  padding: 80px 20px;
  background-image: url("/assets/images/Wave.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.products__header {
  text-align: center;
  margin-bottom: 56px;
}

.products__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(104, 196, 193, 0.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.products__subtitle {
  font-size: 1rem;
  color: #7a9a98;
  max-width: 500px;
  margin: 0 auto;
}

/* Сетка */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

/* Карточка */
.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(104, 196, 193, 0.12);
  box-shadow: 0 4px 20px rgba(104, 196, 193, 0.08);
  transition:
    transform 0.35s cubic-bezier(0.22, 0.68, 0, 1.2),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  animation: cardIn 0.5s ease both;
}

.product-card:nth-child(1) {
  animation-delay: 0.05s;
}
.product-card:nth-child(2) {
  animation-delay: 0.15s;
}
.product-card:nth-child(3) {
  animation-delay: 0.25s;
}
.product-card:nth-child(4) {
  animation-delay: 0.35s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(104, 196, 193, 0.2);
  border-color: var(--teal);
}

/* Изображение */
.product-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0px;
  transition: transform 0.5s ease;
  display: block;
}

.product-card:hover .glove-card__logo {
  transform: none;
}

.product-card:hover .product-card__img-wrap img {
  transform: scale(1.07);
}

/* Оверлей с кнопкой */
.product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(104, 196, 193, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(2px);
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

.product-card__btn {
  background: #fff;
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 10px 24px;
  border-radius: 100px;
  text-decoration: none;
  transform: translateY(10px);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.product-card:hover .product-card__btn {
  transform: translateY(0);
}

.product-card__btn:hover {
  background: var(--teal-dark);
  color: #fff;
}

/* Бейдж */
.product-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}

/* Тело карточки */
.product-card__body {
  padding: 20px;
}

.product-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.product-card__desc {
  font-size: 0.82rem;
  color: #7a9a98;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* Теги */
.product-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.product-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: rgba(104, 196, 193, 0.1);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(104, 196, 193, 0.2);
}

@media (max-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products__grid {
    grid-template-columns: 1fr;
  }
}

.directions {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
}
.directions__header {
  text-align: center;
  margin-bottom: 56px;
}
.directions__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(104, 196, 193, 0.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.directions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dir-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px 42px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1.5px solid transparent;
  transition:
    transform 0.35s cubic-bezier(0.22, 0.68, 0, 1.2),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  box-shadow: 0 4px 20px rgba(104, 196, 193, 0.08);
  animation: cardIn 0.5s ease both;
}
.dir-card:nth-child(1) {
  animation-delay: 0.05s;
}
.dir-card:nth-child(2) {
  animation-delay: 0.15s;
}
.dir-card:nth-child(3) {
  animation-delay: 0.25s;
}
.dir-card:nth-child(4) {
  animation-delay: 0.35s;
}
.dir-card:nth-child(5) {
  animation-delay: 0.45s;
}
.dir-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(104, 196, 193, 0.06) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
}
.dir-card:hover,
.dir-card.active {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(104, 196, 193, 0.22);
  border-color: var(--teal);
}
.dir-card:hover::before,
.dir-card.active::before {
  opacity: 1;
}

.dir-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(104, 196, 193, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition:
    background 0.35s ease,
    transform 0.35s ease;
}
.dir-card:hover .dir-card__icon-wrap,
.dir-card.active .dir-card__icon-wrap {
  background: var(--teal);
  transform: scale(1.08) rotate(-4deg);
}
.dir-card__icon-wrap i {
  font-size: 1.4rem;
  color: var(--teal);
  transition: color 0.3s ease;
}
.dir-card:hover .dir-card__icon-wrap i,
.dir-card.active .dir-card__icon-wrap i {
  color: #fff;
}

.dir-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.dir-card__desc {
  font-size: 0.9rem;
  color: #5a7573;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition:
    max-height 0.45s ease,
    opacity 0.4s ease 0.05s,
    transform 0.4s ease 0.05s;
}
.dir-card:hover .dir-card__desc,
.dir-card.active .dir-card__desc {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}

.dir-card__arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(104, 196, 193, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.dir-card__arrow i {
  font-size: 0.75rem;
  color: var(--teal-dark);
}
.dir-card:hover .dir-card__arrow,
.dir-card.active .dir-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.dir-card--featured {
  grid-column: span 2;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: linear-gradient(120deg, #eaf8f7 0%, #f4fafa 100%);
  border-color: rgba(104, 196, 193, 0.3);
}
.dir-card--featured .dir-card__body {
  flex: 1;
}
.dir-card--featured .dir-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  flex-shrink: 0;
}
.dir-card--featured .dir-card__icon-wrap i {
  font-size: 1.4rem;
}
.dir-card--featured .dir-card__title {
  font-size: 1.2rem;
}
.dir-card--featured .dir-card__desc {
  max-height: 80px;
  opacity: 1;
  transform: translateY(0);
}

.directions__stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
.stat {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(104, 196, 193, 0.08);
  border: 1.5px solid rgba(104, 196, 193, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  animation: statIn 0.5s ease both;
}
.stat:nth-child(1) {
  animation-delay: 0.5s;
}
.stat:nth-child(2) {
  animation-delay: 0.6s;
}
.stat:nth-child(3) {
  animation-delay: 0.7s;
}
.stat:nth-child(4) {
  animation-delay: 0.8s;
}
.stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(104, 196, 193, 0.18);
}
.stat__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}
.stat__label {
  font-size: 0.82rem;
  color: #7a9a98;
  font-weight: 500;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes statIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .directions__grid {
    grid-template-columns: 1fr;
  }
  .dir-card--featured {
    grid-column: span 1;
    flex-direction: column;
    gap: 16px;
  }
  .directions__stats {
    flex-direction: column;
  }
}

/* ── Contact Section ── */
.contact.section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #eaf8f7 0%, #ffffff 100%);
  position: relative;
}

.contact.section::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #eaf8f7;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 0;
}

.contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact__header {
  text-align: center;
  margin-bottom: 56px;
}

.contact__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(104, 196, 193, 0.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.products__title,
.directions__title,
.contact__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.products__title span,
.directions__title span,
.contact__title span {
  color: var(--teal);
}

.contact__subtitle {
  font-size: 1rem;
  color: #7a9a98;
  max-width: 480px;
  margin: 0 auto;
}

.contact__wrapper {
  display: flex;
  gap: 0;
  align-items: flex-start;
  position: relative;
}

.contact__info {
  flex: 0 0 280px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--teal);
  border-radius: 20px;
  padding: 36px 28px;
  border: none;
  box-shadow: 0 8px 32px rgba(104, 196, 193, 0.35);
  position: relative;
  z-index: 2;
  margin-right: -40px;
  margin-top: 24px;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__info-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.contact__info-item:hover .contact__info-icon {
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.contact__info-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.contact__info-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact__info-value:hover {
  color: rgba(255, 255, 255, 0.8);
}

.contact__form-wrap {
  flex: 0 0 700px;
  background: #fff;
  border-radius: 20px;
  padding: 40px 40px 40px 80px;
  border: 1.5px solid rgba(104, 196, 193, 0.15);
  box-shadow: 0 4px 20px rgba(104, 196, 193, 0.08);
  position: relative;
  z-index: 1;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.contact-form__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #5a7a78;
  letter-spacing: 0.04em;
}

.contact-form__input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(104, 196, 193, 0.25);
  border-radius: 12px;
  font-size: 0.92rem;
  color: var(--text);
  background: #f9fdfd;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  font-family: inherit;
}

.contact-form__input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(104, 196, 193, 0.12);
  background: #fff;
}

.contact-form__input::placeholder {
  color: #b0cece;
}

.contact-form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2368c4c1' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  margin-top: 4px;
}

.contact-form__btn:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(104, 196, 193, 0.35);
}

.contact-form__btn i {
  transition: transform 0.3s ease;
}

.contact-form__btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .contact__wrapper {
    flex-direction: column;
  }
  .contact__info {
    flex: 1 1 100%;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
  .contact__form-wrap {
    padding: 24px;
  }
}

.footer {
  background: #ffffff;
  border-top: 2px solid rgba(104, 196, 193, 0.2);
  color: var(--text);
  margin-top: 60px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 0;
}

.footer__top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(104, 196, 193, 0.15);
  align-items: flex-start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer__logo-img {
  max-height: 25px;
  width: auto;
  margin-bottom: 0;
  margin-top: 0;
  display: block;
}

.footer__slogan {
  font-size: 0.82rem;
  color: #7a9e9c;
  line-height: 1.5;
  margin-bottom: 20px;
  margin-top: 6px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(104, 196, 193, 0.1);
  border: 1px solid rgba(104, 196, 193, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer__social-btn:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(104, 196, 193, 0.3);
}

.footer__col {
  flex: 1 1 140px;
}

.footer__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 18px;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__list li {
  font-size: 0.88rem;
}

.footer__list a {
  color: #4a7270;
  text-decoration: none;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
  display: inline-block;
}

.footer__list a:hover {
  color: var(--teal-dark);
  padding-left: 4px;
}

.footer__list--contacts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4a7270;
}

.footer__contact-icon {
  color: var(--teal);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

/* Нижняя полоса */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 0;
  font-size: 0.78rem;
  border-top: 1px solid rgba(104, 196, 193, 0.15);
  margin-top: 0;
}

.footer__copy {
  color: #7a9a98;
}

.footer__legal {
  color: #9ab8b5;
}

@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    gap: 32px;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

/* ── Products Page Hero ── */
.products-hero {
  background: linear-gradient(135deg, #eaf8f7 0%, #f4fafa 100%);
  border-bottom: 1.5px solid rgba(104, 196, 193, 0.15);
  padding: 60px 20px;
}

.products-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.products-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(104, 196, 193, 0.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.products-hero__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.products-hero__title span {
  color: var(--teal);
}

.products-hero__subtitle {
  font-size: 1rem;
  color: #7a9a98;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.products-hero__tags {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.products-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1.5px solid rgba(104, 196, 193, 0.25);
  box-shadow: 0 2px 8px rgba(104, 196, 193, 0.1);
}

.products-hero__tag i {
  font-size: 0.75rem;
  color: var(--teal);
}

.products-page.section {
  padding: 60px 20px 80px;
  background: #f4fafa;
}

.products-page__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.products-page__filters,
.catalog__filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.filter-btn {
  font-size: 0.85rem;
  font-weight: 600;
  color: #5a8280;
  background: #fff;
  border: 1.5px solid rgba(104, 196, 193, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.filter-btn:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.filter-btn--active {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(104, 196, 193, 0.3);
}

.products-page__group {
  margin-bottom: 56px;
}

.products-page__group-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(104, 196, 193, 0.15);
}

.products-page__group-title i {
  color: var(--teal);
  font-size: 1.1rem;
}

.products-page__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .products-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-page__grid {
    grid-template-columns: 1fr;
  }
  .products-hero__tags {
    flex-direction: column;
    align-items: center;
  }
}

/* ── PRODUCT PAGE ── */
.product-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

/* ── TOP SECTION ── */
.product-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}

/* ── GALLERY ── */
.gallery .gallery__main {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 12px;
  border: 1.5px solid rgba(104, 196, 193, 0.12);
}
.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.gallery__thumb {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  background: #eaf8f7;
}
.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.gallery__thumb:hover img {
  transform: scale(1.05);
}
.gallery__thumb:hover,
.gallery__thumb--active {
  border-color: var(--teal);
}

/* Стрелки галереи */
.gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  color: var(--teal-dark);
  font-size: 0.8rem;
  transition: all 0.25s ease;
  z-index: 2;
}
.gallery__nav:hover {
  background: var(--teal);
  color: #fff;
}
.gallery__nav--prev {
  left: 12px;
}
.gallery__nav--next {
  right: 12px;
}

/* ── INFO ── */
.product-info .product-info__category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.product-info__name {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 6px;
}

.product-info__brand {
  font-size: 0.88rem;
  color: #9ab8b5;
  margin-bottom: 20px;
}
.product-info__brand span {
  font-weight: 700;
  color: var(--teal-dark);
}

/* Highlight */
.product-info__highlight {
  background: rgba(104, 196, 193, 0.1);
  border-left: 3px solid var(--teal);
  border-radius: 0 10px 10px 0;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Характеристики */
.product-info__specs {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid rgba(104, 196, 193, 0.15);
  overflow: hidden;
  margin-bottom: 24px;
}
.spec-row {
  display: flex;
  border-bottom: 1px solid rgba(104, 196, 193, 0.1);
}
.spec-row:last-child {
  border-bottom: none;
}
.spec-row__label {
  flex: 0 0 160px;
  padding: 11px 16px;
  font-size: 0.82rem;
  color: #7a9a98;
  font-weight: 500;
  background: rgba(104, 196, 193, 0.04);
  border-right: 1px solid rgba(104, 196, 193, 0.1);
}
.spec-row__value {
  flex: 1;
  padding: 11px 16px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

/* Фасовка */
.product-info__pack {
  font-size: 0.88rem;
  color: #5a7a78;
  margin-bottom: 24px;
}
.product-info__pack strong {
  color: var(--text);
}

/* Кнопка */
.product-info__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.product-info__cta:hover {
  background: var(--teal-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(104, 196, 193, 0.35);
}
.product-info__cta i {
  transition: transform 0.3s ease;
}
.product-info__cta:hover i {
  transform: translateX(3px);
}

/* ── ОПИСАНИЕ И ОСОБЕННОСТИ ── */
.product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.detail-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1.5px solid rgba(104, 196, 193, 0.12);
  box-shadow: 0 2px 12px rgba(104, 196, 193, 0.06);
}

.detail-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.detail-card__title i {
  color: var(--teal);
}

.detail-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.detail-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: #4a6664;
  line-height: 1.5;
}
.detail-card__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 6px;
}

/* ── АККОРДЕОН ── */
.accordion-section {
  margin-bottom: 8px;
}
.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  background: #fff;
  border: 1.5px solid rgba(104, 196, 193, 0.15);
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
  text-align: left;
}
.accordion-btn:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}
.accordion-btn.open {
  border-color: var(--teal);
  border-radius: 12px 12px 0 0;
  border-bottom-color: transparent;
}
.accordion-btn i {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
  color: var(--teal);
}
.accordion-btn.open i {
  transform: rotate(180deg);
}
.accordion-body {
  display: none;
  padding: 20px 24px;
  background: #fff;
  border: 1.5px solid var(--teal);
  border-top: none;
  border-radius: 0 0 12px 12px;
  font-size: 0.88rem;
  color: #4a6664;
  line-height: 1.7;
}
.accordion-body.open {
  display: block;
}

/* ── ПОХОЖИЕ ТОВАРЫ ── */
.related {
  margin-top: 56px;
}
.related__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(104, 196, 193, 0.15);
}
.related__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.related-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(104, 196, 193, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  text-decoration: none;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(104, 196, 193, 0.15);
  border-color: var(--teal);
}
.related-card__img {
  background: #f0f8f8;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.related-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}
.related-card__body {
  padding: 14px 16px;
}
.related-card__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 4px;
}
.related-card__sub {
  font-size: 0.78rem;
  color: #9ab8b5;
}

@media (max-width: 900px) {
  .product-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-details {
    grid-template-columns: 1fr;
  }
  .related__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── LAYOUT ── */
.catalog {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}

/* ── GROUP ── */
.catalog__group {
  margin-bottom: 64px;
}
.catalog__group-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(104, 196, 193, 0.15);
}
.catalog__group-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.catalog__group-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}
.catalog__group-count {
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 600;
  color: #9ab8b5;
  background: rgba(104, 196, 193, 0.08);
  padding: 3px 12px;
  border-radius: 100px;
}

/* ── GRID ── */
.catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .catalog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .catalog__grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════
   О КОМПАНИИ (about.html)
════════════════════════════════════════ */

/* Принудительный шрифт для заголовков */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "SN Pro", sans-serif;
}

/* ── HERO ── */
.about-hero {
  background: #fff;
  border-bottom: 1.5px solid rgba(104, 196, 193, 0.15);
  padding: 64px 20px 56px;
}

.about-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(104, 196, 193, 0.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.about-hero__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.about-hero__title span {
  color: var(--teal);
}

.about-hero__text {
  font-size: 1rem;
  color: #4a6664;
  line-height: 1.75;
  margin-bottom: 32px;
}

.about-hero__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #fff;
  border: 1.5px solid rgba(104, 196, 193, 0.25);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal-dark);
}

.about-badge i {
  color: var(--teal);
  font-size: 0.75rem;
}

.about-hero__card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  border: 1.5px solid rgba(104, 196, 193, 0.15);
  box-shadow: 0 8px 40px rgba(104, 196, 193, 0.12);
}

.about-hero__card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid rgba(104, 196, 193, 0.12);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.about-stat {
  text-align: center;
  padding: 20px 12px;
  background: #f4fafa;
  border-radius: 16px;
  border: 1px solid rgba(104, 196, 193, 0.1);
  transition: all 0.3s ease;
}

.about-stat:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(104, 196, 193, 0.15);
}

.about-stat__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat__label {
  font-size: 0.78rem;
  color: #7a9a98;
  font-weight: 500;
  line-height: 1.4;
}

/* ── ОБЩИЕ ЗАГОЛОВКИ СЕКЦИЙ ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(104, 196, 193, 0.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0;
  text-align: center;
}

.section-title span {
  color: var(--teal);
}

/* ── ЦЕННОСТИ ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1.5px solid rgba(104, 196, 193, 0.1);
  box-shadow: 0 4px 20px rgba(104, 196, 193, 0.07);
  transition: all 0.35s cubic-bezier(0.22, 0.68, 0, 1.2);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(104, 196, 193, 0.18);
  border-color: var(--teal);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(104, 196, 193, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--teal);
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.value-card:hover .value-card__icon {
  background: var(--teal);
  color: #fff;
  transform: rotate(-4deg) scale(1.08);
}

.value-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.value-card__text {
  font-size: 0.88rem;
  color: #5a7573;
  line-height: 1.65;
}

/* ── ИСТОРИЯ ── */
.about-story {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  border: 1.5px solid rgba(104, 196, 193, 0.12);
  box-shadow: 0 4px 20px rgba(104, 196, 193, 0.07);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.story__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 14px;
  display: block;
}

.story__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.story__title span {
  color: var(--teal);
}

.story__text {
  font-size: 0.92rem;
  color: #4a6664;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* ── ТАЙМЛАЙН ── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-item {
  display: flex;
  gap: 20px;
  position: relative;
}

.timeline-item__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.timeline-item__year {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(104, 196, 193, 0.12);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--teal-dark);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-item__year {
  background: var(--teal);
  color: #fff;
}

.timeline-item__line {
  width: 2px;
  flex: 1;
  background: rgba(104, 196, 193, 0.2);
  margin: 4px 0;
  min-height: 24px;
}

.timeline-item:last-child .timeline-item__line {
  display: none;
}

.timeline-item__body {
  padding: 12px 0 28px;
}

.timeline-item__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.timeline-item__text {
  font-size: 0.82rem;
  color: #7a9a98;
  line-height: 1.55;
}

/* ── CTA БЛОК ── */
.about-cta {
  background: #fff;
  border: 1.5px solid rgba(104, 196, 193, 0.2);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 72px;
  box-shadow: 0 8px 32px rgba(104, 196, 193, 0.1);
}

.about-cta__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.about-cta__text {
  font-size: 1rem;
  color: #7a9a98;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.about-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .about-story {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }
}

@media (max-width: 600px) {
  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
  .about-cta {
    padding: 36px 24px;
  }
}

.breadcrumb-bar {
  background: #fff;
  border-bottom: 1px solid rgba(104, 196, 193, 0.12);
  padding: 12px 0;
}
.breadcrumb-bar__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #9ab8b5;
}
.breadcrumb-bar__inner a {
  color: #9ab8b5;
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-bar__inner a:hover {
  color: var(--teal-dark);
}
.breadcrumb-bar__sep {
  font-size: 0.7rem;
  color: #c0d8d6;
}
.breadcrumb-bar__current {
  color: var(--text);
  font-weight: 600;
}

/* ── PAGE LAYOUT ── */
.docs-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

/* ── PAGE HEADER ── */
.docs-header {
  margin-bottom: 40px;
}
.docs-header__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(104, 196, 193, 0.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.docs-header__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.docs-header__title span {
  color: var(--teal);
}
.docs-header__sub {
  font-size: 0.92rem;
  color: #7a9a98;
  line-height: 1.6;
}

/* ── DOCS GRID ── */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* ── DOC CARD ── */
.doc-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid rgba(104, 196, 193, 0.12);
  box-shadow: 0 2px 12px rgba(104, 196, 193, 0.07);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.doc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(104, 196, 193, 0.16);
  border-color: var(--teal);
}

/* Превью документа */
.doc-card__preview {
  position: relative;
  height: 180px;
  background: #f0f8f8;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doc-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}
.doc-card:hover .doc-card__preview img {
  transform: scale(1.03);
}
/* Оверлей при hover */
.doc-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(104, 196, 193, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}
.doc-card:hover .doc-card__overlay {
  opacity: 1;
}
.doc-card__overlay-btn {
  background: #fff;
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 9px 20px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(6px);
  transition: transform 0.3s ease;
}
.doc-card:hover .doc-card__overlay-btn {
  transform: translateY(0);
}

/* Плейсхолдер если нет превью */
.doc-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--teal);
}
.doc-card__placeholder i {
  font-size: 2.8rem;
  opacity: 0.6;
}
.doc-card__placeholder span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted, #9ab8b5);
}

/* Порядковый номер */
.doc-card__num {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 28px;
  height: 28px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* Тело карточки */
.doc-card__body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.doc-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 12px;
}
.doc-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.doc-card__type {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(104, 196, 193, 0.1);
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid rgba(104, 196, 193, 0.2);
}
.doc-card__open {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-dark);
  text-decoration: none;
  transition:
    color 0.2s,
    gap 0.2s;
}
.doc-card__open i {
  font-size: 0.65rem;
  transition: transform 0.2s;
}
.doc-card__open:hover {
  color: var(--teal);
}
.doc-card__open:hover i {
  transform: translateX(3px);
}

/* ── PDF VIEWER ── */
.pdf-viewer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pdf-viewer.open {
  display: flex;
}

.pdf-viewer__box {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 900px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
  animation: pdfIn 0.25s ease both;
}

@keyframes pdfIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.pdf-viewer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(104, 196, 193, 0.15);
  background: #f4fafa;
  flex-shrink: 0;
}
.pdf-viewer__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pdf-viewer__title i {
  color: var(--teal);
}
.pdf-viewer__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pdf-viewer__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all 0.2s;
  text-decoration: none;
}
.pdf-viewer__btn--primary {
  background: var(--teal);
  color: #fff;
}
.pdf-viewer__btn--primary:hover {
  background: var(--teal-dark);
  color: #fff;
}
.pdf-viewer__btn--close {
  background: rgba(224, 92, 92, 0.1);
  color: #e05c5c;
  border: 1px solid rgba(224, 92, 92, 0.2);
}
.pdf-viewer__btn--close:hover {
  background: rgba(224, 92, 92, 0.2);
}

@media (max-width: 767px) {
  .pdf-viewer__btn {
    font-size: 0.75rem;
    padding: 4px 10px;
  }
  .pdf-viewer__header {
    flex-wrap: wrap;
    gap: 8px;
  }
}

.pdf-viewer__frame {
  flex: 1;
  width: 100%;
  border: none;
  background: #eee;
}

/* ── INFO BOX ── */
.docs-info {
  background: #fff;
  border: 1.5px solid rgba(104, 196, 193, 0.15);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.85rem;
  color: #5a7a78;
  line-height: 1.6;
  margin-bottom: 32px;
}
.docs-info i {
  color: var(--teal);
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .docs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .docs-grid {
    grid-template-columns: 1fr;
  }
}

/* ── ФАСОВКА (страница перчатки) ── */
.product-info__pack {
  font-size: 0.88rem;
  color: #5a7a78;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pack-option {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1.5px solid rgba(104, 196, 193, 0.25);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal-dark);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.pack-option:hover {
  border-color: var(--teal);
  background: rgba(104, 196, 193, 0.07);
}

.pack-option--active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

/* ════════════════════════════════════════════
   ОБЩИЕ КОМПОНЕНТЫ СТРАНИЦ
════════════════════════════════════════════ */

/* ── ОБЩИЙ ЛЕЙБЛ СЕКЦИИ (используется на нескольких страницах) ── */
.page-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(104, 196, 193, 0.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* ════════════════════════════════════════════
   СТРАНИЦА БРЕНДЫ (brands.html)
════════════════════════════════════════════ */

.brands-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 52px 20px 80px;
}

.brands-header {
  margin-bottom: 60px;
}
.brands-header__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(104, 196, 193, 0.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.brands-header__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.brands-header__title span {
  color: var(--teal);
}
.brands-header__sub {
  font-size: 0.95rem;
  color: #7a9a98;
  max-width: 100%;
  line-height: 1.65;
}

.brand-block {
  background: #fff;
  border-radius: 24px;
  border: 1.5px solid rgba(104, 196, 193, 0.12);
  box-shadow: 0 4px 24px rgba(104, 196, 193, 0.08);
  overflow: hidden;
  margin-bottom: 32px;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.brand-block:hover {
  box-shadow: 0 12px 40px rgba(104, 196, 193, 0.16);
  border-color: rgba(104, 196, 193, 0.3);
}
.brand-block__inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 320px;
}
.brand-block--reverse .brand-block__inner {
  grid-template-columns: 1fr 340px;
}

.brand-block__logo-panel {
  background: linear-gradient(135deg, #eaf8f7 0%, #f0fbfa 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 36px;
  gap: 20px;
  border-right: 1.5px solid rgba(104, 196, 193, 0.1);
  position: relative;
  overflow: hidden;
}
.brand-block--reverse .brand-block__logo-panel {
  border-right: none;
  border-left: 1.5px solid rgba(104, 196, 193, 0.1);
  order: 2;
}
.brand-block__logo-panel::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(104, 196, 193, 0.06);
  top: -60px;
  right: -60px;
}
.brand-block__logo-panel::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(104, 196, 193, 0.05);
  bottom: -40px;
  left: -40px;
}
.brand-block__logo-img {
  max-width: 180px;
  max-height: 100px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}
.brand-block__logo-text {
  font-size: 2rem;
  font-weight: 900;
  color: var(--teal-dark);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1.1;
}
.brand-block__logo-text sup {
  font-size: 0.5em;
  color: var(--teal);
  vertical-align: super;
}
.brand-block__logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: #fff;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1.5px solid rgba(104, 196, 193, 0.25);
  position: relative;
  z-index: 1;
}
.brand-block__content {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.brand-block__name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.brand-block__desc {
  font-size: 0.92rem;
  color: #4a6664;
  line-height: 1.75;
}

.brand-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.brand-fact {
  background: #f4fafa;
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(104, 196, 193, 0.1);
}
.brand-fact__num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 3px;
}
.brand-fact__label {
  font-size: 0.72rem;
  color: #7a9a98;
  font-weight: 500;
  line-height: 1.3;
}

.brand-ru {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.brand-ru__title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ab8b5;
  margin-bottom: 4px;
}
.brand-ru__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.brand-ru__item {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: rgba(104, 196, 193, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(104, 196, 193, 0.2);
  font-family: "Courier New", monospace;
  letter-spacing: 0.02em;
}

.brand-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.brand-product-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1.5px solid rgba(104, 196, 193, 0.15);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.brand-product-tag:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}
.brand-product-tag i {
  color: var(--teal);
  font-size: 0.7rem;
}

.brand-block__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: rgba(104, 196, 193, 0.1);
  color: var(--teal-dark);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1.5px solid rgba(104, 196, 193, 0.2);
  align-self: flex-start;
}
.brand-block__btn:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.brand-block__btn i {
  font-size: 0.75rem;
  transition: transform 0.25s;
}
.brand-block__btn:hover i {
  transform: translateX(3px);
}

.brand-block__logo-panel--imp {
  background: linear-gradient(135deg, #fde8e4 0%, #f9d5ce 100%);
}

.brand-block__logo-panel--imp::before {
  background: rgba(192, 57, 43, 0.08);
}

.brand-block__logo-panel--imp::after {
  background: rgba(192, 57, 43, 0.06);
}

.brand-block__logo-panel--imp .brand-block__logo-badge {
  color: #c0392b;
  border-color: rgba(192, 57, 43, 0.25);
  background: white;
}

.brand-block__logo-panel--imp .brand-block__logo-badge i {
  color: #c0392b;
}

.brand-block__logo-panel--asv .brand-block__logo-badge {
  color: #4a86d0;
  border-color: rgba(74, 134, 208, 0.25);
  background: rgba(74, 134, 208, 0.08);
}

.brand-block__logo-panel--asv .brand-block__logo-badge i {
  color: #4a86d0;
}

/* ANDROTEX — teal */
.brand-block__logo-panel--androtex .brand-block__logo-badge {
  color: var(--teal-dark);
  border-color: rgba(104, 196, 193, 0.25);
  background: rgba(104, 196, 193, 0.08);
}

.brand-block__logo-panel--androtex .brand-block__logo-badge i {
  color: var(--teal-dark);
}

@media (max-width: 900px) {
  .brand-block__inner,
  .brand-block--reverse .brand-block__inner {
    grid-template-columns: 1fr;
  }
  .brand-block__logo-panel {
    border-right: none;
    border-bottom: 1.5px solid rgba(104, 196, 193, 0.1);
    padding: 36px 24px;
  }
  .brand-block--reverse .brand-block__logo-panel {
    order: 0;
    border-left: none;
    border-bottom: 1.5px solid rgba(104, 196, 193, 0.1);
  }
  .brand-block__content {
    padding: 28px 24px;
  }
}
@media (max-width: 480px) {
  .brand-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ════════════════════════════════════════════
   СТРАНИЦА КОНТАКТЫ (contacts.html)
════════════════════════════════════════════ */

.contacts-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 52px 20px 120px;
}

.contacts-header {
  margin-bottom: 56px;
}
.contacts-header__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(104, 196, 193, 0.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.contacts-header__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.contacts-header__title span {
  color: var(--teal);
}
.contacts-header__text {
  font-size: 0.96rem;
  color: #4a6664;
  line-height: 1.75;
  max-width: 100%;
}

.contacts-prelude {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.prelude-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid rgba(104, 196, 193, 0.15);
  box-shadow: 0 2px 12px rgba(104, 196, 193, 0.07);
  padding: 24px 20px;
  transition: all 0.3s ease;
}

.prelude-item:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(104, 196, 193, 0.15);
  transform: translateY(-3px);
}
.prelude-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(104, 196, 193, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--teal);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.prelude-item:hover .prelude-item__icon {
  background: var(--teal);
  color: #fff;
}
.prelude-item__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.prelude-item__text {
  font-size: 0.82rem;
  color: #7a9a98;
  line-height: 1.55;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  border: 1.5px solid rgba(104, 196, 193, 0.12);
  box-shadow: 0 2px 12px rgba(104, 196, 193, 0.07);
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(104, 196, 193, 0.15);
  border-color: var(--teal);
}
.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(104, 196, 193, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--teal);
  transition: all 0.3s ease;
}
.contact-card:hover .contact-card__icon {
  background: var(--teal);
  color: #fff;
}
.contact-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ab8b5;
  margin-bottom: 2px;
}
.contact-card__value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  text-decoration: none;
}

.contacts-form-section {
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid rgba(104, 196, 193, 0.15);
  box-shadow: 0 4px 20px rgba(104, 196, 193, 0.07);
  overflow: hidden;
  margin-bottom: 40px;
}
.contacts-form-section__header {
  padding: 28px 40px;
  border-bottom: 1.5px solid rgba(104, 196, 193, 0.1);
  background: rgba(104, 196, 193, 0.04);
}
.contacts-form-section__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.contacts-form-section__sub {
  font-size: 0.85rem;
  color: #7a9a98;
}
.contacts-form-section__body {
  padding: 36px 40px;
}

.contacts-map {
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(104, 196, 193, 0.15);
  box-shadow: 0 4px 20px rgba(104, 196, 193, 0.07);
  height: 320px;
  background: #eaf8f7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}

.contacts-map i {
  font-size: 2.5rem;
  color: var(--teal);
  opacity: 0.5;
}
.contacts-map p {
  font-size: 0.88rem;
  color: #9ab8b5;
}

@media (max-width: 900px) {
  .contacts-prelude {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 24px;
  }
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .contacts-form-section__header,
  .contacts-form-section__body {
    padding: 24px;
  }
}
@media (max-width: 600px) {
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }
}

/* ════════════════════════════════════════════
   СТРАНИЦА НОВОСТИ (news.html)
════════════════════════════════════════════ */

.news-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 52px 20px 80px;
}

.news-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 16px;
  flex-wrap: wrap;
}
.news-header__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(104, 196, 193, 0.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.news-header__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}
.news-header__title span {
  color: var(--teal);
}
.news-header__count {
  font-size: 0.88rem;
  color: #9ab8b5;
  padding-bottom: 4px;
  white-space: nowrap;
}

.news-featured {
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid rgba(104, 196, 193, 0.12);
  box-shadow: 0 4px 24px rgba(104, 196, 193, 0.08);
  overflow: hidden;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 360px;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  text-decoration: none;
}
.news-featured:hover {
  box-shadow: 0 12px 40px rgba(104, 196, 193, 0.16);
  border-color: rgba(104, 196, 193, 0.3);
}
.news-featured__img {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eaf8f7, #c8eeec);
}
.news-featured__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-featured:hover .news-featured__img img {
  transform: scale(1.04);
}
.news-featured__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--teal);
  opacity: 0.25;
}
.news-featured__body {
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-featured__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.news-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(104, 196, 193, 0.12);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(104, 196, 193, 0.2);
}
.news-date {
  font-size: 0.8rem;
  color: #9ab8b5;
  display: flex;
  align-items: center;
  gap: 5px;
}
.news-date i {
  font-size: 0.7rem;
  color: var(--teal);
}
.news-featured__title {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.news-featured__text {
  font-size: 0.92rem;
  color: #5a7a78;
  line-height: 1.75;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal-dark);
  text-decoration: none;
  transition:
    gap 0.2s,
    color 0.2s;
}
.news-read-more i {
  font-size: 0.72rem;
  transition: transform 0.2s;
}
.news-read-more:hover {
  color: var(--teal);
}
.news-read-more:hover i {
  transform: translateX(3px);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.news-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(104, 196, 193, 0.1);
  box-shadow: 0 2px 12px rgba(104, 196, 193, 0.06);
  transition:
    transform 0.3s cubic-bezier(0.22, 0.68, 0, 1.2),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(104, 196, 193, 0.15);
  border-color: var(--teal);
}
.news-card__img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #eaf8f7, #c8eeec);
  flex-shrink: 0;
}
.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card:hover .news-card__img img {
  transform: scale(1.06);
}
.news-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--teal);
  opacity: 0.25;
}
.news-card__body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.news-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__text {
  font-size: 0.84rem;
  color: #7a9a98;
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card__footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(104, 196, 193, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-dark);
  text-decoration: none;
  transition:
    gap 0.2s,
    color 0.2s;
}
.news-card__link i {
  font-size: 0.65rem;
  transition: transform 0.2s;
}
.news-card__link:hover {
  color: var(--teal);
}
.news-card__link:hover i {
  transform: translateX(2px);
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.page-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid rgba(104, 196, 193, 0.2);
  background: #fff;
  color: #7a9a98;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
}
.page-btn:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}
.page-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.page-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.news-empty {
  text-align: center;
  padding: 80px 20px;
  color: #9ab8b5;
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid rgba(104, 196, 193, 0.1);
}
.news-empty i {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
  opacity: 0.3;
}
.news-empty p {
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .news-featured {
    grid-template-columns: 1fr;
  }
  .news-featured__img {
    height: 240px;
  }
  .news-featured__body {
    padding: 28px 24px;
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════
   СТРАНИЦА ПРОВЕРКИ ОРИГИНАЛЬНОСТИ (originals.html)
════════════════════════════════════════════ */

.originals-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 52px 20px 80px;
}

.originals-header {
  margin-bottom: 48px;
}
.originals-header__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(104, 196, 193, 0.12);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.originals-header__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.originals-header__title span {
  color: var(--teal);
}
.originals-header__sub {
  font-size: 0.95rem;
  color: #7a9a98;
  max-width: 100%;
  line-height: 1.65;
}

.originals-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.check-panel {
  background: #fff;
  border-radius: 20px;
  border: 1.5px solid rgba(104, 196, 193, 0.15);
  box-shadow: 0 4px 24px rgba(104, 196, 193, 0.09);
  overflow: hidden;
}
.check-panel__header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(104, 196, 193, 0.1);
  background: rgba(104, 196, 193, 0.04);
}
.check-panel__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-panel__title i {
  color: var(--teal);
}
.check-panel__sub {
  font-size: 0.8rem;
  color: #9ab8b5;
}
.check-panel__body {
  padding: 28px;
}

.code-input-wrap {
  position: relative;
  margin-bottom: 16px;
}
.code-input {
  width: 100%;
  background: #f8fdfd;
  border: 2px solid rgba(104, 196, 193, 0.25);
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  font-family: "Courier New", monospace;
  letter-spacing: 0.15em;
  text-align: center;
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.code-input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(104, 196, 193, 0.12);
  background: #fff;
}
.code-input::placeholder {
  color: #c0d8d6;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}
.code-counter {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-size: 0.72rem;
  color: #9ab8b5;
  font-family: inherit;
  pointer-events: none;
}
.code-counter.ready {
  color: var(--teal-dark);
  font-weight: 700;
}

.check-btn {
  width: 100%;
  padding: 14px;
  background: var(--teal);
  color: #fff;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.02em;
}
.check-btn:disabled {
  background: rgba(104, 196, 193, 0.3);
  color: rgba(255, 255, 255, 0.7);
  cursor: not-allowed;
}
.check-btn:not(:disabled):hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(104, 196, 193, 0.3);
}
.check-btn .spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.check-result {
  margin-top: 20px;
  border-radius: 14px;
  padding: 18px 20px;
  display: none;
  animation: resultIn 0.35s cubic-bezier(0.22, 0.68, 0, 1.2) both;
}
@keyframes resultIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.check-result.show {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.check-result--success {
  background: rgba(92, 196, 120, 0.08);
  border: 1.5px solid rgba(92, 196, 120, 0.25);
}
.check-result--success .result-icon {
  color: #3aaa5c;
}
.check-result--success .result-title {
  color: #2a8a3c;
}
.check-result--warning {
  background: rgba(224, 168, 92, 0.08);
  border: 1.5px solid rgba(224, 168, 92, 0.25);
}
.check-result--warning .result-icon {
  color: #c88a2a;
}
.check-result--warning .result-title {
  color: #a06010;
}
.check-result--danger {
  background: rgba(224, 92, 92, 0.08);
  border: 1.5px solid rgba(224, 92, 92, 0.3);
}
.check-result--danger .result-icon {
  color: #e05c5c;
}
.check-result--danger .result-title {
  color: #c03030;
}
.result-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.result-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.result-text {
  font-size: 0.82rem;
  color: #5a7a78;
  line-height: 1.55;
}
.result-text--danger {
  color: #8a3030;
}

.block-notice {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(224, 92, 92, 0.07);
  border: 1.5px solid rgba(224, 92, 92, 0.2);
  border-radius: 10px;
  font-size: 0.8rem;
  color: #a03030;
  display: none;
  align-items: center;
  gap: 8px;
}
.block-notice.show {
  display: flex;
}

.instructions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.instruction-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid rgba(104, 196, 193, 0.1);
  box-shadow: 0 2px 12px rgba(104, 196, 193, 0.06);
  padding: 22px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.instruction-card:hover {
  border-color: rgba(104, 196, 193, 0.3);
  box-shadow: 0 6px 20px rgba(104, 196, 193, 0.12);
}
.instruction-card__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(104, 196, 193, 0.12);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--teal-dark);
  flex-shrink: 0;
  transition: all 0.25s;
}
.instruction-card:hover .instruction-card__num {
  background: var(--teal);
  color: #fff;
}
.instruction-card__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.instruction-card__text {
  font-size: 0.82rem;
  color: #7a9a98;
  line-height: 1.55;
}

.status-legend {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid rgba(104, 196, 193, 0.1);
  padding: 20px 24px;
}
.status-legend__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ab8b5;
  margin-bottom: 14px;
}
.status-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(104, 196, 193, 0.07);
  font-size: 0.83rem;
}
.status-item:last-child {
  border-bottom: none;
}
.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot--success {
  background: #3aaa5c;
}
.status-dot--warning {
  background: #e0a85c;
}
.status-dot--danger {
  background: #e05c5c;
}
.status-item__label {
  font-weight: 600;
  color: var(--text);
  min-width: 140px;
}
.status-item__desc {
  color: #9ab8b5;
  font-size: 0.78rem;
}

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

/* ════════════════════════════════════════════
   СТРАНИЦА КАТАЛОГА (products.html)
════════════════════════════════════════════ */

.catalog-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 0px;
}

.catalog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.catalog-header__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(104, 196, 193, 0.1);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.catalog-header__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}
.catalog-header__title span {
  color: var(--teal);
}
.catalog-header__count {
  font-size: 0.88rem;
  color: #7a9a98;
  padding-bottom: 4px;
}
.catalog-header__count strong {
  color: var(--text);
  font-weight: 700;
}

.glove-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.glove-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid rgba(104, 196, 193, 0.1);
  box-shadow: 0 2px 10px rgba(104, 196, 193, 0.06);
  transition:
    transform 0.3s cubic-bezier(0.22, 0.68, 0, 1.2),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}
.glove-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(104, 196, 193, 0.16);
  border-color: var(--teal);
}
.glove-card[data-hidden="true"] {
  display: none;
}

.glove-card__img-wrap {
  position: relative;
  background: #fff;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glove-card__badges {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  z-index: 2;
}

.glove-card__badge-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 6px;
  border-radius: 100px;
  font-size: 0.62rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  color: var(--text);
  border: 1px solid rgba(104, 196, 193, 0.2);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  opacity: 0.75;
}

.glove-card__badge-item i {
  color: var(--teal);
  font-size: 0.55rem;
}
.glove-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.glove-card__img[data-pos] {
  object-position: var(--pos);
  transform: scale(var(--scale, 1));
  transform-origin: center;
}

.glove-card:hover .glove-card__img {
  transform: scale(1.06);
}

.glove-card__diag {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 100px;
  background: rgba(104, 196, 193, 0.12);
  color: var(--teal-dark);
  border: 1px solid rgba(104, 196, 193, 0.2);
}
.glove-card__badges {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  z-index: 2;
}
.glove-card__badge--hit {
  background: #1a1a1a;
}
.glove-card__badge--new {
  background: var(--teal);
}

.glove-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(104, 196, 193, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  backdrop-filter: blur(2px);
}
.glove-card:hover .glove-card__overlay {
  opacity: 1;
}
.glove-card__overlay-btn {
  background: #fff;
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 7px 16px;
  border-radius: 100px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transform: translateY(5px);
  transition: transform 0.25s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.glove-card:hover .glove-card__overlay-btn {
  transform: translateY(0);
}

.glove-card__body {
  padding: 12px 14px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.glove-card__brand-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
}

.glove-card__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  flex: 1;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.glove-card__specs {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.glove-card__spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  color: #7a9a98;
}
.glove-card__spec i {
  color: var(--teal);
  font-size: 0.6rem;
  width: 10px;
  flex-shrink: 0;
}
.glove-card__color {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.74rem;
  color: #7a9a98;
}
.color-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
.glove-card__footer {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(104, 196, 193, 0.08);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.glove-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--teal-dark);
  text-decoration: none;
  transition:
    gap 0.2s,
    color 0.2s;
}
.glove-card__link i {
  font-size: 0.6rem;
  transition: transform 0.2s;
}
.glove-card__link:hover {
  color: var(--teal);
}
.glove-card__link:hover i {
  transform: translateX(2px);
}

.glove-card__logo {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 4px 8px;
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

.glove-card__logo img {
  height: 24px;
  width: auto;
  object-fit: contain;
  display: block;
}

.glove-card__logo img[alt="ANDROTEX"] {
  height: 10px;
  opacity: 0.75;
}

.glove-card__logo img[alt="ASV"] {
  height: 40px;
  opacity: 0.75;
}

.glove-card__logo img[alt="IMP"] {
  height: 36px;
  opacity: 0.75;
}

.glove-card__ru {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: rgba(104, 196, 193, 0.1);
  padding: 3px 8px;
  border-radius: 100px;
  width: fit-content;
}

.catalog-empty {
  display: none;
  text-align: center;
  padding: 60px 20px;
  color: #9ab8b5;
  grid-column: 1/-1;
}
.catalog-empty i {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
  opacity: 0.4;
}

.contact.section.contact--plain {
  background-image: url("/assets/images/Wave2.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-left: 0;
  padding-right: 0;
  margin-top: 48px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  width: 100vw;
  overflow: hidden;
}
.contact.section.contact--plain::before {
  display: none;
}

.contact--plain .contact__wrapper {
  border-radius: 20px;
  padding: 40px;
}

/* ── ПАРТНЁРЫ ── */
.partners-section {
  margin-bottom: 40px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.partner-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid rgba(104, 196, 193, 0.15);
  box-shadow: 0 2px 12px rgba(104, 196, 193, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  transition: all 0.3s ease;
}

.partner-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(104, 196, 193, 0.15);
  transform: translateY(-3px);
}

.partner-card img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  transition: filter 0.3s ease;
}

.partner-card:hover img {
  filter: grayscale(0%);
}

a.dir-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.product-card {
  text-decoration: none;
  color: inherit;
}

a.product-card .product-card__title {
  text-align: center;
  text-decoration: none;
}

.products__grid .product-card__img-wrap {
  aspect-ratio: 4 / 3;
}

.products__grid .product-card__body {
  padding: 14px 20px;
}

.product-card__brand-label {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  padding: 3px 10px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

/* ── SIDEBAR LAYOUT ── */
.catalog-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
}

.catalog-wide {
  max-width: 1400px;
  margin: 0 auto;
}

.catalog-sidebar {
  background: #f8fdfd;
  border: 1.5px solid rgba(104, 196, 193, 0.12);
  border-radius: 16px;
  padding: 20px;
  position: sticky;
  top: 20px;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid rgba(104, 196, 193, 0.15);
}

.sidebar-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 7px;
}

.sidebar-title i {
  color: var(--teal);
}

.sidebar-reset {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
  background: transparent;
  border: 1.5px solid rgba(104, 196, 193, 0.18);
  font-size: 0.75rem;
  font-weight: 600;
  color: #9ab8b5;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.sidebar-reset:hover {
  color: var(--teal-dark);
  border-color: var(--teal);
}

.sidebar-section {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(104, 196, 193, 0.1);
}

.sidebar-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-section__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ab8b5;
  margin-bottom: 10px;
}

.sidebar-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.catalog-content {
  min-width: 0;
}

.mobile-filter-btn {
  display: none;
}

.sidebar-overlay {
  display: none;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 0 16px;
}

.filter-group:first-child {
  padding-left: 0;
}

.filter-sep {
  width: 1px;
  height: 24px;
  background: rgba(104, 196, 193, 0.25);
  flex-shrink: 0;
}

.filter-chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  align-items: center;
}

.filters-expanded__row .filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1.5px solid rgba(104, 196, 193, 0.22);
  background: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  color: #5a7a78;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.chip:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}

.chip.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.chip__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.chip__dot--half {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.chip__dot--half::before,
.chip__dot--half::after {
  content: "";
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
}

.chip__dot--half::before {
  left: 0;
  background: var(--c1);
}

.chip__dot--half::after {
  right: 0;
  background: var(--c2);
}

.chip:not(.active) .chip__dot--androtex {
  background: var(--teal);
}
.chip:not(.active) .chip__dot--asv {
  background: #5a9cf0;
}
.chip:not(.active) .chip__dot--imp {
  background: #e07c5a;
}
.chip.active .chip__dot--androtex,
.chip.active .chip__dot--asv,
.chip.active .chip__dot--imp {
  background: #fff;
}

.chip-reset {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 100px;
  background: transparent;
  border: 1.5px solid rgba(104, 196, 193, 0.18);
  font-size: 0.78rem;
  font-weight: 600;
  color: #9ab8b5;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}

.chip-reset:hover {
  color: var(--teal-dark);
  border-color: var(--teal);
}

.filters-main {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.filters-main::-webkit-scrollbar {
  display: none;
}

.filters-main__right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding-left: 16px;
  flex-shrink: 0;
}

.filter-group--feature {
  padding: 4px 16px 0;
}

.filter-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 100px;
  background: transparent;
  border: 1.5px solid rgba(104, 196, 193, 0.3);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-dark);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
}

.filter-expand-btn:hover {
  background: rgba(104, 196, 193, 0.08);
  border-color: var(--teal);
}

.filter-expand-btn.open {
  background: rgba(104, 196, 193, 0.1);
  border-color: var(--teal);
}

.filter-expand-btn__arrow {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}

.filter-expand-btn.open .filter-expand-btn__arrow {
  transform: rotate(180deg);
}

.filters-expanded {
  display: none;
  border-top: 1px solid rgba(104, 196, 193, 0.12);
  padding-top: 12px;
  margin-top: 12px;
  animation: expandIn 0.2s ease both;
  padding-left: 0;
  margin-left: 0;
}

.filters-expanded.open {
  display: block;
}

@keyframes expandIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.filters-expanded__row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: wrap;
  row-gap: 6px;
}

.filters-expanded__row .filter-label {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  margin-right: 4px;
  padding-top: 0;
  margin-top: 7px;
}

.catalog-hero {
  background: #fff;
  border-bottom: 1.5px solid rgba(104, 196, 193, 0.15);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}

.catalog-hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(104, 196, 193, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.catalog-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.catalog-hero__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(104, 196, 193, 0.12);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.catalog-hero__title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.catalog-hero__title span {
  color: var(--teal);
}

.catalog-hero__sub {
  font-size: 0.95rem;
  color: #7a9a98;
  max-width: 100%;
  line-height: 1.6;
}

/* ── СЕТКА КАТЕГОРИЙ ── */
.catalog-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.catalog-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 16px;
  flex-wrap: wrap;
}

.catalog-section__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalog-section__title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--teal);
  border-radius: 2px;
}

.catalog-section__count {
  font-size: 0.82rem;
  color: #9ab8b5;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── КАРТОЧКА КАТЕГОРИИ (активная) ── */
.cat-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(104, 196, 193, 0.12);
  box-shadow: 0 4px 20px rgba(104, 196, 193, 0.08);
  transition:
    transform 0.35s cubic-bezier(0.22, 0.68, 0, 1.2),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  background: #fff;
  cursor: pointer;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(104, 196, 193, 0.2);
  border-color: var(--teal);
  text-decoration: none;
}

.cat-card__img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #eaf8f7, #c8eeec);
}

.cat-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}

.cat-card:hover .cat-card__img-wrap img {
  transform: scale(1.06);
}

.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(31, 45, 43, 0.35) 0%,
    transparent 60%
  );
  transition: background 0.35s ease;
}

.cat-card:hover .cat-card__overlay {
  background: linear-gradient(
    to top,
    rgba(31, 45, 43, 0.45) 0%,
    transparent 60%
  );
}

.cat-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-dark);
  border: 1px solid rgba(104, 196, 193, 0.2);
}

.cat-card__count {
  position: absolute;
  bottom: 10px;
  left: 14px;
  background: var(--teal);
  color: #fff;
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 700;
}

.cat-card__body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cat-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin: 0;
}

.cat-card__desc {
  font-size: 0.82rem;
  color: #7a9a98;
  line-height: 1.6;
  flex: 1;
}

.cat-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-top: 8px;
  transition:
    gap 0.2s,
    color 0.2s;
}

.cat-card__link i {
  font-size: 0.65rem;
  transition: transform 0.2s;
}

.cat-card:hover .cat-card__link {
  color: var(--teal);
  gap: 10px;
}

.cat-card:hover .cat-card__link i {
  transform: translateX(3px);
}

/* ── КАРТОЧКА КАТЕГОРИИ (недоступная / нуар) ── */
.cat-card--locked {
  cursor: default;
  border-color: rgba(104, 196, 193, 0.08);
}

.cat-card--locked:hover {
  transform: none;
  box-shadow: 0 4px 20px rgba(104, 196, 193, 0.06);
  border-color: rgba(104, 196, 193, 0.1);
}

.cat-card--locked .cat-card__img-wrap img {
  filter: grayscale(85%) brightness(0.7);
}

.cat-card--locked:hover .cat-card__img-wrap img {
  transform: none;
  filter: grayscale(85%) brightness(0.7);
}

.cat-card--locked .cat-card__overlay {
  background: linear-gradient(
    to top,
    rgba(15, 25, 24, 0.7) 0%,
    rgba(15, 25, 24, 0.25) 100%
  );
}

.cat-card__lock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

.cat-card--locked .cat-card__badge {
  background: rgba(30, 40, 40, 0.7);
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.cat-card--locked .cat-card__title {
  color: #9ab8b5;
}

.cat-card--locked .cat-card__desc {
  color: #b0c8c6;
}

.cat-card__soon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #9ab8b5;
  margin-top: 8px;
  font-style: italic;
}

/* ── INFO BANNER ── */
.catalog-info {
  background: rgba(104, 196, 193, 0.06);
  border: 1.5px solid rgba(104, 196, 193, 0.15);
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  font-size: 0.88rem;
  color: #5a7a78;
  line-height: 1.6;
}

.catalog-info i {
  color: var(--teal);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── STATS STRIP ── */
.catalog-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1.5px solid rgba(104, 196, 193, 0.12);
}

.catalog-stat {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid rgba(104, 196, 193, 0.1);
  transition: all 0.3s ease;
}

.catalog-stat:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(104, 196, 193, 0.15);
}

.catalog-stat__num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}

.catalog-stat__label {
  font-size: 0.78rem;
  color: #7a9a98;
  font-weight: 500;
}

.nav-close {
  display: none;
}

.about-hero__label,
.docs-header__label,
.brands-header__label,
.contacts-header__label,
.news-header__label,
.originals-header__label,
.catalog-hero__label,
.section-label,
.products__label,
.directions__label,
.contact__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(104, 196, 193, 0.12);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

#imp .brand-fact__num {
  color: #c0392b;
}

#imp .brand-ru__item {
  color: #c0392b;
  background: rgba(192, 57, 43, 0.08);
  border-color: rgba(192, 57, 43, 0.2);
}

#imp .brand-ru__title {
  color: rgba(192, 57, 43, 0.6);
}

#imp .brand-block__btn {
  color: #c0392b;
  border-color: rgba(192, 57, 43, 0.25);
  background: rgba(192, 57, 43, 0.06);
}

#imp .brand-block__btn:hover {
  background: #c0392b;
  color: #fff;
  border-color: #c0392b;
}

#imp .brand-fact {
  background: rgba(192, 57, 43, 0.06);
  border-color: rgba(192, 57, 43, 0.15);
}

#imp .brand-fact:hover {
  border-color: rgba(192, 57, 43, 0.3);
}

@media (max-width: 900px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }
  .catalog-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1200px) {
  .glove-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 900px) {
  .glove-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 640px) {
  .glove-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* БУРГЕР-КНОПКА — скрыта на десктопе */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.burger.open .burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open .burger__line:nth-child(2) {
  opacity: 0;
}
.burger.open .burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── ПЛАНШЕТ (max 1024px) ── */
@media (max-width: 1024px) {
  /* Шапка */
  .header .container {
    padding: 12px 20px;
  }

  .header__logo img {
    width: 130px;
  }

  /* Навигация */
  .header__nav ul.nav {
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
  }

  .header__nav {
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav-item.separator {
    display: none;
  }

  /* Главная — hero */
  .hero__container {
    flex-direction: column;
    gap: 32px;
    padding: 40px 20px;
  }

  .hero__content-right {
    flex: 0 0 auto;
    width: 100%;
  }

  .products__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  /* About */
  .about-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Бренды */
  .brand-block__inner {
    grid-template-columns: 280px 1fr;
  }

  /* Каталог */
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Документы */
  .docs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Продукция — страница продукта */
  .product-top {
    gap: 36px;
  }

  /* Оригинальность */
  .originals-layout {
    gap: 24px;
  }
}

/* ── МОБИЛЬ (max 768px) ── */
@media (max-width: 1024px) {
  /* ─ ШАПКА ─ */
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
  }

  header.header {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .header__contact {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mob-toggle-zone {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    cursor: pointer;
    color: #9ab8b5;
    font-size: 0.7rem;
    flex-shrink: 0;
  }

  .mob-toggle-zone:hover {
    color: var(--teal);
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100vw;
    bottom: 0;
    width: 300px;
    background: #fff;
    z-index: 999;
    padding: 0;
    overflow-y: auto;
    box-shadow: -4px 0 32px rgba(0, 0, 0, 0.12);
    transition: right 0.35s cubic-bezier(0.22, 0.68, 0, 1.2);
    display: block !important;
    visibility: hidden;
  }

  .header__nav.open {
    right: 0;
    visibility: visible;
  }

  /* Оверлей */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 998;
    backdrop-filter: blur(2px);
    transition: opacity 0.3s ease;
    opacity: 0;
  }

  .nav-overlay.open {
    display: block;
    opacity: 1;
  }

  /* Кнопка закрытия */
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding: 12px 20px;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text);
    cursor: pointer;
    border-bottom: 1px solid rgba(104, 196, 193, 0.12);
  }

  .nav-close:hover {
    color: var(--teal);
  }

  /* Список пунктов меню */
  .header__nav ul.nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 40px;
    gap: 0;
    width: 100%;
  }

  .header__nav .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(104, 196, 193, 0.1);
    box-sizing: border-box;
  }

  .header__nav .nav-item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    width: 100%;
    box-sizing: border-box;
  }

  .header__nav .nav-item > a:hover {
    color: var(--teal);
  }

  .header__nav .nav-item > a,
  .header__nav .dropdown__item > a {
    flex: 1;
  }

  .header__nav .nav-item.separator {
    display: none;
  }

  .header__nav .dropdown,
  .header__nav .dropdown--sub {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    min-width: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    box-sizing: border-box !important;
  }

  /* Дропдаун первого уровня */
  .header__nav .dropdown {
    display: block;
    box-shadow: none !important;
    border: none !important;
    background: rgba(104, 196, 193, 0.05) !important;
    border-radius: 0 !important;
    padding: 0 !important;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease;
  }

  .header__nav .mob-open > .dropdown {
    opacity: 1;
    max-height: 2000px;
    overflow: hidden;
  }

  .header__nav .dropdown__item,
  .header__nav .dropdown__item--has-sub,
  .header__nav ul li {
    position: static !important;
    flex-direction: column !important;
    align-items: stretch !important;
  }

  /* Пункты дропдауна первого уровня */
  .header__nav .dropdown > .dropdown__item > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px 12px 28px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--teal-dark);
    border-bottom: 1px solid rgba(104, 196, 193, 0.08);
    width: 100%;
    box-sizing: border-box;
    white-space: normal;
    min-width: 0;
  }

  .header__nav .dropdown > .dropdown__item:last-child > a {
    border-bottom: none;
  }

  .header__nav .dropdown--sub {
    background: rgba(104, 196, 193, 0.06) !important;
    border-radius: 0 !important;
  }

  .header__nav .dropdown--sub > .dropdown__item:last-child > a {
    border-bottom: none;
  }

  .header__nav .dropdown--sub .dropdown--sub {
    background: rgba(104, 196, 193, 0.04) !important;
  }

  .header__nav .dropdown--sub .dropdown--sub .dropdown__item a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: #9ab8b5;
    width: 100%;
    box-sizing: border-box;
    white-space: normal;
    min-width: 0;
  }

  .header__nav .dropdown__item--soon a {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-start !important;

    .header__nav .dropdown__arrow,
    .header__nav .nav-arrow {
      transition: transform 0.25s ease;
      font-size: 0.6rem;
      color: #9ab8b5;
      flex-shrink: 0;
    }
  }

  .header__nav .mob-open > a .dropdown__arrow,
  .header__nav .mob-open > a .nav-arrow {
    transform: rotate(90deg);
    color: var(--teal);
  }

  .breadcrumb-bar__inner {
    font-size: 0.75rem;
    padding: 0 16px;
  }

  .hero__container {
    flex-direction: column;
    padding: 32px 16px;
    gap: 28px;
    align-items: stretch;
  }

  .hero__title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .hero__content-right {
    flex: 1 1 100%;
    width: 100%;
    max-width: 100%;
  }

  .news-panel {
    padding: 20px;
  }

  .products__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 8px 16px 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

  @keyframes scrollHint {
    0% {
      transform: translateX(0);
    }
    40% {
      transform: translateX(-40px);
    }
    100% {
      transform: translateX(0);
    }
  }

  .products__grid::-webkit-scrollbar {
    display: none;
  }

  .products__grid .product-card {
    flex: 0 0 85vw;
    max-width: 300px;
    scroll-snap-align: center;
  }

  .products.section .container {
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }

  .products.section {
    padding-left: 0;
    padding-right: 0;
  }

  .products__header {
    padding: 0 20px;
  }

  .directions__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .directions__grid .direction-card {
    flex: unset;
    max-width: unset;
    scroll-snap-align: unset;
  }
  .dir-card__desc {
    max-height: 300px !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  .stat {
    padding: 20px 12px;
  }

  .contact.section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .contact__inner {
    width: 100%;
    max-width: 100%;
    padding: 0;
    align-items: stretch;
  }

  .catalog-hero {
    padding: 32px 0 28px;
  }

  .cat-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cat-card__img-wrap {
    height: 200px;
  }

  .catalog-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 36px;
  }

  .catalog-info {
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    font-size: 0.82rem;
  }

  .catalog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .catalog-filters {
    border-radius: 10px;
    padding: 10px 12px;
  }

  .glove-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .glove-card__img-wrap {
    height: 160px;
  }

  .glove-card__name {
    font-size: 0.78rem;
  }

  /* Пагинация */
  .pagination {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* ─ СТРАНИЦА ПРОДУКТА (gloves1) ─ */
  .product-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gallery__thumbs {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .product-details {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-accordion {
    margin-top: 24px;
  }

  /* ─ О КОМПАНИИ ─ */
  .about-hero {
    padding: 40px 0;
  }

  .about-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 16px;
  }

  .about-hero__card {
    padding: 28px 20px;
  }

  .story__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .value-card {
    padding: 24px 20px;
  }

  /* ─ БРЕНДЫ ─ */
  .brands-header {
    padding: 0 0 28px;
  }

  .brands-page {
    padding: 40px 16px 60px;
  }

  .brand-block__inner {
    grid-template-columns: 1fr !important;
  }

  .brand-block--reverse .brand-block__inner {
    grid-template-columns: 1fr !important;
  }

  .brand-block__logo-panel {
    padding: 36px 24px;
    border-right: none !important;
    border-left: none !important;
    border-bottom: 1.5px solid rgba(104, 196, 193, 0.1);
  }

  .brand-block--reverse .brand-block__logo-panel {
    order: 0;
  }

  .brand-block__content {
    padding: 28px 20px;
  }

  .brand-facts {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .brand-fact {
    padding: 16px 10px;
  }

  .brand-fact__num {
    font-size: 1.4rem;
  }

  /* ─ ДОКУМЕНТАЦИЯ ─ */
  .docs-page {
    padding: 32px 16px 60px;
  }

  .docs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* ─ НОВОСТИ ─ */
  .news-page {
    padding: 32px 16px 60px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ─ ПРОВЕРКА ОРИГИНАЛЬНОСТИ ─ */
  .originals-page {
    padding: 32px 16px 60px;
  }

  .originals-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* ─ КОНТАКТЫ ─ */
  .contacts-page {
    padding: 32px 16px 60px;
  }

  .contact__wrapper {
    flex-direction: column;
    width: 100%;
  }

  .contact__info {
    flex: 1 1 100%;
    width: 100%;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    border-radius: 16px;
  }

  .contact__form-wrap {
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    padding: 24px 16px;
    border-radius: 16px;
    margin-top: 16px;
  }

  .contact--plain .contact__wrapper {
    padding: 16px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  /* ─ СТРАНИЦЫ НАПРАВЛЕНИЙ ─ */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-cta {
    padding: 36px 20px;
    border-radius: 20px;
  }

  .about-cta__title {
    font-size: 1.2rem;
  }

  .about-cta__btns {
    flex-direction: column;
    gap: 12px;
  }

  .about-cta__btns .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* ─ ПАРТНЁРЫ ─ */
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  /* ─ ПОДВАЛ ─ */
  .footer__inner {
    padding: 40px 16px 0;
  }

  .footer__top {
    text-align: center;
  }

  .footer__col {
    width: 100%;
  }

  .footer__brand {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .footer__list--contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer__list--contacts li {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    padding: 16px 0;
    font-size: 0.75rem;
  }

  /* ─ ОБЩИЕ ─ */
  .section-header {
    margin-bottom: 24px;
  }

  .section-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  .catalog-section {
    padding: 32px 16px 60px;
  }

  .about-cta {
    margin: 0 16px;
  }
}

/* ── МАЛЕНЬКИЙ МОБИЛЬ (max 480px) ── */
@media (max-width: 480px) {
  /* Шапка */
  .header__logo img {
    width: 140px;
  }

  /* Карточки перчаток — 1 в ряд */
  .glove-grid {
    grid-template-columns: 1fr;
  }

  /* Карточки брендов в каталоге */
  .cat-grid {
    grid-template-columns: 1fr;
  }

  /* Документы */
  .docs-grid {
    grid-template-columns: 1fr;
  }

  /* Партнёры */
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Бренды — факты */
  .brand-facts {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  /* Фасовка */
  .product-info__pack {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Каталог статистика */
  .catalog-stats {
    grid-template-columns: 1fr 1fr;
  }

  /* Hero */
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  html {
    overflow-x: hidden;
  }
}

@media (max-width: 1024px) {
  .nav-active {
    color: var(--teal) !important;
    font-weight: 600;
  }
}

/* ── SIDEBAR МОБИЛЬНАЯ АДАПТАЦИЯ ── */
@media (max-width: 900px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    border-radius: 0 16px 16px 0;
    transition: left 0.35s cubic-bezier(0.22, 0.68, 0, 1.2);
    padding: 24px 20px;
    visibility: hidden;
  }

  .catalog-sidebar.open {
    left: 0;
    visibility: visible;
  }

  .sidebar-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .sidebar-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    background: #fff;
    border: 1.5px solid rgba(104, 196, 193, 0.3);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--teal-dark);
    cursor: pointer;
    font-family: inherit;
    margin-bottom: 20px;
    position: relative;
  }

  .mobile-filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--teal);
    color: #fff;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
  }

  .glove-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .glove-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}
