/* assets/css/style.css */
:root{
  --brand-1: #ff6b6b;
  --muted: #6c757d;
  --card-radius: 12px;
}

body {
  background-color: #f5f7fa;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #222;
}

header {
  background: linear-gradient(135deg, #ff9966, #ff5e62);
  color: #fff;
}

.sidebar {
  min-height: 100vh;
  background: #212529;
  color: #ddd;
}

.sidebar .nav-link { color: #ccc; transition: .15s; }
.sidebar .nav-link:hover { color: #fff; padding-left: 6px; }

.card {
  border: none;
  border-radius: var(--card-radius);
  transition: transform .25s, box-shadow .25s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.product-card img {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: var(--card-radius);
  border-top-right-radius: var(--card-radius);
}

.product-image-container img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: transform .4s ease;
}

.product-image-container:hover img {
  transform: scale(1.04);
}

.price-tag { font-size: 2rem; color: #dc3545; font-weight: 700; }

footer {
  background: #212529;
  color: #fff;
  padding: 36px 0;
  margin-top: 32px;
}

@media (max-width: 767px) {
  .sidebar { display: none; }
}