:root {
  --accent-pink: #ffd6e0;
  --accent-rose: #ffb6c1;
  --mint: #d6fff0;
  --card-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  --radius: 14px;
  --brand: #ff6b9a;
}
body {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  background: linear-gradient(180deg, #fff 0%, #fff7fb 100%);
}
.navbar-brand {
  font-weight: 600;
  color: var(--brand);
}
.brand-icon {
  background: linear-gradient(135deg, var(--accent-pink), var(--mint));
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}
.product-card {
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.btn-accent {
  background: var(--brand);
  color: white;
  border-radius: 10px;
}
.btn-accent-outline {
  border: 1px solid var(--brand);
  color: var(--brand);
  background: transparent;
  border-radius: 10px;
}
/* .cart-bubble {
  position: relative;
}
.cart-bubble .badge {
  position: absolute;
  top: -8px;
  right: -8px;
} */

/* Ensure cart icon and badge display correctly */
.cart-bubble {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.cart-bubble .fa,
.cart-bubble .fa-solid {
  font-size: 1.05rem;
  /* color: var(--brand); */
}
.cart-bubble .badge {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 0.65rem;
  padding: 0.18rem 0.35rem;
}
footer {
  background: #fff;
  border-top: 1px dashed #eee;
}
.owner-badge {
  font-size: 13px;
  color: #9b4d6d;
  font-weight: 600;
}
@media (max-width: 576px) {
  .product-name {
    font-size: 0.95rem;
  }
}
