/* Ikonka místo počtu kusů + tooltip */
.stock-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #999;
  color: #999;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  cursor: help;
  position: relative;
  vertical-align: middle;
  font-family: Arial, Helvetica, sans-serif;
}

.stock-info-icon .stock-tooltip {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  text-align: left;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.4;
  white-space: normal;
  width: 220px;
  z-index: 999;
  transition: opacity 0.15s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.stock-info-icon .stock-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.stock-info-icon:hover .stock-tooltip,
.stock-info-icon:focus .stock-tooltip {
  visibility: visible;
  opacity: 1;
}

/* Upozornění pod polem množství v košíku - plovoucí box, neovlivňuje layout okolo */
.cart-amount-warning {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  background: #fff6f6;
  border: 1px solid #f0b8b8;
  color: #b73a3a;
  font-size: 12px;
  line-height: 1.4;
  padding: 6px 10px;
  border-radius: 0px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  width: max-content;
  max-width: 260px;
  z-index: 50;
}

.cart-amount-warning.active {
  display: block;
}