:root {
  --focus-color: #097efb;
  --focus-color-dark-bg: #3b99fc;
}
@media (prefers-color-scheme: dark) {
  :root {
    --focus-color: #3b99fc;
    --focus-color-dark-bg: #097efb;
  }
}
.product-tile {
  display: block;
  width: 12.5rem;
  border: solid 1px #999;
  border-radius: 10px;
  margin: 0 auto;
  padding: 2.5rem 10px;
  position: relative;
  text-decoration: none;
  color: #111;
  overflow: hidden;
  text-align: center;
}
.enable__is-dark-mode .product-tile {
  color: #ededed;
}
.product-tile del,
.product-tile ins,
.product-tile mark {
  background-color: transparent;
}
.enable__is-dark-mode .product-tile del,
.enable__is-dark-mode .product-tile ins,
.enable__is-dark-mode .product-tile mark {
  color: #ededed;
}
.product-tile del,
.product-tile mark.del {
  text-decoration: line-through;
}
.product-tile__badge {
  position: absolute;
  top: 0;
  left: 0;
  background: #aaa;
  padding: 5px;
}
.enable__is-dark-mode .product-tile__badge {
  background: #550000;
}
.product-tile__name {
  font-weight: bold;
}
.product-tile__image {
  width: 100%;
}
.product-tile--not-as-good-example del::before,
.product-tile--not-as-good-example ins::before {
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  margin: -1px;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.product-tile--not-as-good-example del::before,
.product-tile--not-as-good-example mark.del::before {
  content: "Old price: ";
}
.product-tile--not-as-good-example ins::before,
.product-tile--not-as-good-example mark.ins::before {
  content: "Current price: ";
}
/*# sourceMappingURL=product-tile.css.map */