@import url("productos_ly.css");

.productos>div {
  justify-content: space-between;
}
.productos article {
  margin-bottom: 20px;
}
.productos article:last-child {
  margin-bottom: 0;
}

.productos figure {
  margin: 0px;
  background-color: rgba(255, 255, 255, 0.247);
}
.productos figure img {
  background-color: white;
  border: 10px solid white;
}
.productos figure .oferta {
  text-align: center;
}
.productos figure .oferta>span {
  color: white;
  text-shadow: 0px 0px 9px #000;
  font-size: 1.2em;
  font-weight: bold;
  padding: 10px 14px;
  transform: rotate(-30deg) skew(0deg);
  background-color: rgba(var(--theme-color_), 0.85);
  transition: background-color var(--transitions);
}
.productos figure figcaption {
  padding: 15px;
  color: white;
  text-align: center;
  font-weight: 600;
  font-family: "Lora", serif;
  font-size: 1.4em;
  text-shadow: 0px 0px 5px #000;
  background-color: rgba(var(--theme-color_), 0.85);
  transition: background-color var(--transitions);
}
.productos figure figcaption>span {
  font-weight: 400;
  margin-top: 10px;
}
.productos figure figcaption>span>span {
  margin: 0 10px;
  color: rgb(255,90,90);
}

@media screen and (min-width: 485px) {
  .productos article:nth-child(n+3) {
    margin-bottom: 0;
  }
}
