/* ======= Базовые отступы и контейнер ======= */
.slide-goods-image {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto !important;
  margin-bottom: 30px;
}

/* ======= Контент товара ======= */
.good-data {
  clear: both;
  width: 100%;
  position: relative;
  z-index: 2;
}

.tabs-body {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  overflow-x: auto;
  gap: 8px;
  border-bottom: 1px solid #eee;
  padding-bottom: 6px;
  position: sticky;
  top: 120px;
  background: #fff;
  z-index: 5;
}

.tabs-body a {
  text-decoration: none;
  color: #333;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.tabs-body a.active {
  background: none;
  border-bottom: 2px solid #e74c3c;
  color: #e74c3c;
}

/* ======= Для мобильных ======= */
@media (max-width: 768px) {
  .tabs-body {
    justify-content: flex-start;
    padding: 4px;
  }
}