/*
 * Public "В наличии" marker for catalog cards and product details.
 */

.bellstore-stock-badge {
  width: fit-content;
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
  color: #269447;
  font-family: Arial, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
}

.bellstore-stock-badge__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #34c759;
  box-shadow: 0 0 0 3px rgba(52, 199, 89, 0.12);
}

.bellstore-stock-badge--detail {
  min-height: 28px;
  gap: 8px;
  margin: 10px 0 2px;
  padding: 0 11px;
  border: 1px solid rgba(52, 199, 89, 0.18);
  border-radius: 999px;
  background: rgba(52, 199, 89, 0.08);
  color: #23833f;
  font-size: 13px;
}

.bellstore-stock-badge--detail .bellstore-stock-badge__dot {
  width: 8px;
  height: 8px;
  flex-basis: 8px;
}

.home-widget-card .bellstore-stock-badge,
.spotlight-search__item .bellstore-stock-badge {
  min-height: 17px;
  margin-top: 5px;
  font-size: 10px;
}

.spotlight-search__item .bellstore-stock-badge__dot {
  width: 6px;
  height: 6px;
  flex-basis: 6px;
  box-shadow: 0 0 0 2px rgba(52, 199, 89, 0.12);
}

@media (max-width: 767px) {
  .bellstore-stock-badge {
    margin-top: 6px;
    font-size: 10.5px;
  }

  .bellstore-stock-badge--detail {
    margin-top: 8px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bellstore-stock-badge,
  .bellstore-stock-badge__dot {
    animation: none !important;
  }
}
