/* Circular badge styles */
.psb-thumb-wrap { position: relative; display: inline-block; }
.psb-circle {
  position: absolute;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  text-align: center;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
  transform: translate(0,0);
}
.psb-circle .psb-circle-text { padding: 8px; line-height:1; }

/* positions */
.psb-top-right { top: 12px; right: 12px; }
.psb-top-left { top: 12px; left: 12px; }
.psb-bottom-left { bottom: 12px; left: 12px; }
.psb-bottom-right { bottom: 12px; right: 12px; }

/* responsive: smaller on mobile */
@media (max-width: 480px) {
  .psb-circle { width: 64px; height: 64px; font-size: 11px; }
  .psb-circle .psb-circle-text { padding: 6px; }
}
