/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* Top bar — фиксированная полоса: адрес, email, телефон */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  padding: 0.5rem 2rem;
  background: #000;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
}
.top-bar a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.top-bar a:hover {
  color: #ffc107;
}
.top-bar__social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.top-bar__social .footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
}
.top-bar__social .footer__icon {
  color: #ffc107;
  flex-shrink: 0;
}
.top-bar__right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.top-bar__phone {
  white-space: nowrap;
  font-weight: 500;
}

/* Transparent header — вторая строка, поверх hero */
.header {
  position: fixed;
  top: 33px;
  left: 0;
  right: 0;
  z-index: 100;
  background: #000;
  transition: background 0.3s, top 0.2s;
}
.header.scrolled,
.header:hover {
  background: rgba(0, 0, 0, 0.95);
}
.logo {
  display: block;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
}
.logo__icon {
  width: 150px;
  height: auto;
  vertical-align: middle;
  display: block;
  object-fit: contain;
}
.logo__my {
  color: #ffc107;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.nav a {
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.nav a:hover {
  color: #ffc107;
}
.nav__item {
  position: relative;
}
.nav__item > a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__caret {
  font-size: 0.6em;
  opacity: 0.9;
}
.nav__divider {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
}

/* Mega menu — EQUIPMENT */
.mega-menu {
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  padding: 1.5rem 2rem 2rem;
  padding-top: calc(1.5rem + 12px);
  background: #0a0a0a;
  border-radius: 0;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 200;
  pointer-events: none;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
}
.mega-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}
/* EQUIPMENT: открывается по клику (модалка), не по наведению */
/* .nav__item--equipment:hover .mega-menu — отключено */
.mega-menu__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0.5rem;
}
.mega-menu__title {
  margin: 0 0 0.35em;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}
.mega-menu__subtitle {
  margin: 0 0 1.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}
.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.mega-menu__card {
  display: block;
  background: #fff;
  border: 2px solid #ffc107;
  border-radius: 10px;
  padding: 0.75rem;
  text-decoration: none;
  color: #1a1a1a;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.mega-menu__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.2);
}
.mega-menu__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  background: #ffc107;
  color: #1a1a1a;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.mega-menu__img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  background: #e8e8e8;
  margin-bottom: 0.6rem;
}
.mega-menu__img--1,
.mega-menu__img--2,
.mega-menu__img--3,
.mega-menu__img--4,
.mega-menu__img--5,
.mega-menu__img--6,
.mega-menu__img--7,
.mega-menu__img--8,
.mega-menu__img--9,
.mega-menu__img--10,
.mega-menu__img--11,
.mega-menu__img--12,
.mega-menu__img--13,
.mega-menu__img--14,
.mega-menu__img--15 {
  background: #e5e7eb;
}
.mega-menu__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: #1a1a1a;
}
@media (max-width: 960px) {
  .mega-menu__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .nav .mega-menu {
    display: none;
  }
}

.search {
  display: flex;
  align-items: center;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 6px;
  padding: 0.45rem 0.85rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  width: 100%;
  max-width: 270px;
}
.search__icon {
  color: rgba(255, 255, 255, 0.85);
  margin-right: 0.5rem;
  font-size: 0.85rem;
}
.search__input {
  flex: 1;
  background: none;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 400;
  outline: none;
  width: 100%;
}
.search__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.search__mic {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  padding: 0 0 0 0.5rem;
}
.search__mic:hover {
  color: #ffc107;
}

/* Hero — from top of page, full viewport, video behind top bar + header */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 3rem;
}
.hero__media {
  position: absolute;
  inset: 0;
  background: #1a1a1a;
}
.hero__media-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.hero__media-slide.active {
  opacity: 1;
  visibility: visible;
}
.hero__media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.08) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

/* Text slider */
.slider {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.slider__arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  transition: background 0.2s, border-color 0.2s;
}
.slider__arrow:hover {
  background: rgba(255, 193, 7, 0.2);
  border-color: #ffc107;
  color: #ffc107;
}
.slider__track {
  flex: 1;
  position: relative;
  min-height: 200px;
}
.slider__slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.slider__slide.active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.hero__line {
  width: 60px;
  height: 3px;
  background: #ffc107;
  margin-bottom: 1.25rem;
}
.hero__desc {
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
}

/* CTA buttons — ровно под текст (выравнивание по левому краю текстового блока) */
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #fff;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover {
  background: #fff;
  color: #000;
}
.btn__icon {
  color: #ffc107;
}
.btn:hover .btn__icon {
  color: #000;
}

/* Fallback when video not loaded — gradient so text is readable */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #1a1a1a 0%, transparent 50%);
  opacity: 0;
  pointer-events: none;
}
.no-video .hero__media::after {
  opacity: 0.6;
}

/* ========== HERO MODAL (по клику на EQUIPMENT) ========== */
.hero-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}
.hero-modal[hidden] {
  display: flex !important;
}
.hero-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.hero-modal.is-open[hidden] {
  display: flex !important;
}
.hero-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}
.hero-modal__box {
  position: relative;
  width: 100%;
  max-width: 900px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.hero-modal__close:hover {
  background: #ffc107;
  color: #1a1a1a;
}
.hero-modal__heading {
  flex-shrink: 0;
  margin: 0;
  padding: 1.25rem 1.25rem 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
}
.hero-modal__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 1.25rem 1.25rem;
  scrollbar-color: #ffc107 rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}
.hero-modal__body::-webkit-scrollbar {
  width: 8px;
}
.hero-modal__body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}
.hero-modal__body::-webkit-scrollbar-thumb {
  background: #ffc107;
  border-radius: 10px;
}
.hero-modal__body::-webkit-scrollbar-thumb:hover {
  background: #e6ac00;
  border-radius: 4px;
}
/* Сетка карточек: 4 в ряд, скролл вниз */
.hero-modal__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-bottom: 0.5rem;
  padding-top: 10px;
}
.hero-modal__card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 193, 7, 0.5);
  border-radius: 10px;
  padding: 10px;
  text-decoration: none;
  color: #1a1a1a;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.hero-modal__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 193, 7, 0.2);
  border-color: #ffc107;
}
/* Количество в углу карточки */
.hero-modal__count {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  background: #ffc107;
  color: #1a1a1a;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 0px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-modal__img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  background: #e8e8e8;
  margin-bottom: 0.6rem;
  object-fit: cover;
}
.hero-modal__img {
  background: #e5e7eb;
}
.hero-modal__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  line-height: 1.25;
}
@media (max-width: 640px) {
  .hero-modal__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .hero-modal__box {
    max-width: 100%;
    margin: 0 0.5rem;
    max-height: 90vh;
  }
  .hero-modal__heading {
    font-size: 1.1rem;
    padding: 1rem 1rem 0.5rem;
  }
  .hero-modal__body {
    padding: 0 1rem 1rem;
  }
  .hero-modal__card {
    padding: 0.5rem;
  }
  .hero-modal__label {
    font-size: 0.65rem;
  }
}

/* ========== INVENTORY / CATALOG ========== */
.inventory {
  background: #f8f8f8;
  padding: 5rem 2rem 5rem;
  color: #1a1a1a;
}
.inventory__inner {
  max-width: 1400px;
  margin: 0 auto;
}
.inventory__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.25;
}
.inventory__title-accent {
  display: block;
  margin-top: 0.15em;
}
.inventory__line {
  width: 80px;
  height: 4px;
  background: #ffc107;
  margin: 0 auto 2rem;
  border-radius: 2px;
}

/* Slider wrapper — стрелки по краям в стиле hero */
.inventory__slider {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
/* Стрелки в стиле hero — тёмный круг, белая обводка */
.inventory__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}
.inventory__arrow:hover {
  background: rgba(255, 193, 7, 0.35);
  border-color: #ffc107;
  color: #ffc107;
}
.inventory__arrow:focus-visible {
  outline: 2px solid #ffc107;
  outline-offset: 2px;
}
.inventory__grid-wrap {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  cursor: grab;
  user-select: none;
}
.inventory__grid-wrap:active {
  cursor: grabbing;
}
.inventory__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 1.5rem;
  width: 225%;
  max-width: none;
  transition: transform 0.4s ease;
}
.inventory__grid .card {
  min-width: 0;
}

/* Card */
.card {
  margin: 0;
}
.card__link {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.card__link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.card__link:focus-visible {
  outline: 2px solid #ffc107;
  outline-offset: 2px;
}
.card__img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #e8e8e8;
  overflow: hidden;
}
.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
}
.card__link:hover .card__img {
  transform: scale(1.03);
}
/* Placeholder gradients (replace with real img when you have assets) */
.card__img--1,
.card__img--2,
.card__img--3,
.card__img--4,
.card__img--5,
.card__img--6 {
  background: #e5e7eb;
}
.card__badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #2f855a;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.35em 0.75em;
  border-radius: 6px;
  text-transform: uppercase;
}
.card__title {
  margin: 0;
  padding: 1rem 1.25rem 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.card__price {
  margin: 0;
  padding: 0 1.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
}
.card__location {
  margin: 0;
  padding: 0.5rem 1.25rem 1.25rem;
  font-size: 0.8rem;
  color: #666;
}

@media (max-width: 1024px) {
  .inventory__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .inventory__arrow {
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 768px) {
  .inventory {
    padding: 3rem 1rem 4rem;
  }
  .inventory__grid {
    gap: 1rem;
  }
  .inventory__slider {
    gap: 0.75rem;
  }
  .inventory__arrow {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 480px) {
  .inventory__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== ABOUT / HEAVY EQUIPMENT BLOCK ========== */
.about-block {
  background: #fff;
  padding: 4rem 2rem;
  color: #1a1a1a;
}
.about-block__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.about-block__content {
  padding: 2rem 2.5rem 2rem 2rem;
}
.about-block__title {
  margin: 0 0 1.25rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}
.about-block__text {
  margin: 0 0 1.75rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #333;
}
.about-block__btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background: #e85d04;
  color: #fff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s;
}
.about-block__btn:hover {
  background: #d44d00;
}
.about-block__media {
  min-height: 320px;
  border-radius: 0 16px 16px 0;
  overflow: hidden;
}
.about-block__img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: 16px;
  background: #e5e7eb;
  background-size: cover;
  background-position: center;
  object-fit: cover;
}

@media (max-width: 900px) {
  .about-block__inner {
    grid-template-columns: 1fr;
  }
  .about-block__content {
    padding: 2rem;
  }
  .about-block__media {
    min-height: 280px;
    border-radius: 0;
  }
  .about-block__img {
    min-height: 280px;
  }
}
@media (max-width: 600px) {
  .about-block {
    padding: 3rem 1rem;
  }
  .about-block__content {
    padding: 1.5rem;
  }
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 4rem 2rem 5rem;
  color: #1a1a1a;
}
.testimonials__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials__title {
  margin: 0 0 0.35em;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  text-align: center;
  color: #1a1a1a;
}
.testimonials__subtitle {
  margin: 0 0 2.5rem;
  font-size: 1rem;
  color: #666;
  text-align: center;
}
/* Слайдер testimonials — одна строка, стрелки как в inventory */
.testimonials__slider {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  margin-top: 30px;
}
.testimonials__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.testimonials__arrow:hover {
  background: #ffc107;
  border-color: #ffc107;
  color: #1a1a1a;
}
.testimonials__grid-wrap {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  cursor: grab;
  user-select: none;
}
.testimonials__grid-wrap:active {
  cursor: grabbing;
}
.testimonials__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  transition: transform 0.4s ease;
}
.testimonial {
  border-radius: 12px;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #e6e6e6;
}
.testimonial:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.testimonial__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.testimonial__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.testimonial__avatar--1,
.testimonial__avatar--2,
.testimonial__avatar--3 {
  background: #6b7280;
}
.testimonial__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  min-width: 0;
}
.testimonial__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a1a1a;
}
.testimonial__verified {
  color: #3b82f6;
  font-size: 0.85rem;
}
.testimonial__time {
  width: 100%;
  font-size: 0.8rem;
  color: #888;
}
.testimonial__stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.reviews_block_info .testimonial__stars {
  margin-bottom: 0px;
}
.testimonial__text {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #444;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial__more {
  font-size: 0.9rem;
  font-weight: 500;
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s;
}
.testimonial__more:hover {
  color: #2563eb;
}

.testimonial {
  min-width: 0;
}
@media (max-width: 1024px) {
  .testimonials__slider {
    gap: 0.75rem;
  }
  .testimonials__arrow {
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 600px) {
  .testimonials {
    padding: 3rem 1rem 4rem;
  }
  .testimonials__slider {
    gap: 0.5rem;
  }
  .testimonials__arrow {
    width: 40px;
    height: 40px;
  }
}

/* ========== DEALERS / BRANDS SLIDER ========== */
.dealers {
  background: #e8e8e8;
  padding: 3rem 0;
  color: #1a1a1a;
}
.dealers__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.dealers__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 0 0 2rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a1a;
}
.dealers__line {
  display: inline-block;
  width: 60px;
  height: 2px;
  background: #b8860b;
  flex-shrink: 0;
}
.dealers__slider-wrap {
  overflow: hidden;
}
.dealers__slider {
  display: flex;
  gap: 1.25rem;
  padding: 0 0.5rem;
  animation: dealers-scroll 35s linear infinite;
}
.dealers__slider:hover {
  animation-play-state: paused;
}
@keyframes dealers-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.dealers__logo {
  flex-shrink: 0;
  width: 160px;
  height: 90px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: box-shadow 0.2s;
}
.dealers__logo:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.dealers__logo-text {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #555;
  text-align: center;
}

@media (max-width: 768px) {
  .dealers {
    padding: 2rem 0;
  }
  .dealers__inner {
    padding: 0 1rem;
  }
  .dealers__title {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .dealers__line {
    width: 40px;
  }
  .dealers__logo {
    width: 140px;
    height: 80px;
    font-size: 0.8rem;
  }
}

/* ========== FOOTER ========== */
.footer {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: #fff;
}
.footer__top {
  background: #2a2a2a;
  padding: 0.85rem 2rem;
}
.footer__top-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer__contact-item:hover {
  color: #ffc107;
}
.footer__icon {
  color: #ffc107;
  flex-shrink: 0;
}
.footer__main {
  background: #000;
  padding: 2.5rem 2rem 3rem;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer__col {
  min-width: 0;
}
.footer__heading {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}
.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__links li {
  margin-bottom: 0.5rem;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer__links a:hover {
  color: #ffc107;
}
.footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__contact-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}
.footer__contact-list a,
.footer__contact-list span {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__contact-list a:hover {
  color: #ffc107;
}
.footer__contact-list small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85em;
}
.footer__col--contact .footer__icon {
  width: 1em;
  text-align: center;
}

@media (max-width: 900px) {
  .footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__top-inner {
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  .footer__top {
    padding: 0.75rem 1rem;
  }
  .footer__top-inner {
    flex-direction: column;
    gap: 0.75rem;
  }
  .footer__main {
    padding: 2rem 1rem;
  }
  .footer__cols {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ========== BURGER & MOBILE MENU ========== */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.header__burger:hover {
  background: rgba(255, 193, 7, 0.2);
  border-color: #ffc107;
}
.header__burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.header__burger.is-open .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.is-open .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger.is-open .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0.3s;
}
.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}
.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-menu.is-open .mobile-menu__overlay {
  opacity: 1;
}
.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100%;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5);
  padding: 1.25rem 1.5rem;
  padding-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}
.mobile-menu__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu__close:hover {
  background: #ffc107;
  color: #1a1a1a;
}
.mobile-menu__logo {
  display: block;
  line-height: 0;
  margin: 0 auto;
  margin-bottom: 0.25rem;
}
.mobile-menu__logo-img {
  width: 80%;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu__link {
  display: block;
  padding: 0.85rem 0.75rem;
  color: #fff;
  text-decoration: none;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  text-align: right;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  border-left: 3px solid transparent;
}
.mobile-menu__link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffc107;
  border-left-color: #ffc107;
}
.mobile-menu__search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
}
.mobile-menu__search i {
  flex-shrink: 0;
  font-size: 0.9rem;
}
.mobile-menu__search-input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}
.mobile-menu__search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
/* Контакты внизу мобильного меню */
.mobile-menu__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.35;
  padding: 0.4rem 0;
  transition: color 0.2s;
}
.mobile-menu__contact-item i {
  color: #ffc107;
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 0.85rem;
}
.mobile-menu__contact-item:hover {
  color: #ffc107;
}
.mobile-menu__contact-item--phone {
  font-weight: 600;
  color: #ffc107;
  padding: 0.6rem 0.75rem;
  background: rgba(255, 193, 7, 0.12);
  border-radius: 8px;
  border: 1px solid rgba(255, 193, 7, 0.3);
}
.mobile-menu__contact-item--phone:hover {
  background: #ffc107;
  color: #1a1a1a;
  border-color: #ffc107;
}
.mobile-menu__contact-item--phone i {
  color: inherit;
}

/* Responsive — общие точки перелома */
@media (max-width: 1024px) {
  .top-bar {
    display: none;
  }
  .header {
    top: 0;
  }
  .nav {
    display: none;
  }
  .header__search {
    display: none;
  }
  .header__burger {
    display: flex;
  }
  .hero {
    padding-left: 1.5rem;
    padding-top: 100px;
  }
  .header_items {
    padding: 0.6rem 1rem;
  }
  .logo__icon {
    width: 120px;
  }
}
@media (max-width: 768px) {
  .header_items {
    padding: 0.5rem 0.75rem;
  }
  .logo__icon {
    width: 110px;
  }
  .hero {
    padding-top: 90px;
  }
  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 100px;
    padding-bottom: 2rem;
  }
  .hero__title {
    font-size: clamp(1.25rem, 4vw, 1.75rem);
  }
  .hero__desc {
    font-size: 0.9rem;
  }
  .slider__arrow {
    width: 36px;
    height: 36px;
    margin-top: 1rem;
  }
  .hero__cta {
    flex-direction: column;
    gap: 0.75rem;
  }
  .btn {
    justify-content: center;
    padding: 0.65rem 1.25rem;
    font-size: 0.8rem;
  }
  .inventory {
    padding: 3rem 1rem 4rem;
  }
  .inventory__title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }
  .about-block {
    padding: 3rem 1rem;
  }
  .about-block__inner {
    gap: 2rem;
  }
  .about-block__title {
    font-size: 1.5rem;
  }
  .testimonials {
    padding: 3rem 1rem 4rem;
  }
  .testimonials__title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
  }
  .dealers__inner {
    padding: 0 1rem;
  }
  .footer__main {
    padding: 2rem 1rem;
  }
}
@media (max-width: 600px) {
  .header_items {
    padding: 0.5rem 0.5rem;
  }
  .logo__icon {
    width: 100px;
  }
  .hero {
    padding-top: 85px;
  }
  .mobile-menu__contact-item {
    font-size: 0.85rem;
  }
 
  .hero {
    min-height: 85vh;
    padding-top: 90px;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .hero__title {
    margin-bottom: 0.75rem;
  }
  .hero__line {
    margin-bottom: 0.75rem;
  }
  .hero__desc {
    margin-bottom: 1rem;
  }
  .inventory__slider {
    gap: 0.5rem;
  }
  .inventory__arrow {
    width: 38px;
    height: 38px;
    font-size: 0.75rem;
  }
  .about-block__content {
    padding: 1.25rem;
  }
  .about-block__btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
  .mobile-menu__panel {
    max-width: 280px;
    border-radius: 0;
  }
}
@media (max-width: 480px) {
  .header_items {
    padding: 0.45rem 0.5rem;
  }
  .rewiews_audio_block_content{
    flex-direction: column-reverse;
    gap: 10px;
    align-items: center;
  }
  .rewiews_audio_block_avatar{
    margin: 0 auto;
  }
  .rewiews_audio_block_title{
    font-size: 13px;
    text-align: center;
  }
  .logo__icon {
    width: 90px;
  }
  .hero {
    padding-top: 80px;
  }
  .mobile-menu__contacts {
    gap: 0.5rem;
    padding-top: 1rem;
  }
  .mobile-menu__contact-item {
    font-size: 0.8rem;
  }

  .hero {
    padding-top: 80px;
  }
  .inventory__title {
    font-size: 1.2rem;
  }
  .inventory__title-accent {
    display: inline;
  }
  .card__title {
    font-size: 0.95rem;
  }
  .card__price {
    font-size: 0.95rem;
  }
  .footer__top-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .dealers__title {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
  }
  .mobile-menu__link {
    padding: 0.75rem;
    font-size: 0.95rem;
  }
}

.reviews_main {
  width: 100%;
  margin-top: 50px;
}
/* Слайдер reviews — одна строка, стрелки как в inventory */
.reviews_slider {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.reviews_slider__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.reviews_slider__arrow:hover {
  background: #ffc107;
  border-color: #ffc107;
  color: #1a1a1a;
}
.reviews_blocks_wrap {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  cursor: grab;
  user-select: none;
}
.reviews_blocks_wrap:active {
  cursor: grabbing;
}
.reviews_blocks {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  transition: transform 0.4s ease;
}
.reviews_block {
  width: 100%;
  height: 100%;
  min-width: 0;
}
.reviews_block_up {
  position: relative;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  height: 200px;
}
.reviews_block_info_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.reviews_block_info_name {
  margin: 0;
  line-height: 110%;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
}
.reviews_block_info {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
  gap: 5px;
}
.reviews_block_info_teg {
  margin: 0;
  line-height: 110%;
  font-weight: 500;
  font-size: 0.7rem;
  color: #fff;
  margin-bottom: 5px;
}
.reviews_block_info_stars {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
}
.reviews_block_info_stars svg {
  width: 25px;
  height: 25px;
}
.reviews_block_bottom {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.reviews_block_bottom_content {
  padding: 15px;
}
.reviews_block_bottom_text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #444;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviews_block_info_overlay {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: rgb(0, 0, 0, 0.6);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.reviews_block_play {
  position: absolute;
  width: 50px;
  left: calc(50% - 25px);
  top: calc(50% - 25px);
  z-index: 3;
  cursor: pointer;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.3s ease;
  opacity: 1;
  visibility: visible;
}
.reviews_block_play:hover {
  transform: translateY(-5px);
}
.reviews_block_info_overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.reviews_block_play.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.reviews_block_up {
  cursor: pointer;
}
.reviews_block_info_image {
  cursor: pointer;
}

/* Стили для аудио секции */
.rewiews_audio {
  width: 100%;
  max-width: 1406px;
  margin: 0 auto;
  margin-top: 30px;
}
/* Слайдер rewiews_audio — одна строка, стрелки как в inventory */
.rewiews_audio_slider {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.rewiews_audio_slider__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.rewiews_audio_slider__arrow:hover {
  background: #ffc107;
  border-color: #ffc107;
  color: #1a1a1a;
}
.rewiews_audio_blocks_wrap {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  cursor: grab;
  user-select: none;
}
.rewiews_audio_blocks_wrap:active {
  cursor: grabbing;
}
.rewiews_audio_blocks {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  transition: transform 0.4s ease;
}
.rewiews_audio_block {
  width: 100%;
  min-width: 0;
  padding: 10px 20px;
  border-radius: 16px;
  border: 1px solid #e6e6e6;
}

.rewiews_audio_block_content {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.rewiews_audio_items {
  width: 100%;
}
.rewiews_audio_block_items {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  overflow: hidden;
}
.rewiews_audio_block_avatar {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.rewiews_audio_block_avatar_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.rewiews_audio_play {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  background: #fff;
  padding: 1px;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.5s;
}
.rewiews_audio_play:hover {
  transform: translateY(-5px);
}
.rewiews_audio_block_items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rewiews_audio_block_title {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgb(26, 26, 26);
}
.rewiews_audio_element {
  display: none;
}
.rewiews_audio_equalizer {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 30px;
  min-height: 30px;
  width: 100%;
  background: transparent;
  visibility: visible;
  opacity: 1;
  overflow: hidden;
}
.equalizer-bar {
  flex: 1;
  min-width: 3px;
  background: #f8cc25;
  border-radius: 2px;
  height: 8px;
  min-height: 8px;
  transition: height 0.1s ease;
  display: block;
}
.equalizer-bar.playing {
  animation: equalizer-animation 0.8s ease-in-out infinite;
}
.equalizer-bar:nth-child(1) {
  animation-delay: 0s;
}
.equalizer-bar:nth-child(2) {
  animation-delay: 0.1s;
}
.equalizer-bar:nth-child(3) {
  animation-delay: 0.2s;
}
.equalizer-bar:nth-child(4) {
  animation-delay: 0.3s;
}
.equalizer-bar:nth-child(5) {
  animation-delay: 0.4s;
}
.equalizer-bar:nth-child(6) {
  animation-delay: 0.5s;
}
.equalizer-bar:nth-child(7) {
  animation-delay: 0.6s;
}
.equalizer-bar:nth-child(8) {
  animation-delay: 0.7s;
}
@keyframes equalizer-animation {
  0%,
  100% {
    height: 4px;
  }
  25% {
    height: 20px;
  }
  50% {
    height: 30px;
  }
  75% {
    height: 15px;
  }
}
.rewiews_audio_timer {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.rewiews_text {
  width: 100%;
  height: auto;
  max-width: 1406px;
  display: block;
  margin: 0 auto;
  margin-top: 30px;
}
.rewiews_text_blocks {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rewiews_text_block {
  width: 100%;
  height: auto;
  border: 1px solid #e1e1e1;
  border-radius: 15px;
}
.rewiews_text_block_content {
  padding: 20px;
}
.rewiews_text_block_up {
  display: flex;
  align-items: center;
}
.rewiews_text_block_up_info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.rewiews_text_block_avatar {
  width: 70px;
  height: 150%;
  object-fit: cover;
  border-radius: 100px;
}
.rewiews_text_block_up_texts {
  display: flex;
  flex-direction: column;
}
.rewiews_text_block_up_name {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #0c2756;
  line-height: 110%;
}
.rewiews_text_block_up_desctiption {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #0c2756;
  line-height: 110%;
}
.rewiews_text_block_up_stars {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}
.rewiews_text_block_up_stars svg {
  width: 30px;
  height: 30px;
  vertical-align: middle;
}
.rewiews_text_block_text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #0c2756;
  line-height: 110%;
  margin-top: 10px;
}

.ready {
  width: 100%;
  background: url(../images/new-design/image_2.png) no-repeat center center;
  background-size: cover;
  height: 460px;
}
.ready::before{
    content: ' ';
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 70%);
    max-height: 460px;
}
.ready_main {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-top: 150px;
  position: relative;
}
.ready_title {
  margin: 0 0 0.35em;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.ready_text {
  margin: 0 auto;
  margin-top: 20px;
  font-size: 1rem;
  color: #c9c9c9;
  text-align: center;
  max-width: 600px;
  display: block;
}

.ready .btn {
  margin: 0 auto;
  margin-top: 20px;
  display: block;
}



/* Контейнер header: лого + нав + поиск + бургер */
.header_items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 2rem;
  width: 100%;
  max-width: 100%;
}
.header .logo {
  margin-right: auto;
}
.header .nav {
  margin-left: 0;
}
.header .search {
  flex-shrink: 0;
}



.search .header__search{
  width: 100%;
  max-width: 270px;
}

@media (min-width: 320px) and (max-width: 399px) {
  .reviews_main,
  .rewiews_audio,
  .reviews_text {
    width: 100%;
  }
  .rewiews_text_blocks {
    grid-template-columns: repeat(1, 1fr);
  }
  .rewiews_text_block_up {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .rewiews_text_block_up_stars {
    margin-left: 0px;
  }
  .rewiews_text_block_text {
    text-align: center;
    margin-top: 20px;
  }

  .rewiews_audio_blocks,
  .reviews_blocks{
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 400px) and (max-width: 499px) {

  
  
  .rewiews_audio_blocks,
  .reviews_blocks,
  .rewiews_text_blocks{
    grid-template-columns: repeat(1, 1fr);
  }
  .rewiews_text_block_up {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .rewiews_text_block_up_stars {
    margin-left: 0px;
  }
  .rewiews_text_block_text {
    text-align: center;
    margin-top: 20px;
  }
  .reviews_block_play {
    width: 50px;
    left: calc(50% - 25px);
    top: calc(50% - 25px);
  }
  .reviews_block_info_stars {
    gap: 0px;
    margin-top: 0px;
  }
  .reviews_block_info_stars svg {
    width: 15px;
  }
  .reviews_block_info {
    left: 10px;
    bottom: 10px;
  }
  .reviews_block_info_teg {
    font-size: 14px;
  }
  .reviews_block_info_name {
    font-size: 16px;
  }
}

@media (min-width: 500px) and (max-width: 799px) {
  
  .rewiews_text_blocks {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .rewiews_audio_blocks,
  .reviews_blocks{
    grid-template-columns: repeat(2, 1fr);
  }



  .reviews_block_play {
    width: 70px;
    left: calc(50% - 35px);
    top: calc(50% - 35px);
  }
  .reviews_block_info_stars {
    gap: 0px;
    margin-top: 0px;
  }
  .reviews_block_info_stars svg {
    width: 25px;
  }
}

@media (min-width: 800px) and (max-width: 1199px) {
  .rewiews_text_block_up {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .rewiews_text_block_up_stars {
    margin-left: 0px;
  }

  .reviews_block_play {
    width: 70px;
    left: calc(50% - 35px);
    top: calc(50% - 35px);
  }
}

@media (min-width: 1025px) and (max-width: 1325px) {
.logo__icon{
  width: 100px;
}
.header .search{
  flex-shrink: inherit;
}
}

/* Контент под фиксированной шапкой на внутренних страницах */
.site-content {
  
  min-height: 40vh;
}



.about-hero-title,
.reviews-hero-title,
.money-back-hero-content,
.shipping-hero-title,
.shop-hero-title,
.page-title,
.contacts-hero-title,
.buy-new-subtitle,
.single-product-title,
.faq-hero-title {
  padding-top: 120px;
}

/* Call Request Modal — главная (new-design.css на главной не подключается) */
.call-request-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.call-request-modal.active {
  opacity: 1;
  visibility: visible;
}
.call-request-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}
.call-request-modal .modal-content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  z-index: 10001;
}
.call-request-modal.active .modal-content {
  transform: scale(1);
}
.call-request-modal .modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #666;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  z-index: 10002;
}
.call-request-modal .modal-close:hover {
  color: #ff6b35;
}
.call-request-modal .modal-title {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.call-request-modal .modal-subtitle {
  font-size: 15px;
  color: #666;
  margin: 0 0 30px;
  line-height: 1.6;
}
.call-request-modal .call-request-form {
  width: 100%;
}
.call-request-modal .call-request-form .form-group {
  margin-bottom: 20px;
}
.call-request-modal .call-request-form .form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.call-request-modal .call-request-form .form-label .required {
  color: #e74c3c;
  margin-left: 3px;
}
.call-request-modal .call-request-form .form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  font-size: 16px;
  color: #333;
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}
.call-request-modal .call-request-form .form-input:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}
.call-request-modal .call-request-form .form-input::placeholder {
  color: #999;
  opacity: 1;
}
.call-request-modal .call-request-form .form-submit-button {
  width: 100%;
  background: #ff6b35;
  color: #fff;
  border: none;
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.5px;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.call-request-modal .call-request-form .form-submit-button:hover:not(:disabled) {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}
.call-request-modal .call-request-form .form-submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.call-request-modal .form-message {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
}
.call-request-modal .form-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.call-request-modal .form-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
@media (max-width: 768px) {
  .call-request-modal .modal-content {
    padding: 30px 20px;
    width: 95%;
  }
  .call-request-modal .modal-title {
    font-size: 24px;
  }
  .call-request-modal .modal-subtitle {
    font-size: 14px;
  }
}


.footer__bottom {
  background: #1a1a1a;
  padding: 0.75rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer__copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
}



.slider__track .slider__slide{
  position: static;
  display: none;
  opacity: 1;
}

.slider__track .slider__slide.active{
  position: static;
  display: block;
  opacity: 1;
}

