:root {
  --primary: #0f766e;      /* teal-700 */
  --primary-dark: #0d5c56;
  --accent: #f59e0b;       /* amber */
  --bg: #f8fafc;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #0f172a;
}

.btn-primary {
  background: var(--primary);
  color: white;
  transition: all 0.2s;
}
.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-accent {
  background: var(--accent);
  color: white;
}
.btn-accent:hover {
  background: #d97706;
}

.product-card {
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #e2e8f0;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #ef4444;
  color: white;
  font-size: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.admin-sidebar {
  width: 260px;
  min-height: 100vh;
}

.admin-table th {
  background: #f1f5f9;
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  font-size: 13px;
}
.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e2e8f0;
  font-size: 13px;
}

.flash-badge {
  background: linear-gradient(90deg, #ef4444, #f97316);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
}

.star {
  color: #f59e0b;
}

/* Scrollbar đẹp */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }


/* WebStore catalog demo notice */
.webstore-demo-bar{position:relative;z-index:90;display:flex;align-items:center;justify-content:center;gap:14px;min-height:38px;padding:8px 16px;background:#102421;color:#f6fffd;font-size:12px;line-height:1.4;text-align:center}.webstore-demo-bar b{letter-spacing:.08em;color:#f6bd55}.webstore-demo-bar span{opacity:.84}.webstore-demo-bar a{color:#fff;text-decoration:underline;text-underline-offset:3px;font-weight:700;white-space:nowrap}@media(max-width:640px){.webstore-demo-bar{flex-wrap:wrap;gap:4px 10px;padding:7px 10px}.webstore-demo-bar span{width:100%;font-size:11px}}
