body {
  background: #f8fafc;
  color: #0f172a;
}

.hero {
  background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 100%);
  border-bottom: 1px solid #e2e8f0;
}

.tools-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1rem;
}

.summary-text {
  font-weight: 600;
  color: #334155;
}

.chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.chip-btn {
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #fff;
  color: #334155;
  font-size: .85rem;
  padding: .35rem .8rem;
}

.chip-btn:hover {
  border-color: #3b82f6;
  color: #1d4ed8;
}

.brand-section {
  margin-bottom: 2rem;
}

.brand-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .9rem;
}

.brand-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-count {
  font-size: .85rem;
  color: #64748b;
}

.pieza-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  transition: transform .15s ease, box-shadow .15s ease;
}

.pieza-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, .08);
}

.pieza-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #f1f5f9;
}

.pieza-body {
  padding: .9rem;
}

.pieza-title {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

.pieza-meta {
  color: #64748b;
  font-size: .82rem;
  margin-bottom: .2rem;
}

.pieza-price {
  color: #16a34a;
  font-size: 1rem;
  font-weight: 700;
  margin-top: .3rem;
}

.pieza-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid #dbeafe;
  background: #eff6ff;
  color: #1d4ed8;
  border-radius: 999px;
  font-size: .75rem;
  padding: .15rem .55rem;
  margin-top: .45rem;
}

.pieza-actions {
  display: flex;
  gap: .45rem;
  margin-top: .7rem;
}

.pieza-actions .btn {
  flex: 1;
}
