#simple-variants label.hc-unavailable-variant-live {
  position: relative;
  opacity: 0.6;
  cursor: not-allowed;
  transition: all .2s ease;
  border: 1px dashed #d9d9d9;
  background: #f7f7f7;
}

/* zesvětlení pouze ikonky místo celého boxu */
#simple-variants label.hc-unavailable-variant-live .status-icon {
  opacity: 0.4;
}

#simple-variants label.hc-unavailable-variant-live:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* ===== Stavuniverzal (textové boxy) – nedostupné ===== */
.stavuniverzal-variant.hc-unavailable-variant-live {
  position: relative;
  opacity: 0.55;
  cursor: not-allowed;
  background: #f3f3f3 !important;
  border: 1px dashed #d0d0d0 !important;
}

/* šikmá čára přes box */
.stavuniverzal-variant.hc-unavailable-variant-live::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -10%;
  width: 120%;
  height: 2px;
  background: rgba(180, 0, 0, 0.35);
  transform: rotate(-20deg);
  pointer-events: none;
}

/* vypnutí hover efektu */
.stavuniverzal-variant.hc-unavailable-variant-live:hover {
  transform: none !important;
  box-shadow: none !important;
  background: #f3f3f3 !important;
  border: 1px dashed #d0d0d0 !important;
}