/* CK Single Product Sale Badge */
.woocommerce div.product { position: relative; }

/* Try to anchor badge to the product gallery container */
.woocommerce div.product div.images,
.woocommerce div.product .woocommerce-product-gallery {
  position: relative;
}

.ck-single-sale-badge{
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;

  background: #e11d48;
  color: #fff;
  box-shadow: 0 10px 18px rgba(0,0,0,.18);
  letter-spacing: .2px;
  text-transform: uppercase;
}

/* Mobile: slightly smaller */
@media (max-width: 767px){
  .ck-single-sale-badge{
    top: 10px;
    left: 10px;
    padding: 7px 10px;
    font-size: 12px;
  }
}

/* Avoid overlapping zoom icon (some themes) */
.woocommerce div.product .woocommerce-product-gallery__trigger{
  z-index: 3;
}
