.menu-section {
  margin: 0 auto;
  font-family: AvenirNext-Regular;
  font-weight: 700;
}

.tab-container {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: 0 auto;
  font-family: "Avenir";
  font-weight: 700;
}

.tab-menu--desktop {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.tab-menu--mobile {
  display: none;
}

.tab-menu__select {
  height: 40px;
  width: 150px;
  font-family: "Lulo";
  text-align: center;
}

/* .tab-menu__select option {
} */

.tab-menu__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Avenir";
  font-weight: 700;
  overflow-x: auto;
  max-width: 90%;
  touch-action: auto;
}

.tab-menu__item {
  position: relative;
  margin-right: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tab-menu__item--active .tab-menu__link {
  opacity: 1;
}

.tab-menu__link {
  font-family: "Lulo";
  font-size: 27px;
  color: rgba(26, 26, 26, 1);
  opacity: 0.5;
  text-decoration: none;
  margin-bottom: 8px;
}

.tab-menu__link:hover,
.tab-menu__link:active {
  color: var(--color-black);
  opacity: 1;
  cursor: pointer;
}

.tab-menu__item:not(:last-child):after {
  content: " ";
  height: 25px;
  margin: auto;
  padding-right: 11px;
  border-right: 2px solid rgba(26, 26, 26, 0.5);
}

.tab-content {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: 0 auto;
}

.tab-content__panel {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tab-content__panel--active {
  display: flex;
}

.tab-content__panel em {
  text-align: center;
}

.tab-content__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  grid-column: 1 / -1;
}

.tab-content__header--two {
  margin-bottom: 1rem;
}

.tab-content__header h2 {
  font-family: "Lulo";
  font-size: 1rem;
  color: var(--color-black);
  margin-top: 2rem;
}

.tab-content__header p {
  font-style: italic;
  font-weight: 300;
  color: #494949;
  width: 90%;
}

.line--black {
  width: 100px;
}

.product-card__title {
  margin: 0.5rem 0 1rem;
}

.product-card__line {
  border: 2px solid var(--color-red);
  width: 50%;
  margin: 0 auto 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 3rem;
    margin: 0 auto 3rem;
    width: 90%;
}

.product-card {
  border: 1px solid #ccc;
  padding: 16px;
  text-align: center;
  position: relative;
}

.product-card__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.etiqueta-destacado {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.product-card__image.destacado {
    border: 2px solid var(--color-red);
}

/* .product-card__info {
}

.product-card__description {
} */

@media (max-width: 768px) {
  .tab-menu--desktop {
    display: none;
  }

  .tab-menu--mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
}
