/* Shop detail page: open/closed status + sports icons (reuses court.css for the rest) */

.shop-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.shop-status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.shop-status--open {
  background: rgba(22, 163, 74, 0.12);
  color: #16a34a;
}

.shop-status--open .shop-status__dot {
  background: #16a34a;
}

.shop-status--closed {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.shop-status--closed .shop-status__dot {
  background: #dc2626;
}

.shop-sports {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 0.5rem;
}

.shop-sport {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 78px;
}

.shop-sport__icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 151, 233, 0.08);
  border: 1px solid rgba(13, 151, 233, 0.18);
}

.shop-sport__icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.shop-sport__name {
  font-size: 0.78rem;
  color: #475569;
  text-align: center;
  line-height: 1.2;
  word-break: break-word;
}
