.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 64px;
  color: white;
  overflow: hidden;
}

.brand img {
  display: block;
  flex: none;
  width: 310px;
  height: 310px;
  max-width: none;
  object-fit: contain;
  filter: invert(1);
  mix-blend-mode: screen;
}

.product-image {
  background: #fff;
}

.product-image img {
  mix-blend-mode: normal;
}

.product-image.clean-stamp::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24%;
  height: 25%;
  background: #fff;
  pointer-events: none;
}

.cart-thumb {
  position: relative;
  display: block;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  overflow: hidden;
  background: #fff;
}

.cart-thumb.clean-stamp::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 26%;
  height: 26%;
  background: #fff;
  pointer-events: none;
}

@media (max-width: 720px) {
  .brand {
    width: 190px;
    height: 56px;
  }

  .brand img {
    width: 255px;
    height: 255px;
  }
}
