:root {
  --primary: #e63946;
  --primary-600: #cf2c39;
  --bg-soft: #f8f9fa;
}
body { font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif; }
.hero-section { background: linear-gradient(180deg, #fff, var(--bg-soft)); }
.category-card img, .product-card img { object-fit: cover; height: 180px; }
.price { color: var(--primary-600); }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1080;
  background: #ffffff; border-top: 1px solid #e5e7eb; padding: 12px 0;
  box-shadow: 0 -4px 10px rgba(0,0,0,.05);
}

body.cookie-open { padding-bottom: 68px; }

/* Simple animations */
[data-animate] { opacity: 0; transform: translateY(10px); transition: opacity .6s ease, transform .6s ease; }
[data-animate].in-view { opacity: 1; transform: none; }
[data-animate="slide-in-left"] { transform: translateX(-16px); }
[data-animate="slide-in-left"].in-view { transform: translateX(0); }

/* Minor tweaks */
.navbar-brand span { letter-spacing: .2px; }
.badge { border-radius: 999px; }
.modal .list-group-item { display: flex; align-items: center; justify-content: space-between; }


