.size-guide-content {
  max-width: calc(100% - 444px);
  @media (max-width: 767px) {
    max-width: 100%;
  }
}
.size-guide__header {
  text-align: center;
  margin-bottom: 40px;
  @media (max-width: 767px) {
    margin-bottom: 24px;
  }
  .h1 {
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0px;
    text-transform: uppercase;
    text-align: left;
    @media (max-width: 767px) {
      font-size: 24px;
      line-height: 32px;
    }
  }
}
.wrap-size-guide {
  display: flex;
  gap: 100px;
  flex-direction: row;
  justify-content: space-between;
  @media (max-width: 767px) {
    flex-direction: column-reverse;
    gap: 24px;
  }
}

.size-guide__tabs-container {
  position: relative;
}

.size-guide__tabs-wrapper {
  position: relative;
  display: flex;
  gap: 8px;
}

.size-guide__tabs {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  gap: 0;
  padding: 0;
  position: relative;
  margin-bottom: 40px;
}

.size-guide__tabs::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.size-guide__nav {
  width: 40px;
  height: 40px;
  gap: 8px;
  opacity: 1;
  border-radius: 100px;
  border-width: 1px;
  padding: 12px;
}

.size-guide__tab {
  padding: 10px 16px;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0px;
  color: #3d4543;
  position: relative;
  border-radius: 100px;
  border: 1px solid #E5E5E5;
}

.size-guide__tab:not(:last-child) {
  margin-right: 8px;
}

.size-guide__tab.active {
  background-color: #000000;

  text-align: center;
  color: #ffffff;
}

.size-guide__tab:hover {
  opacity: 0.8;
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

.size-guide__content {
  display: none;
}

.size-guide__content .h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0px;
  text-transform: uppercase;
}

.size-guide__content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.size-guide table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.size-guide th,
.size-guide td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
}

.size-guide th {
  background-color: #f5f5f5;
  font-weight: 600;
}

@media (max-width: 767px) {
  .size-guide__tabs {
    padding-bottom: 15px;
  }

  .size-guide__tab {
    padding: 10px 20px;
    font-size: 14px;
  }
}

.size-guide__table {
  overflow-x: auto;
  tr:first-child {
    background-color: #f6f6f6;
    td {
      h3 {
        font-weight: 700 !important;
        font-size: 14px;
        line-height: 20px;
        color: #000000;
      }
    }
  }

  table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: none;
  }

  table td,
  table th {
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 8px 12px;
    text-align: center;
    span {
      font-weight: 400;
      font-size: 14px;
      line-height: 20px;
      letter-spacing: 0;
      text-align: center;
      color: #3d4543;
    }
  }

  table tr:last-child td {
    border-bottom: none;
  }

  table td:first-child,
  table th:first-child {
    text-align: left;
  }
}
