


[class*="__nav-button"],
[class*="__component-2"] {
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;

  min-width: 48px;
  min-height: 48px;
  border-radius: 12px;
  padding: 12px;

  opacity: 1;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}


[class*="__nav-button"] img,
[class*="__component-2"] img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: all 0.3s ease;
  position: relative;
  left: auto;
  top: auto;

  filter: none;
}


[class*="__nav-button"]:hover,
[class*="__component-2"]:hover {
  background-color: rgba(110, 53, 20, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}


[class*="__nav-button"]:active,
[class*="__component-2"]:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Hover эффекты для изображений */
[class*="__nav-button"]:hover img,
[class*="__component-2"]:hover img {
  filter: brightness(1.1);
  transform: none;
}

/* ===================================
   АДАПТИВНЫЕ СТИЛИ ПО УСТРОЙСТВАМ
   =================================== */

/* Мобильные устройства (max-width: 767px) */
@media (max-width: 767px) {
  [class*="__nav-button"],
  [class*="__component-2"] {
    padding: 6px;
    border-radius: 6px;
    min-width: 40px;
    min-height: 40px;
    background: #ffffff;
    border: none;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  
    opacity: 1;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  [class*="__nav-button"]:hover,
  [class*="__component-2"]:hover {
    background: #6E3514;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  [class*="__nav-button"] img,
  [class*="__component-2"] img {
    width: 20px;
    height: 20px;
  }
}

/* Планшеты (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  [class*="__nav-button"],
  [class*="__component-2"] {
    padding: 10px;
    border-radius: 10px;
    min-width: 44px;
    min-height: 44px;
    background: #ffffff;
    border: none;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  
    opacity: 1;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  [class*="__nav-button"]:hover,
  [class*="__component-2"]:hover {
    background: #6E3514;
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
  }
  
  [class*="__nav-button"] img,
  [class*="__component-2"] img {
    width: 26px;
    height: 26px;
  }
}

/* ПК (min-width: 769px) */
@media (min-width: 769px) {
  [class*="__nav-button"],
  [class*="__component-2"] {
    padding: 12px;
    border-radius: 100px;
    min-width: 48px;
    min-height: 48px;
    background: #ffffff;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  
    opacity: 1;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  [class*="__nav-button"]:hover,
  [class*="__component-2"]:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }
  
  [class*="__nav-button"]:active,
  [class*="__component-2"]:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  [class*="__nav-button"] img,
  [class*="__component-2"] img {
    width: 28px;
    height: 28px;
  }
}

/* ===================================
   СПЕЦИФИЧНЫЕ СТИЛИ ДЛЯ РАЗНЫХ СЕКЦИЙ
   =================================== */

/* Стили для text-feedback */
.text-feedback__slider-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 15px;
  align-items: center;
}

/* Специальные стили для text-feedback кнопок */
.text-feedback__component-2,
.text-feedback__nav-button {
  background: #6E3514;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;

  opacity: 1;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  /* Дополнительные стили для точного соответствия */
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-feedback__component-2:hover,
.text-feedback__nav-button:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.text-feedback__component-2:active,
.text-feedback__nav-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Стили для изображений в text-feedback кнопках */
.text-feedback__component-2 img,
.text-feedback__nav-button img {
  width: 28px;
  height: 28px;
  margin-right: 0;
  filter: none;
  transition: all 0.3s ease;
}

.text-feedback__component-2:hover img,
.text-feedback__nav-button:hover img {
  filter: none;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .text-feedback__slider-nav {
    margin-top: 35px;
    margin-bottom: 18px;
    gap: 25px;
  }
}

@media (min-width: 769px) {
  .text-feedback__slider-nav {
    margin-top: 40px;
    margin-bottom: 20px;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .text-feedback__slider-nav {
    margin-top: 25px;
    margin-bottom: 15px;
    gap: 15px;
  }
}

/* Стили для video-feedback */
.video-feedback__slider-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 15px;
  align-items: center;
}

/* Специальные стили для video-feedback кнопок */
.video-feedback__nav-button {
  background: #6E3514;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;

  opacity: 1;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  /* Дополнительные стили для точного соответствия */
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-feedback__nav-button:hover {
  background: #6E3514;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.video-feedback__nav-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Стили для изображений в video-feedback кнопках */
.video-feedback__nav-button img {
  width: 28px;
  height: 28px;
  margin-right: 0;
  filter: none;
  transition: all 0.3s ease;
}

.video-feedback__nav-button:hover img {
  filter: none;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .video-feedback__slider-nav {
    margin-top: 35px;
    margin-bottom: 18px;
    gap: 25px;
  }
}

@media (min-width: 769px) {
  .video-feedback__slider-nav {
    margin-top: 40px;
    margin-bottom: 20px;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .video-feedback__slider-nav {
    margin-top: 25px;
    margin-bottom: 15px;
    gap: 15px;
  }
}

/* Стили для gallery */
.gallery__slider-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 15px;
  align-items: center;
}

/* Специальные стили для gallery кнопок */
.gallery__nav-button {
  background: #6E3514;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;

  opacity: 1;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  /* Дополнительные стили для точного соответствия */
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__nav-button:hover {
  background: #6E3514;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.gallery__nav-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Стили для изображений в gallery кнопках */
.gallery__nav-button img {
  width: 28px;
  height: 28px;
  margin-right: 0;
  filter: none;
  transition: all 0.3s ease;
}

.gallery__nav-button:hover img {
  filter: none;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .gallery__slider-nav {
    margin-top: 35px;
    margin-bottom: 18px;
    gap: 25px;
  }
}

@media (min-width: 769px) {
  .gallery__slider-nav {
    margin-top: 40px;
    margin-bottom: 20px;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .gallery__slider-nav {
    margin-top: 25px;
    margin-bottom: 15px;
    gap: 15px;
  }
}

/* Стили для product page */
.frame-202__slider-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 15px;
  align-items: center;
}

/* Специальные стили для product page кнопок */
.frame-202__nav-button {
  background: #6E3514;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;

  opacity: 1;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  /* Дополнительные стили для точного соответствия */
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame-202__nav-button:hover {
  background: #6E3514;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.frame-202__nav-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Стили для изображений в frame-202 кнопках */
.frame-202__nav-button img {
  width: 28px;
  height: 28px;
  margin-right: 0;
  filter: none;
  transition: all 0.3s ease;
}

.frame-202__nav-button:hover img {
  filter: none;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .frame-202__slider-nav {
    margin-top: 35px;
    margin-bottom: 18px;
    gap: 25px;
  }
}

@media (min-width: 769px) {
  .frame-202__slider-nav {
    margin-top: 40px;
    margin-bottom: 20px;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .frame-202__slider-nav {
    margin-top: 25px;
    margin-bottom: 15px;
    gap: 15px;
  }
}

/* ===================================
   ДОПОЛНИТЕЛЬНЫЕ ЭФФЕКТЫ
   =================================== */

/* Эффект пульсации для активных кнопок */
[class*="__nav-button"].active,
[class*="__component-2"].active {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(110, 53, 20, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(110, 53, 20, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(110, 53, 20, 0);
  }
}

/* Эффект свечения для hover */
[class*="__nav-button"]:hover::before,
[class*="__component-2"]:hover::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

[class*="__nav-button"]:hover::before,
[class*="__component-2"]:hover::before {
  left: 100%;
}

/* ===================================
   ПОДДЕРЖКА ДЛЯ СТАРЫХ БРАУЗЕРОВ
   =================================== */

/* Fallback для браузеров без поддержки CSS Grid */
@supports not (display: grid) {
  [class*="__slider-nav"] {
    display: flex;
    flex-wrap: wrap;
  }
}

/* Поддержка для браузеров без поддержки CSS Custom Properties */
@supports not (--custom: property) {
  [class*="__nav-button"],
  [class*="__component-2"] {
    background: #6E3514;
    border: 2px solid rgba(110, 53, 20, 0.1);
  }
}

/* ===================================
   ПРИНУДИТЕЛЬНЫЕ СТИЛИ (ПЕРЕЗАПИСЫВАЮТ ДРУГИЕ)
   =================================== */

/* Принудительно применяем единые стили */
[class*="__nav-button"] {
  cursor: pointer !important;
  user-select: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;

  opacity: 1 !important;
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: transparent !important;
  border: none !important;
}

[class*="__component-2"] {
  cursor: pointer !important;
  user-select: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;

  opacity: 1 !important;
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: transparent !important;
  border: none !important;
}

/* Принудительные стили для text-feedback__slider-nav */
.text-feedback__slider-nav {
  display: flex !important;
  gap: 20px !important;
  justify-content: center !important;
  margin-top: 30px !important;
  margin-bottom: 15px !important;
  align-items: center !important;
  flex-direction: row !important;
  align-self: stretch !important;
  flex-shrink: 0 !important;
  position: static !important;
  /* Дополнительные стили для точного соответствия */
  width: 100% !important;
  overflow: visible !important;
  /* Дополнительные стили для точного соответствия */
  box-sizing: border-box !important;
  /* Дополнительные стили для точного соответствия */
  margin-left: auto !important;
  margin-right: auto !important;
  /* Дополнительные стили для точного соответствия */
  max-width: 1320px !important;
  /* Дополнительные стили для точного соответствия */
  flex-wrap: nowrap !important;
}

/* Принудительные стили для video-feedback__slider-nav */
.video-feedback__slider-nav {
  display: flex !important;
  gap: 20px !important;
  justify-content: center !important;
  margin-top: 30px !important;
  margin-bottom: 15px !important;
  align-items: center !important;
  flex-direction: row !important;
  align-self: stretch !important;
  flex-shrink: 0 !important;
  position: static !important;
  /* Дополнительные стили для точного соответствия */
  width: 100% !important;
  overflow: visible !important;
  /* Дополнительные стили для точного соответствия */
  box-sizing: border-box !important;
  /* Дополнительные стили для точного соответствия */
  margin-left: auto !important;
  margin-right: auto !important;
  /* Дополнительные стили для точного соответствия */
  max-width: 1320px !important;
  /* Дополнительные стили для точного соответствия */
  flex-wrap: nowrap !important;
}

/* Принудительные стили для text-feedback кнопок */
.text-feedback__nav-button {
  background: #6E3514 !important;
  border: none !important;
  outline: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  opacity: 1 !important;
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: transparent !important;
  /* Дополнительные стили для точного соответствия */
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  user-select: none !important;
}

.text-feedback__nav-button:hover {
  background: #6E3514 !important;
  border: none !important;
  outline: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

.text-feedback__nav-button:active {
  background: #6E3514 !important;
  border: none !important;
  outline: none !important;
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Принудительные стили для изображений в text-feedback кнопках */
.text-feedback__nav-button img {
  width: 28px !important;
  height: 28px !important;
  margin-right: 0 !important;
  filter: none !important;
  transition: all 0.3s ease !important;
}

.text-feedback__nav-button:hover img {
  filter: none !important;
}

/* Принудительные стили для video-feedback кнопок */
.video-feedback__nav-button {
  background: #6E3514 !important;
  border: none !important;
  outline: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  opacity: 1 !important;
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: transparent !important;
  /* Дополнительные стили для точного соответствия */
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  user-select: none !important;
}

.video-feedback__nav-button:hover {
  background: #6E3514 !important;
  border: none !important;
  outline: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

.video-feedback__nav-button:active {
  background: #6E3514 !important;
  border: none !important;
  outline: none !important;
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Принудительные стили для изображений в video-feedback кнопках */
.video-feedback__nav-button img {
  width: 28px !important;
  height: 28px !important;
  margin-right: 0 !important;
  filter: none !important;
  transition: all 0.3s ease !important;
}

.video-feedback__nav-button:hover img {
  filter: none !important;
}

/* Принудительные стили для gallery кнопок */
.gallery__nav-button {
  background: #6E3514 !important;
  border: none !important;
  outline: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  opacity: 1 !important;
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: transparent !important;
  /* Дополнительные стили для точного соответствия */
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  user-select: none !important;
}

.gallery__nav-button:hover {
  background: #6E3514 !important;
  border: none !important;
  outline: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

.gallery__nav-button:active {
  background: #6E3514 !important;
  border: none !important;
  outline: none !important;
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Принудительные стили для изображений в gallery кнопках */
.gallery__nav-button img {
  width: 28px !important;
  height: 28px !important;
  margin-right: 0 !important;
  filter: none !important;
  transition: all 0.3s ease !important;
}

.gallery__nav-button:hover img {
  filter: none !important;
}

/* Принудительные стили для frame-202 кнопок */
.frame-202__nav-button {
  background: #6E3514 !important;
  border: none !important;
  outline: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s ease !important;
  opacity: 1 !important;
  touch-action: manipulation !important;
  -webkit-tap-highlight-color: transparent !important;
  /* Дополнительные стили для точного соответствия */
  width: 45px !important;
  height: 45px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  user-select: none !important;
}

.frame-202__nav-button:hover {
  background: #6E3514 !important;
  border: none !important;
  outline: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

.frame-202__nav-button:active {
  background: #6E3514 !important;
  border: none !important;
  outline: none !important;
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

/* Принудительные стили для изображений в frame-202 кнопках */
.frame-202__nav-button img {
  width: 28px !important;
  height: 28px !important;
  margin-right: 0 !important;
  filter: none !important;
  transition: all 0.3s ease !important;
}

.frame-202__nav-button:hover img {
  filter: none !important;
}
