/* Tabs */
.ui-tabs {}
.ui-tabs-buttons {}
.ui-tab-button a {
  cursor: pointer;
  transition: background-color 0.3s;
}
.ui-tab-button.active a {
 
}
.ui-tabs-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  width: 100%;
  transition: opacity 0.5s ease;
}
.ui-tabs-content.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

#guia-de-tallas .ui-tab-button a {
  border: solid 2px #000 !important;
  background-color: #fff;
  color: #000;
}
#guia-de-tallas .ui-tab-button.active a {
  background-color: #000;
  color: #fff;
}

#productos-destacados .ui-tabs-buttons {
    gap: 50px;
}
#productos-destacados .ui-tab-button a {
    font-weight: bold;
    padding: 0;
    opacity: .5;
}
#productos-destacados .ui-tab-button.active a {
    opacity: 1;
}
