.product-teaser {
  position: relative;
}
.product-teaser .product-tag {
  background: #00C4FF;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  padding: 4px 10px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
}
.product-teaser .organic-icon {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  background: url("/themes/custom/drutheme/dist/assets/icons/organic.png.webp") no-repeat center center;
  background-size: 100%;
  z-index: 99;
}
.product-teaser__image {
  position: relative;
}
.product-teaser__image::after {
  content: "";
  display: block;
  padding-bottom: 140%;
}
.product-teaser__image a:hover img {
  opacity: 0.8;
}
.product-teaser__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  transition: opacity 0.3s ease-in-out;
  border: 1px solid #d1d3d9;
}
.product-teaser__bottom {
  position: relative;
}
.product-teaser__bottom__inner {
  position: relative;
  z-index: 15;
  padding-top: 15px;
  background: #fff;
}
.product-teaser__colors {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 14;
  display: none;
}
.product-teaser__colors .field--name-field-colors {
  display: flex;
  padding: 5px 0 10px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.product-teaser__title {
  margin-bottom: 0;
}
.product-teaser__title a {
  text-decoration: none;
}
.product-teaser__info {
  font-size: 12px;
  margin-top: 5px;
}
.product-teaser__info__from-price {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
.product-teaser__info__from-price .field--name-price {
  display: inline-block;
  margin: 0 4px;
}
@media (min-width: 640px) {
  .product-teaser__info {
    font-size: 16px;
  }
}
.product-teaser:hover .product-teaser__colors {
  transform: translateY(-100%);
  opacity: 1;
}