/* ============================================================
   Stock status corner tag — Pre-Order (orange) / In Stock (green)
   Sits at the top-left of the product image. Two placements share
   these styles: homepage loop cards (shortcode widget inside the
   Elementor loop template) and the single product hero image.
   ============================================================ */

.ic-stock-tag {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  /* top-left follows the image radius; bottom-right rounds inward */
  border-radius: 11px 0 12px 0;
  background: #c0400c;
  color: #fff;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2px;
  white-space: nowrap;
  pointer-events: none;
}

.ic-stock-tag--instock {
  background: #1b7a3d;
}

/* Single product hero: the image box is the positioning context and it
   already clips at 12px, so the tag corner matches the frame. */
.kuji-hero-main {
  position: relative;
}

.kuji-hero-main .ic-stock-tag {
  border-radius: 12px 0 12px 0;
  padding: 10px 20px;
  font-size: 15px;
}

@media (max-width: 767px) {
  .ic-stock-tag,
  .kuji-hero-main .ic-stock-tag {
    padding: 7px 12px;
    font-size: 12px;
  }
}