.cristaleria {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 2rem 0;
}

.productos__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.card__cristal {
  flex-wrap: wrap;
  display: flex;
  width: 80%;
  padding: 2rem;
  background: rgb(0 255 217 / 49%);
  margin-bottom: 20px;
  border-radius: 25px;
}
.card__cristal--single {
  justify-content: center;
}
.container__descripcion {
  display: flex;
  align-items: center;
  width: 49%;
  justify-content: center;
  flex-wrap: wrap;
}
.img__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
}
.img__cristal {
  width: 60%;
  min-width: 17rem;
  max-width: 30rem;
  object-fit: cover;
  height: 36dvh;
  border-radius: 24px;
  box-shadow: 0 0 1px black;
}
.description {
  display: flex;
  flex-direction: column;
  padding: 1rem 0 2rem 0;
}
.container__trago {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49%;
  flex-wrap: wrap;
  gap: 1rem;
}
.container__trago img {
  width: 19%;
  min-width: 17rem;
  max-width: 30rem;
  width: 60%;
}

.copa__conac {
  width: 10rem;
}
.ingredientes h3 {
  font-size: 1.5rem;
  font-weight: bold;
}
.ingredientes__item {
  list-style-type: disc;
  font-size: 1.4rem;
}
.cristal__nombre {
  font-size: 1.6rem;
  margin-top: 2rem;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .container__descripcion {
    flex-direction: column;
    width: 100%;
  }
  .container__trago {
    flex-direction: column;
  }
  .card__cristal {
    width: 100%;
    justify-content: center;
  }
  .cristal__nombre {
    margin-bottom: 2rem;
  }
}
