/* Стили для табов профиля продавца */
.profile-tabs-container {
  width: 100%;
  border-bottom: 1px solid #e5e7eb;
  margin-top: 24px;
  margin-bottom: 16px;
  /* margin-left: -249px; */
}

.profile-tabs {
  display: flex;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.profile-tab {
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.profile-tab span {
    font-weight: 400;

    display: inline-block;
    opacity: 0.8;
}

.profile-tab:hover {
  color: #206195;
}

.profile-tab.active {
  color: #206195;
  border-bottom-color: #206195;
}

@media (max-width: 968px) {
  .profile-tabs-container {
    margin-left: 0px;
    margin-bottom: 8px;
  }
}

/* Адаптив для табов */
@media (max-width: 768px) {
  .profile-tabs {
    gap: 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px;
  }

  .profile-tab {
    font-size: 14px;
    padding: 12px 0;
  }
}

@media (max-width: 480px) {
  .profile-tabs {
    gap: 12px;
  }

  .profile-tab {
    font-size: 13px;
    padding: 10px 0;
  }
}
