/* Cache-busting layout update: 10% wider grid and visible stock line. */
.flpop {
  width: min(1254px, calc(100% - 2rem));
}

.flpop-card__stock {
  display: flex;
  align-items: center;
  gap: .4rem;
  min-height: 31px;
  padding: .42rem 1rem;
  color: #23733c;
  background: #fbfaf8;
  border-top: 1px solid var(--flpop-border);
  border-bottom: 1px solid var(--flpop-border);
  font-size: .72rem;
  font-weight: 750;
  line-height: 1.2;
}

.flpop-card__stock-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: #55b970;
  border-radius: 50%;
  box-shadow: 0 0 7px rgba(85, 185, 112, .55);
}

.flpop-card__stock--order { color: #9a5b13; }
.flpop-card__stock--order .flpop-card__stock-dot { background: #f0a444; box-shadow: 0 0 7px rgba(240, 164, 68, .5); }
.flpop-card__stock--unavailable { color: #9a3530; }
.flpop-card__stock--unavailable .flpop-card__stock-dot { background: #db655d; box-shadow: none; }

@media (max-width: 600px) {
  .flpop { width: 100%; }
}

