:root {
  --sm-primary: #4e5a4c;
  --sm-primary-600: #3a4436;
  --sm-accent: #4e5a4c;
  --sm-text: #1f2937;
  --sm-muted: #6b7280;
  --sm-bg: #ffffff;
  --sm-bg-soft: #fef4f4;
  --sm-border: #e5e7eb;
  --sm-radius: 16px;
  --sm-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.sm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.sm-card {
  border-radius: var(--sm-radius);
  border: 1px solid var(--sm-border);
  background: var(--sm-bg);
  box-shadow: var(--sm-shadow);
  overflow: hidden;
  position: relative;
}

.sm-media {
  aspect-ratio: 16/9;
  background: #eef2f7;
}

.sm-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sm-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--sm-accent);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
}

.sm-card-body {
  padding: 16px;
}

.sm-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 6px 0 8px;
}

.sm-meta {
  font-size: .95rem;
  color: var(--sm-muted);
  margin-bottom: 6px;
}

.sm-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sm-price {
  font-size: 1.2rem;
  font-weight: 900;
}

.sm-pill {
  border: 1px solid var(--sm-border);
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 800;
  background: #fff;
}

.sm-btn {
  display: inline-flex;
  align-items: center;
  padding: .75em 1.1em;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: .25s ease;
}

.sm-btn--buy {
  background: var(--sm-primary);
  color: #fff;
}

.sm-btn--buy:hover {
  background: var(--sm-primary-600);
}
