.section-product-description-tabs {
  width: 100%;
  background-color: var(--hp-color-extra-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 0 93px;
  h2 {
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    color: var(--hp-color-normal);
  }

  .product-name {
    text-align: center;
    margin: 12px 0 32px;
  }

  .product-description-tabs {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height: 38px;
    width: 100%;
    max-width: 930px;
    position: relative;
    margin-bottom: 32px;
    overflow-x: auto;
    padding-right: 16px;

    .product-description-tab {
      padding: 0 32px;
      height: 38px;
      color: var(--hp-color-light-active) !important;
      cursor: pointer;
      position: relative;
      transition: all 0.3s ease-in-out;
      flex: 1;
      text-align: center;
      &:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        max-height: 1px;
        background-color: var(--hp-color-light-active);
        transition: all 0.3s ease-in-out;
      }
      &:hover {
        color: var(--hp-color-normal-active);
      }
      &.active {
        color: var(--hp-color-normal-active);
        transition: all 0.1s ease-in-out;
        transition-delay: 0.2s;
        &:after {
          height: 3px;
          max-height: 3px;
          background-color: var(--hp-color-normal-active);
        }
      }
    }
  }

  .product-description-tabs__content {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    width: 50%;
    max-width: 650px;

    .product-description-tab__content {
      text-align: center;
      color: var(--hp-color-normal);
      position: relative;
      width: 100% !important;
      opacity: 0 !important;
      transition: opacity 0.3s ease-in-out;
      &.swiper-slide-active {
        opacity: 1 !important;
      }
      p {
        margin: 0;
      }
    }
  }
}

@media screen and (max-width: 768px) {
  .section-product-description-tabs {
    .product-description-tabs {
      max-width: 100%;
      .product-description-tab {
        flex-wrap: nowrap;
        display: inline-flex;
        flex-direction: row;
        white-space: nowrap;
      }
    }
    .product-description-tabs__content {
      width: 100%;
      .product-description-tab__content {
        width: calc(100% - 32px);
        padding: 0 16px;
      }
    }
  }
}
