/* === RESET & VARIABLES === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0a0b10;
  --bg-raised: #0f1019;
  --card: #141520;
  --card-hover: #191a2a;
  --border: #1e2035;
  --border-light: #282a45;
  --accent: #6366f1;
  --accent-hover: #7c7ff7;
  --accent-glow: rgba(99, 102, 241, 0.15);
  --purple: #a855f7;
  --gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(99,102,241,0.12) 0%, rgba(168,85,247,0.12) 100%);
  --text: #e8eaf0;
  --text-secondary: #9498b0;
  --text-muted: #5f637a;
  --green: #22c55e;
  --green-bg: rgba(34,197,94,0.1);
  --red: #ef4444;
  --red-bg: rgba(239,68,68,0.1);
  --yellow: #eab308;
  --yellow-bg: rgba(234,179,8,0.1);
  --blue: #3b82f6;
  --blue-bg: rgba(59,130,246,0.1);
  --orange: #f97316;
  --sidebar-w: 240px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent-hover); text-decoration: none; transition: color .15s; }
a:hover { color: #a5b4fc; }

button {
  cursor: pointer; border: none; border-radius: var(--radius-sm);
  padding: 8px 16px; font-size: 13px; font-weight: 500; font-family: inherit;
  transition: all .2s ease;
}

input, select, textarea {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 10px 14px; color: var(--text); font-size: 13px; font-family: inherit; outline: none;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
input::placeholder { color: var(--text-muted); }

/* === LOGIN === */
#login-page {
  display: flex; align-items: center; justify-content: center;
  height: 100vh;
  background: var(--bg);
  background-image: radial-gradient(ellipse at 50% 0%, rgba(99,102,241,0.08) 0%, transparent 60%);
}
.login-wrapper { width: 100%; max-width: 400px; padding: 20px; }
.login-box {
  background: var(--card); border: 1px solid var(--border);
  padding: 48px 40px; border-radius: 20px; text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.login-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 8px; }
.logo-icon { display: flex; align-items: center; }
.login-box h1 { font-size: 24px; font-weight: 700; letter-spacing: -0.5px; }
.login-box h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.login-subtitle { color: var(--text-secondary); font-size: 14px; margin-bottom: 28px; }
.login-form { display: flex; flex-direction: column; gap: 12px; }
.login-form input { width: 100%; padding: 12px 16px; font-size: 14px; border-radius: var(--radius); }
.login-form button {
  width: 100%; padding: 12px; font-size: 14px; font-weight: 600;
  background: var(--gradient); color: white; border-radius: var(--radius);
}
.login-form button:hover { opacity: 0.9; transform: translateY(-1px); }
.login-error { color: var(--red); margin-top: 12px; font-size: 13px; }

/* === SIDEBAR === */
.sidebar {
  position: fixed; left: 0; top: 0; bottom: 0;
  width: var(--sidebar-w); background: var(--bg-raised);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column;
  z-index: 100;
  transition: transform .3s ease;
}
.sidebar-logo {
  display: flex; align-items: center; gap: 10px;
  padding: 20px 20px 24px; border-bottom: 1px solid var(--border);
}
.logo-icon-sm { display: flex; align-items: center; }
.logo-text { font-size: 16px; font-weight: 500; letter-spacing: -0.3px; }
.logo-text strong { font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.sidebar-nav { flex: 1; padding: 12px 10px; display: flex; flex-direction: column; gap: 4px; }
.nav-btn {
  display: flex; align-items: center; gap: 10px;
  background: transparent; color: var(--text-secondary); padding: 10px 14px;
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 500;
  text-align: left; width: 100%;
}
.nav-btn:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav-btn.active {
  color: white; background: var(--gradient-subtle);
  box-shadow: inset 0 0 0 1px rgba(99,102,241,0.2);
}
.nav-btn.active svg { stroke: var(--accent); }

.sidebar-footer {
  padding: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.btn-export {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  background: transparent; border: 1px solid var(--border); color: var(--text-secondary);
  padding: 10px 14px; border-radius: var(--radius-sm); font-size: 13px;
}
.btn-export:hover { border-color: var(--border-light); color: var(--text); background: rgba(255,255,255,0.02); }

/* === MOBILE TOPBAR === */
.mobile-topbar {
  display: none; position: fixed; top: 0; left: 0; right: 0; height: 56px;
  background: var(--bg-raised); border-bottom: 1px solid var(--border);
  padding: 0 16px; align-items: center; gap: 12px; z-index: 90;
}
.hamburger { background: none; color: var(--text); padding: 8px; }
.sidebar-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 99; backdrop-filter: blur(2px);
}

/* === MAIN CONTENT === */
.main-content {
  margin-left: var(--sidebar-w); min-height: 100vh;
  background: var(--bg);
}

.page-header { padding: 28px 32px 0; }
.page-title { font-size: 22px; font-weight: 700; letter-spacing: -0.5px; }
.page-subtitle { color: var(--text-secondary); font-size: 14px; margin-top: 4px; }

/* === STATS === */
.stats-grid {
  padding: 20px 32px; display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px;
}
.stat-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px; display: flex; flex-direction: column; gap: 6px;
  transition: border-color .2s, transform .2s;
}
.stat-card:hover { border-color: var(--border-light); transform: translateY(-1px); }
.stat-card .stat-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; margin-bottom: 4px;
}
.stat-card .stat-num { font-size: 28px; font-weight: 800; letter-spacing: -1px; line-height: 1; }
.stat-card .stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

.stat-total .stat-icon { background: var(--gradient-subtle); }
.stat-total .stat-num { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-new .stat-icon { background: var(--blue-bg); }
.stat-new .stat-num { color: var(--blue); }
.stat-researching .stat-icon { background: var(--yellow-bg); }
.stat-researching .stat-num { color: var(--yellow); }
.stat-testing .stat-icon { background: rgba(168,85,247,0.1); }
.stat-testing .stat-num { color: var(--purple); }
.stat-live .stat-icon { background: var(--green-bg); }
.stat-live .stat-num { color: var(--green); }
.stat-rejected .stat-icon { background: var(--red-bg); }
.stat-rejected .stat-num { color: var(--red); }

/* === SEARCH SECTION === */
.search-section {
  padding: 0 32px 16px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}
.search-box {
  flex: 1; min-width: 280px; position: relative; display: flex; align-items: center;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.search-box:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.search-icon { position: absolute; left: 14px; color: var(--text-muted); pointer-events: none; }
.search-box input {
  flex: 1; border: none; background: transparent; padding: 12px 14px 12px 42px;
  font-size: 14px;
}
.search-box input:focus { box-shadow: none; }
.btn-search {
  background: var(--gradient); color: white; padding: 10px 24px;
  margin: 4px; border-radius: var(--radius-sm); font-weight: 600; font-size: 13px;
  white-space: nowrap;
}
.btn-search:hover { opacity: 0.9; }

.country-select {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  min-width: 180px;
  transition: border-color .2s, box-shadow .2s;
}
.country-select:hover {
  border-color: var(--border-light);
}
.country-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.btn-autoscout {
  display: flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--border);
  color: var(--text); padding: 12px 20px; border-radius: var(--radius);
  font-weight: 600; font-size: 13px; white-space: nowrap;
}
.btn-autoscout:hover { border-color: var(--accent); background: var(--accent-glow); color: white; }
.btn-autoscout svg { stroke: var(--yellow); }

/* === FILTER CHIPS === */
.filter-bar {
  padding: 0 32px 16px; display: flex; gap: 6px; flex-wrap: wrap; align-items: center;
}
.filter-divider { width: 1px; height: 20px; background: var(--border); margin: 0 6px; }
.chip {
  padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 500;
  background: var(--card); border: 1px solid var(--border);
  color: var(--text-secondary); cursor: pointer; transition: all .2s;
}
.chip:hover { border-color: var(--border-light); color: var(--text); }
.chip.active { background: var(--accent); border-color: var(--accent); color: white; }
.chip-clear { background: var(--red-bg); border-color: rgba(239,68,68,0.2); color: var(--red); }
.chip-clear:hover { background: var(--red); color: white; border-color: var(--red); }

/* === PROGRESS === */
.progress-bar {
  height: 3px; background: var(--border); border-radius: 2px;
  overflow: hidden; margin: 0 32px 16px;
}
.progress-fill {
  height: 100%; background: var(--gradient); transition: width .3s;
  border-radius: 2px;
}

/* === CARDS GRID === */
.cards {
  padding: 0 32px 32px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 14px;
}
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; transition: all .25s ease; position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient); opacity: 0; transition: opacity .25s;
}
.card:hover { border-color: var(--border-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.card:hover::before { opacity: 1; }

.card-header { display: flex; justify-content: space-between; align-items: start; gap: 10px; margin-bottom: 6px; }
.card-domain { font-weight: 700; font-size: 15px; word-break: break-all; letter-spacing: -0.2px; }
.card-domain a { color: var(--text); }
.card-domain a:hover { color: var(--accent-hover); }
.card-title {
  color: var(--text-muted); font-size: 12px; margin-bottom: 10px; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-delete {
  background: transparent; color: var(--text-muted); padding: 4px 8px;
  border-radius: var(--radius-xs); font-size: 14px;
}
.card-delete:hover { background: var(--red-bg); color: var(--red); }

.card-meta { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; margin-bottom: 12px; }
.niche-tag {
  padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600;
  background: rgba(168,85,247,0.1); color: #c084fc; letter-spacing: 0.3px;
}
.status-badge { padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; letter-spacing: 0.3px; }
.status-new { background: var(--blue-bg); color: var(--blue); }
.status-researching { background: var(--yellow-bg); color: var(--yellow); }
.status-testing { background: rgba(168,85,247,0.1); color: var(--purple); }
.status-live { background: var(--green-bg); color: var(--green); }
.status-rejected { background: var(--red-bg); color: var(--red); }
.source-tag { font-size: 11px; color: var(--text-muted); }

.card-controls { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin-bottom: 10px; }
.card-controls select {
  font-size: 12px; padding: 6px 10px; border-radius: var(--radius-xs);
  background: var(--bg-raised); flex: 1; min-width: 100px;
}
.btn-validate {
  display: flex; align-items: center; gap: 4px;
  background: transparent; border: 1px solid var(--border); color: var(--text-secondary);
  padding: 6px 12px; border-radius: var(--radius-xs); font-size: 12px; font-weight: 500;
}
.btn-validate:hover { border-color: var(--green); color: var(--green); background: var(--green-bg); }

.btn-extract {
  display: flex; align-items: center; gap: 4px;
  background: transparent; border: 1px solid var(--border); color: var(--text-secondary);
  padding: 6px 12px; border-radius: var(--radius-xs); font-size: 12px; font-weight: 500;
}
.btn-extract:hover { border-color: var(--purple); color: var(--purple); background: rgba(168,85,247,0.1); }

.card textarea {
  width: 100%; height: 44px; font-size: 12px; resize: vertical;
  background: var(--bg-raised); border-radius: var(--radius-xs);
  padding: 8px 12px; line-height: 1.5;
}

.validation-result {
  margin-top: 10px; padding: 10px 14px; border-radius: var(--radius-sm);
  font-size: 12px; font-weight: 500; line-height: 1.5;
}
.validation-pass { background: var(--green-bg); color: var(--green); border: 1px solid rgba(34,197,94,0.15); }
.validation-fail { background: var(--red-bg); color: var(--red); border: 1px solid rgba(239,68,68,0.15); }

/* === LOADING & EMPTY === */
.loading-state {
  grid-column: 1 / -1; text-align: center; padding: 80px 20px;
  color: var(--text-muted);
}
.loading-state p { margin-top: 12px; font-size: 14px; }
.empty-state {
  grid-column: 1 / -1; text-align: center; padding: 80px 20px;
  color: var(--text-muted);
}
.empty-state .empty-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.5; }
.empty-state p { font-size: 14px; }

.spinner {
  display: inline-block; width: 28px; height: 28px;
  border: 3px solid var(--border); border-top-color: var(--accent);
  border-radius: 50%; animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* === FILTERS PAGE === */
.filters-page { padding: 20px 32px; max-width: 800px; }
.filter-add-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; margin-bottom: 16px;
}
.filter-add { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-add input { flex: 1; min-width: 150px; }
.btn-primary {
  display: flex; align-items: center; gap: 6px;
  background: var(--gradient); color: white; padding: 10px 20px;
  font-weight: 600; border-radius: var(--radius-sm);
}
.btn-primary:hover { opacity: 0.9; }

.filter-list { display: flex; flex-direction: column; gap: 6px; }
.filter-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); transition: border-color .2s;
}
.filter-item:hover { border-color: var(--border-light); }
.filter-item strong { font-weight: 600; font-size: 14px; }
.filter-item .filter-reason { color: var(--text-muted); font-size: 13px; margin-left: 8px; }
.btn-remove {
  background: transparent; border: 1px solid var(--border); color: var(--text-muted);
  padding: 6px 12px; font-size: 12px; border-radius: var(--radius-xs);
}
.btn-remove:hover { border-color: var(--red); color: var(--red); background: var(--red-bg); }

/* === TOAST === */
.toast {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--card); border: 1px solid var(--border);
  padding: 14px 24px; border-radius: var(--radius); font-size: 14px;
  z-index: 1000; box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  animation: toastIn .3s ease;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(16px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .mobile-topbar { display: flex; }
  .main-content { margin-left: 0; padding-top: 56px; }
  .page-header { padding: 20px 16px 0; }
  .stats-grid { padding: 16px; grid-template-columns: repeat(2, 1fr); }
  .search-section { padding: 0 16px 12px; }
  .filter-bar { padding: 0 16px 12px; }
  .cards { padding: 0 16px 16px; grid-template-columns: 1fr; }
  .filters-page { padding: 16px; }
  .progress-bar { margin: 0 16px 12px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .stat-card { padding: 14px; }
  .stat-card .stat-num { font-size: 22px; }
  .search-box { min-width: 100%; }
  .btn-autoscout { width: 100%; justify-content: center; }
}

/* === DISABLED BUTTONS === */
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* === PAGINATION === */
.pagination {
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.pagination button {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  pointer-events: auto;
}
.pagination button:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}
.pagination button:disabled {
  opacity: 0.3;
  pointer-events: none;
}
.pagination span {
  color: var(--text-secondary);
  font-size: 13px;
}

@media (max-width: 768px) {
  .pagination { padding: 12px 16px; }
}

/* === PRODUCTS PAGE === */
.product-stats { padding: 20px 32px 0; }

.product-filters {
  padding: 16px 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.filter-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
.filter-row select {
  flex: 1;
  min-width: 150px;
  font-size: 13px;
  padding: 10px 14px;
}
.btn-clear-filters {
  background: var(--red-bg);
  color: var(--red);
  border: 1px solid rgba(239,68,68,0.2);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
}
.btn-clear-filters:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
}

.product-cards {
  padding: 0 32px 32px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s ease;
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity .25s;
}
.product-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.product-card:hover::before { opacity: 1; }

.product-card.product-launched {
  border-color: rgba(34,197,94,0.3);
}

.product-image {
  width: 100%;
  height: 200px;
  background: var(--bg-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.no-image {
  color: var(--text-muted);
  font-size: 14px;
}

.product-info {
  padding: 16px;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 10px;
}

.product-score {
  font-size: 14px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.score-high {
  background: var(--green-bg);
  color: var(--green);
}
.score-medium {
  background: var(--yellow-bg);
  color: var(--yellow);
}
.score-low {
  background: var(--red-bg);
  color: var(--red);
}

.product-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  letter-spacing: 0.3px;
}
.badge-success {
  background: var(--green-bg);
  color: var(--green);
}
.badge-danger {
  background: var(--red-bg);
  color: var(--red);
}
.badge-launched {
  background: rgba(59,130,246,0.1);
  color: var(--blue);
}

.product-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-name a {
  color: var(--text);
}
.product-name a:hover {
  color: var(--accent-hover);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.product-store a,
.product-vendor {
  color: var(--text-muted);
}
.product-store a:hover {
  color: var(--accent-hover);
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.product-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}
.product-compare-price {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.product-margin {
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
  background: var(--green-bg);
  color: var(--green);
}

.product-issues {
  font-size: 12px;
  color: var(--red);
  background: var(--red-bg);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  line-height: 1.5;
}

.product-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.btn-launch {
  flex: 1;
  background: var(--gradient);
  color: white;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
}
.btn-launch:hover {
  opacity: 0.9;
}
.btn-unlaunch {
  flex: 1;
  background: var(--blue-bg);
  color: var(--blue);
  border: 1px solid rgba(59,130,246,0.2);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
}
.btn-unlaunch:hover {
  background: var(--blue);
  color: white;
}
.btn-delete-product {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
}
.btn-delete-product:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-bg);
}

@media (max-width: 768px) {
  .product-filters { padding: 0 16px 12px; }
  .product-cards { padding: 0 16px 16px; grid-template-columns: 1fr; }
}

.hidden { display: none !important; }

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.card { animation: fadeUp .3s ease backwards; }
.card:nth-child(1) { animation-delay: 0s; }
.card:nth-child(2) { animation-delay: .03s; }
.card:nth-child(3) { animation-delay: .06s; }
.card:nth-child(4) { animation-delay: .09s; }
.card:nth-child(5) { animation-delay: .12s; }
.card:nth-child(6) { animation-delay: .15s; }
.stat-card { animation: fadeUp .4s ease backwards; }
.stat-card:nth-child(1) { animation-delay: 0s; }
.stat-card:nth-child(2) { animation-delay: .05s; }
.stat-card:nth-child(3) { animation-delay: .1s; }
.stat-card:nth-child(4) { animation-delay: .15s; }
.stat-card:nth-child(5) { animation-delay: .2s; }
.stat-card:nth-child(6) { animation-delay: .25s; }
