html, body { overflow-x: hidden; max-width: 100vw; }

.btn-primary {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
  color: white;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-block;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #e11d48, #be123c);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(244,63,94,0.3);
}
.btn-outline {
  border: 2px solid #f43f5e;
  color: #f43f5e;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover {
  background: #f43f5e;
  color: white;
}
.badge-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.product-card { transition: transform 0.2s; }
.product-card:hover { transform: translateY(-2px); }
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
