/* Custom styles bổ sung cho template bán quần áo */
:root {
  --primary: #111111;
  --accent: #c9a227;
  --light: #f8f6f2;
  --gray: #6b7280;
}

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

.btn-primary {
  background-color: #111;
  color: white;
  transition: all 0.2s;
}
.btn-primary:hover {
  background-color: #333;
}

.btn-accent {
  background-color: #c9a227;
  color: white;
}
.btn-accent:hover {
  background-color: #b08d1a;
}

.product-card {
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

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

@media (max-width: 768px) {
  .admin-sidebar {
    width: 100%;
    min-height: auto;
  }
}

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

/* Simple table styles for admin */
.admin-table th {
  background: #f9fafb;
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
}
.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
}


/* WebStore catalog demo notice */
.webstore-demo-bar{position:relative;z-index:80;display:flex;align-items:center;justify-content:center;gap:14px;min-height:38px;padding:8px 16px;background:#17130d;color:#fff7e6;font-size:12px;line-height:1.4;text-align:center}.webstore-demo-bar b{letter-spacing:.08em;color:#e5c35c}.webstore-demo-bar span{opacity:.82}.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}}
