/* assets/style.css */
body { background: #f5f7fb; font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; }
.navbar { background: linear-gradient(90deg, #0d6efd 0%, #0b5ed7 100%); }
.product-card { border: 1px solid rgba(13,110,253,0.08); border-radius: 12px; box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04); transition: transform .18s ease, box-shadow .18s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(16,24,40,0.08); }
.card-title { font-size: 1.02rem; margin-bottom: .5rem; color: #0b2545; }
.btn-outline-primary { border-radius: 10px; }
.list-group-item.active { background: #0d6efd; border-color: #0d6efd; color: #fff; }
.badge { border-radius: 8px; padding: .35rem .6rem; }
