/* 출장마사지 업체 카드 그리드 */
.shop-cards-section {
  padding-top: 32px;
}

.shop-cards-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.shop-cards-count {
  font-size: 14px;
  color: var(--muted);
  font-weight: 800;
}

.shop-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.shop-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.shop-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.shop-card-image-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.shop-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 5px 10px;
  border-radius: 999px;
}

.shop-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.shop-card-name {
  margin: 0;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.35;
}

.shop-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}

.shop-card-rating {
  color: #ffb020;
  font-weight: 900;
}

.shop-card-price {
  color: var(--accent);
  font-weight: 900;
}

.shop-card-location {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.shop-card-greeting {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shop-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.shop-card-tag {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 700;
}

.shop-cards-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 32px 20px;
  border: 1px dashed var(--border);
  border-radius: 16px;
  color: var(--muted);
}

@media (max-width: 600px) {
  .shop-cards-grid {
    grid-template-columns: 1fr;
  }
}
