/* Basic look */
body { font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; color:#222; }

/* Hero */
.hero {
  background: linear-gradient(90deg, #007bff 0%, #00b4d8 100%);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  color: #fff;
}

/* Product card style */
.product-card {
  border-radius: 12px;
  overflow: hidden;
  border: 0;
  transition: transform .28s ease, box-shadow .28s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(2, 6, 23, 0.12);
}

.product-img {
  height: 190px;
  object-fit: cover;
  width: 100%;
}

/* Price badge */
.price-tag {
  display:inline-block;
  background: linear-gradient(90deg,#ff9a9e,#fecfef);
  color: #8b0000;
  font-weight:700;
  padding:6px 10px;
  border-radius:8px;
}

/* Small utilities */
.card-text { color: #555; font-size: .95rem; }
.badge-cat { text-transform:capitalize; }

/* Cart offcanvas tweaks */
.offcanvas { width: 420px; max-width: 100%; }
.offcanvas .btn { border-radius: 8px; }

/* Responsive tweaks */
@media (max-width: 576px) {
  .product-img { height: 150px; }
}