#product .product-tab-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

#product .product-tab-buttons > div {
  background-color: #dfdfdf;
  color: #0f427a;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-family: Rowdies;
  font-weight: 300;
  cursor: pointer;
  font-weight: 500;
  flex: 1;
  transition: 300ms;
}

#product .product-tab-buttons > div:hover {
  background-color: #0f427a;
  color: #ffffff;
  transition: 300ms;
}

#product .product-tab-buttons > div.active {
  background-color: white;
  color: #0f427a;
}

#product .product-tab {
  background-color: white;
  border-radius: 1rem;
  padding: 1rem;
}

@media screen and (min-width: 1024px) {
  #product .product-tab-buttons {
    flex-direction: row;
    margin: 0;
  }

  #product .product-tab-buttons > div {
    border-radius: 1.5rem 1.5rem 0 0;
    padding: 1rem 2rem;
    font-size: 20px;
  }

  #product .product-tab {
    border-radius: 0 0 1.5rem 1.5rem;
    padding: 2rem;
    margin-bottom: 7rem;
  }

  #product .product-tabs-wrapper {
    margin-top: 5rem;
  }
}

@media screen and (max-width: 767px) {
  product .product-tab-buttons {
    gap: 0.4rem;
  }
  #product .product-tab-buttons > div {
    padding: 1rem 1rem;
  }
}
