/* SellerActions - Shared Styles */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-primary: #f5f7fa;
  --bg-secondary: #edf0f5;
  --bg-card: #ffffff;
  --bg-card-hover: #f8f9fc;
  --bg-surface: #f0f2f7;
  --border: #dde1e8;
  --border-hover: #c5cbd6;
  --text-primary: #1a1f2e;
  --text-secondary: #4a5568;
  --text-muted: #8492a6;
  --accent: #0891b2;
  --accent-dim: #0e7490;
  --accent-glow: rgba(8, 145, 178, 0.10);
  --accent-glow-strong: rgba(8, 145, 178, 0.18);
  --green: #059669;
  --green-bg: rgba(5, 150, 105, 0.08);
  --orange: #ea580c;
  --pink: #db2777;
  --purple: #7c3aed;
  --red: #dc2626;
  --yellow: #d97706;
  --blue: #2563eb;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.10);
  --transition: all 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(245, 247, 250, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.15rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; color: #fff;
}
.nav-logo-text { color: var(--text-primary); }
.nav-logo-text span { color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  color: var(--text-secondary); font-size: 0.88rem;
  font-weight: 500; padding: 8px 14px; border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text-primary); background: rgba(0,0,0,0.04); }
.nav-links a.active { color: var(--accent); }

.nav-right { display: flex; align-items: center; gap: 12px; }

.nav-cart {
  position: relative; display: flex; align-items: center; gap: 6px;
  color: var(--text-secondary); font-size: 0.88rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: var(--transition); background: none; border: none;
}
.nav-cart:hover { color: var(--text-primary); background: rgba(0,0,0,0.04); }
.nav-cart svg { width: 20px; height: 20px; }
.cart-badge {
  position: absolute; top: 2px; right: 6px;
  background: var(--accent); color: #fff;
  font-size: 0.65rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0); transition: transform 0.2s ease;
}
.cart-badge.visible { transform: scale(1); }

.btn-nav {
  background: var(--accent); color: #fff;
  padding: 8px 20px; border-radius: 8px;
  font-weight: 600; font-size: 0.85rem;
  border: none; transition: var(--transition);
}
.btn-nav:hover { background: var(--accent-dim); transform: translateY(-1px); }
.btn-nav-logout {
  background: none; border: none; color: var(--text-muted);
  padding: 6px; border-radius: 6px; cursor: pointer;
  display: flex; align-items: center; transition: var(--transition);
}
.btn-nav-logout:hover { color: var(--red); background: rgba(239,68,68,0.1); }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; cursor: pointer; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: 16px; min-width: 560px; max-height: 75vh; overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5); z-index: 1000;
  display: none; grid-template-columns: 1fr 1fr; gap: 4px;
  margin-top: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu { display: grid; }
.nav-dropdown-group { padding: 8px 0; }
.nav-dropdown-cat {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-muted); padding: 4px 12px 6px;
}
.nav-dropdown-item {
  display: block; padding: 6px 12px; font-size: 0.82rem;
  color: var(--text-secondary); border-radius: 6px;
  transition: var(--transition); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.nav-dropdown-item:hover { background: var(--bg-secondary); color: var(--text-primary); }
@media (max-width: 768px) {
  .nav-dropdown-menu { display: none !important; }
}

.mobile-toggle {
  display: none; background: none; border: none;
  color: var(--text-primary); padding: 8px;
}
.mobile-toggle svg { width: 24px; height: 24px; }

/* Mobile nav */
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--bg-secondary); z-index: 999;
  padding: 24px; overflow-y: auto;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  display: block; padding: 14px 16px; color: var(--text-secondary);
  font-size: 1rem; font-weight: 500; border-radius: 8px;
  transition: var(--transition);
}
.mobile-menu a:hover { background: rgba(0,0,0,0.04); color: var(--text-primary); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 14px 32px; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem;
  border: none; transition: var(--transition);
}
.btn-primary:hover {
  background: var(--accent-dim); transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow-strong);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--bg-card); color: var(--text-primary);
  padding: 14px 32px; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem;
  border: 1px solid var(--border); transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--border-hover); background: var(--bg-card-hover); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--accent);
  padding: 12px 24px; border-radius: 10px;
  font-weight: 600; font-size: 0.88rem;
  border: 1px solid var(--accent); transition: var(--transition);
}
.btn-outline:hover { background: var(--accent-glow); }

.btn-sm { padding: 10px 20px; font-size: 0.85rem; border-radius: 8px; }
.btn-full { width: 100%; }

.btn-success {
  background: var(--green); color: #fff;
  padding: 14px 32px; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem;
  border: none; transition: var(--transition);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-success:hover { opacity: 0.9; transform: translateY(-2px); }

.btn-ghost {
  background: transparent; color: var(--text-secondary);
  padding: 10px 20px; border-radius: 8px;
  font-weight: 500; font-size: 0.85rem;
  border: 1px solid var(--border); transition: var(--transition);
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-ghost:hover { color: var(--text-primary); border-color: var(--border-hover); }

/* ===== HERO ===== */
.hero {
  padding: 176px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; max-width: 780px; margin: 0 auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-glow); border: 1px solid rgba(0,194,209,0.2);
  padding: 6px 16px; border-radius: 100px; font-size: 0.8rem;
  color: var(--accent); font-weight: 500; margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero h1 em { font-style: normal; color: var(--accent); }

.hero p {
  font-size: 1.15rem; color: var(--text-secondary);
  max-width: 560px; margin: 0 auto 36px; line-height: 1.7;
}

.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border); border-radius: var(--radius);
  overflow: hidden; margin: 60px auto 0; max-width: 800px;
}
.stat-item { background: var(--bg-secondary); padding: 24px 16px; text-align: center; }
.stat-item .num {
  font-size: 1.6rem; font-weight: 700; color: var(--accent);
  display: block; font-family: 'JetBrains Mono', monospace;
}
.stat-item .label {
  font-size: 0.78rem; color: var(--text-muted); margin-top: 4px;
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* ===== PLATFORMS STRIP ===== */
.platforms { padding: 48px 0; border-bottom: 1px solid var(--border); }
.platforms-label {
  text-align: center; font-size: 0.8rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px;
}
.platforms-row {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap; opacity: 0.7;
}
.platforms-row span {
  font-size: 1.1rem; font-weight: 600; color: var(--text-secondary);
  letter-spacing: 0.02em;
}
.platform-logo {
  height: 28px; width: auto;
  filter: grayscale(100%) brightness(0.8);
  opacity: 0.6;
  transition: all 0.3s ease;
}
.platform-logo:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

/* ===== ALL-INCLUSIVE BUNDLE ===== */
.bundle-header { margin-bottom: 32px; }
.bundle-title-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 8px;
}
.bundle-logo {
  display: flex; align-items: center; gap: 14px;
}
.bundle-logo-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), #a78bfa);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; color: #fff;
}
.bundle-logo h2 {
  font-size: 1.8rem; font-weight: 700; margin: 0;
}
.bundle-app-count {
  font-size: 1.1rem; font-weight: 700; color: var(--text-primary);
  font-family: 'JetBrains Mono', monospace;
}
.bundle-subtitle {
  font-size: 1rem; color: var(--text-secondary); margin-top: 4px;
}
.bundle-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.bundle-explore {
  font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 28px;
}
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.bundle-category h4 {
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 16px;
}
.bundle-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
}
.bundle-item-icon {
  width: 36px; height: 36px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}
.bundle-item-info {
  display: flex; flex-direction: column;
}
.bundle-item-info strong {
  font-size: 0.88rem; font-weight: 600; color: var(--text-primary);
  line-height: 1.3;
}
.bundle-item-info span {
  font-size: 0.75rem; color: var(--text-muted); line-height: 1.4;
}
.btn-lg { padding: 16px 40px; font-size: 1.05rem; border-radius: 12px; }

/* ===== SECTION HEADERS ===== */
.section { padding: 80px 0; }
.section-bordered { border-top: 1px solid var(--border); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em;
}
.section-header p { color: var(--text-secondary); max-width: 520px; margin: 0 auto; }

.section-header-left { margin-bottom: 32px; }
.section-header-left h2 {
  font-size: 1.5rem; font-weight: 700; margin-bottom: 8px;
}
.section-header-left p { color: var(--text-secondary); }

/* ===== SEARCH ===== */
.search-wrap { max-width: 480px; margin: 0 auto 32px; position: relative; }
.search-wrap input {
  width: 100%; padding: 14px 20px 14px 48px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; color: var(--text-primary); font-size: 0.92rem;
  font-family: inherit; outline: none; transition: border-color .2s;
}
.search-wrap input::placeholder { color: var(--text-muted); }
.search-wrap input:focus { border-color: var(--accent); }
.search-wrap svg {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  color: var(--text-muted); width: 20px; height: 20px;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  background: var(--bg-card); color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 9px 18px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 500;
  cursor: pointer; transition: var(--transition);
  font-family: inherit; white-space: nowrap;
}
.filter-btn:hover { border-color: var(--border-hover); color: var(--text-primary); }
.filter-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.filter-count {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.08); border-radius: 50%;
  width: 18px; height: 18px; font-size: 0.7rem; margin-left: 4px; font-weight: 600;
}
.filter-btn.active .filter-count { background: rgba(0,0,0,0.2); }

/* ===== TOOL CARDS ===== */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  text-decoration: none; color: inherit;
  box-shadow: var(--shadow-sm);
}
.tool-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tool-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }

.tool-icon {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

.tool-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem; font-weight: 600; color: #047857;
  background: rgba(5,150,105,0.08); padding: 4px 10px;
  border-radius: 6px;
}

.tool-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; line-height: 1.4; }
.tool-card .desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; flex-grow: 1; margin-bottom: 16px; }

.tool-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.tool-tag {
  font-size: 0.72rem; padding: 3px 9px; border-radius: 5px;
  font-weight: 500; border: 1px solid;
}
.tag-amazon { color: #c2410c; border-color: rgba(194,65,12,0.25); background: rgba(251,146,60,0.10); }
.tag-shopify { color: #047857; border-color: rgba(4,120,87,0.25); background: rgba(52,211,153,0.10); }
.tag-walmart { color: #1d4ed8; border-color: rgba(29,78,216,0.25); background: rgba(96,165,250,0.10); }
.tag-multi { color: #6d28d9; border-color: rgba(109,40,217,0.25); background: rgba(167,139,250,0.10); }
.tag-tiktok { color: #be185d; border-color: rgba(190,24,93,0.25); background: rgba(244,114,182,0.10); }
.tag-ebay { color: #b45309; border-color: rgba(180,83,9,0.25); background: rgba(251,191,36,0.10); }
.tag-etsy { color: #c2410c; border-color: rgba(194,65,12,0.25); background: rgba(249,115,22,0.10); }

.tool-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }

.tool-score {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--text-muted);
}
.score-bar { width: 48px; height: 4px; border-radius: 2px; background: var(--border); overflow: hidden; }
.score-fill { height: 100%; border-radius: 2px; background: var(--accent); }

.tool-cta-link {
  font-size: 0.82rem; color: var(--accent); font-weight: 600;
  display: flex; align-items: center; gap: 4px; transition: gap .2s;
}
.tool-cta-link:hover { gap: 8px; }

.badge-top {
  position: absolute; top: 0; right: 24px;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  padding: 4px 10px 6px; border-radius: 0 0 6px 6px; letter-spacing: 0.04em;
}
.badge-featured { background: var(--accent); color: #fff; }
.badge-new { background: var(--purple); color: #fff; }
.badge-live { background: var(--green); color: #fff; }

.live-indicator {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.7rem; color: var(--green); font-weight: 600;
}
.live-indicator .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: pulse-dot 1.5s infinite;
}

.trial-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; color: var(--accent); font-weight: 600;
  background: var(--accent-glow); padding: 3px 10px;
  border-radius: 100px; border: 1px solid rgba(0,194,209,0.2);
}

.no-results { text-align: center; padding: 48px 0; color: var(--text-muted); display: none; }

/* ===== CATEGORY GRID ===== */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  display: block;
}
.category-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.category-card-icon {
  font-size: 1.8rem; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 12px;
}
.category-card h3 {
  font-size: 1.05rem; font-weight: 600; margin-bottom: 8px;
}
.category-card p {
  font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6;
  margin-bottom: 12px;
}
.category-card-count {
  font-size: 0.78rem; color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

/* ===== PRODUCT DETAIL ===== */
.product-hero {
  padding: 148px 0 60px;
  border-bottom: 1px solid var(--border);
}
.product-hero-inner {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 48px; align-items: start;
}

.product-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: 20px;
}
.product-breadcrumb a { color: var(--text-secondary); transition: color .2s; }
.product-breadcrumb a:hover { color: var(--accent); }
.product-breadcrumb svg { width: 14px; height: 14px; }

.product-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; margin-bottom: 16px; line-height: 1.2;
}

.product-meta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 20px;
}

.product-desc {
  font-size: 1rem; color: var(--text-secondary);
  line-height: 1.8; margin-bottom: 24px;
}

.product-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky; top: 88px;
}
.product-sidebar-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.6rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 4px;
}
.product-sidebar-trial {
  font-size: 0.85rem; color: var(--accent); margin-bottom: 24px;
}
.product-sidebar .btn-primary { margin-bottom: 12px; }
.product-sidebar-features {
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid var(--border);
}
.product-sidebar-features li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; font-size: 0.88rem; color: var(--text-secondary);
}
.product-sidebar-features li svg {
  width: 16px; height: 16px; color: var(--green);
  flex-shrink: 0; margin-top: 3px;
}

/* Product sections */
.product-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.feature-card h4 {
  font-size: 0.95rem; font-weight: 600; margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.feature-card h4 svg { width: 18px; height: 18px; color: var(--accent); }
.feature-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

.how-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.how-step { text-align: center; padding: 32px 24px; }
.how-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent-glow); border: 1px solid rgba(0,194,209,0.2);
  color: var(--accent); font-weight: 700; font-size: 1.1rem;
  margin-bottom: 16px; font-family: 'JetBrains Mono', monospace;
}
.how-step h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 8px; }
.how-step p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

.use-case-list { display: flex; flex-direction: column; gap: 12px; }
.use-case-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem; color: var(--text-secondary); line-height: 1.5;
}
.use-case-item svg {
  width: 18px; height: 18px; color: var(--accent);
  flex-shrink: 0; margin-top: 2px;
}

/* ===== CART / INTEGRATION ===== */
.cart-page { padding: 148px 0 80px; }

.cart-steps {
  display: flex; justify-content: center; gap: 0;
  margin-bottom: 48px;
}
.cart-step {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 24px; position: relative;
}
.cart-step::after {
  content: '';
  position: absolute; right: -16px; top: 50%;
  width: 32px; height: 2px; background: var(--border);
}
.cart-step:last-child::after { display: none; }
.cart-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-card); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-muted);
}
.cart-step.active .cart-step-num {
  background: var(--accent); border-color: var(--accent);
  color: #fff;
}
.cart-step.completed .cart-step-num {
  background: var(--green); border-color: var(--green);
  color: #fff;
}
.cart-step-label {
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-muted);
}
.cart-step.active .cart-step-label { color: var(--text-primary); }
.cart-step.completed .cart-step-label { color: var(--green); }

.cart-content {
  max-width: 700px; margin: 0 auto;
}

.cart-item {
  display: flex; align-items: center; gap: 20px;
  padding: 20px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 12px;
}
.cart-item-icon {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.cart-item-cat { font-size: 0.78rem; color: var(--text-muted); }
.cart-item-price {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600; font-size: 0.95rem; color: var(--green);
}
.cart-item-remove {
  background: none; border: none; color: var(--text-muted);
  padding: 8px; border-radius: 6px; transition: var(--transition);
}
.cart-item-remove:hover { color: var(--red); background: rgba(248,113,113,0.1); }
.cart-item-remove svg { width: 18px; height: 18px; }

.cart-empty {
  text-align: center; padding: 60px 20px;
  color: var(--text-muted);
}
.cart-empty svg { width: 48px; height: 48px; margin-bottom: 16px; opacity: 0.5; }
.cart-empty p { margin-bottom: 24px; }

.cart-summary {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  margin-top: 24px;
}
.cart-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; font-size: 0.9rem;
}
.cart-summary-row.total {
  border-top: 1px solid var(--border);
  padding-top: 16px; margin-top: 8px;
  font-weight: 700; font-size: 1.05rem;
}
.cart-summary-row .label { color: var(--text-secondary); }
.cart-summary-row .value { font-family: 'JetBrains Mono', monospace; }
.cart-trial-note {
  text-align: center; padding: 12px;
  margin-top: 16px;
  background: var(--accent-glow); border: 1px solid rgba(0,194,209,0.15);
  border-radius: 8px; font-size: 0.85rem; color: var(--accent);
}

/* Store Integration step */
.store-options {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 32px;
}
.store-option {
  background: var(--bg-card); border: 2px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  text-align: center; cursor: pointer;
  transition: var(--transition);
}
.store-option:hover { border-color: var(--border-hover); }
.store-option.selected { border-color: var(--accent); background: var(--accent-glow); }
.store-option-icon { font-size: 2rem; margin-bottom: 8px; }
.store-option-name { font-weight: 600; font-size: 0.92rem; }
.store-option-desc { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }

.integration-form { margin-top: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 500;
  color: var(--text-secondary); margin-bottom: 8px;
}
.form-group input, .form-group select {
  width: 100%; padding: 12px 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text-primary);
  font-size: 0.92rem; font-family: inherit;
  outline: none; transition: border-color .2s;
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group select:focus { border-color: var(--accent); }
.form-group select { appearance: none; cursor: pointer; }

/* Success page */
.success-container {
  text-align: center; padding: 80px 20px;
  max-width: 500px; margin: 0 auto;
}
.success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--green-bg); border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.success-icon svg { width: 40px; height: 40px; color: var(--green); }
.success-container h2 { font-size: 1.6rem; margin-bottom: 12px; }
.success-container p { color: var(--text-secondary); margin-bottom: 32px; line-height: 1.7; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 80px 0; border-top: 1px solid var(--border); }
.cta-box {
  background: linear-gradient(135deg, #fff 0%, rgba(8,145,178,0.06) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; position: relative; }
.cta-box p {
  color: var(--text-secondary); margin-bottom: 32px;
  max-width: 440px; margin-left: auto; margin-right: auto; position: relative;
}
.cta-box .btn-primary { position: relative; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--border); padding: 48px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand p {
  color: var(--text-muted); font-size: 0.85rem;
  margin-top: 12px; line-height: 1.7;
}
.footer-col h4 {
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 16px;
}
.footer-col a {
  display: block; color: var(--text-secondary);
  font-size: 0.88rem; padding: 4px 0; transition: color .2s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 10000; display: flex; flex-direction: column;
  gap: 8px;
}
.toast {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  min-width: 300px; max-width: 400px;
  animation: slideIn 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.toast.removing { opacity: 0; transform: translateX(100px); }
.toast-icon {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem;
}
.toast-success .toast-icon { background: var(--green-bg); }
.toast-info .toast-icon { background: var(--accent-glow); }
.toast-body { flex: 1; }
.toast-title { font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; }
.toast-message { font-size: 0.78rem; color: var(--text-muted); }
.toast-close {
  background: none; border: none; color: var(--text-muted);
  padding: 4px; cursor: pointer;
}
.toast-close svg { width: 16px; height: 16px; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(100px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== NOTIFY MODAL ===== */
.modal-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 10001;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px; max-width: 440px; width: 100%;
  margin: 24px;
  transform: scale(0.95); transition: transform 0.3s ease;
}
.modal-overlay.open .modal { transform: scale(1); }
.modal h3 { font-size: 1.15rem; margin-bottom: 8px; }
.modal p { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.6; }
.modal-actions { display: flex; gap: 12px; }
.modal-actions .btn-primary { flex: 1; }
.modal-actions .btn-ghost { flex-shrink: 0; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(24px);
  animation: fadeUp 0.6s ease forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .how-steps { grid-template-columns: 1fr; gap: 16px; }
  .product-hero-inner { grid-template-columns: 1fr; }
  .product-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .store-options { grid-template-columns: repeat(2, 1fr); }
  .product-features-grid { grid-template-columns: 1fr; }
  .cart-steps { flex-wrap: wrap; }
  .cart-step::after { display: none; }
}

@media (max-width: 680px) {
  .tools-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .cta-box { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .hero { padding: 140px 0 60px; }
  .product-hero { padding: 110px 0 40px; }
  .store-options { grid-template-columns: 1fr; }
  .cart-page { padding: 110px 0 60px; }
  .floating-request-btn span { display: none; }
  .floating-request-btn { padding: 14px; border-radius: 50%; min-width: 52px; min-height: 52px; }
  .request-grid { grid-template-columns: 1fr; }
}

/* ===== DISCOUNT BANNER ===== */
.discount-banner {
  position: fixed; top: 64px; left: 0; right: 0; z-index: 999;
  background: linear-gradient(90deg, #1a1207 0%, #0a1618 100%);
  border-bottom: 1px solid rgba(217,119,6,0.25);
  padding: 10px 24px; font-size: 0.85rem;
  color: var(--text-secondary); text-align: center;
}
.discount-badge {
  background: var(--yellow); color: #fff;
  font-size: 0.68rem; font-weight: 700; padding: 3px 10px;
  border-radius: 100px; letter-spacing: 0.04em;
}
.discount-banner strong { color: #b45309; }
.discount-link {
  color: var(--accent); font-weight: 600; font-size: 0.82rem;
  margin-left: 8px;
}
.discount-link:hover { text-decoration: underline; }

.has-discount-banner .hero { padding-top: 180px; }
.has-discount-banner .product-hero { padding-top: 148px; }
.has-discount-banner .cart-page { padding-top: 148px; }

/* ===== CARD DUAL CTA BUTTONS ===== */
.btn-card-cart {
  font-size: 0.78rem; padding: 6px 14px; border-radius: 6px;
  background: var(--bg-secondary); border: 1px solid var(--border);
  color: var(--text-secondary); font-weight: 600;
  transition: var(--transition); white-space: nowrap;
}
.btn-card-cart:hover { border-color: var(--accent); color: var(--accent); }
.btn-card-cart.in-cart { border-color: var(--green); color: var(--green); background: rgba(5,150,105,0.08); }

.btn-card-trial {
  font-size: 0.82rem; color: var(--accent); font-weight: 700;
  display: flex; align-items: center; gap: 4px;
  transition: gap .2s; white-space: nowrap;
  padding: 6px 0;
}
.btn-card-trial:hover { gap: 8px; }

/* ===== FLOATING REQUEST BUTTON ===== */
.floating-request-btn {
  position: fixed; bottom: 24px; left: 24px; z-index: 9999;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff; font-weight: 700; font-size: 0.85rem;
  padding: 14px 24px; border-radius: 100px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(251,191,36,0.4);
  transition: var(--transition);
  text-decoration: none;
  animation: floatPulse 3s ease-in-out infinite;
}
.floating-request-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 30px rgba(251,191,36,0.5);
}
.floating-request-btn svg { width: 20px; height: 20px; }

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(251,191,36,0.4); }
  50% { box-shadow: 0 4px 30px rgba(251,191,36,0.6); }
}

/* ===== FEATURE REQUESTS PAGE ===== */
.request-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 16px;
}

.request-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: var(--transition);
  display: flex; gap: 16px;
}
.request-card:hover { border-color: var(--border-hover); }

.request-vote {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; flex-shrink: 0;
}
.vote-btn {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--bg-secondary); border: 2px solid var(--border);
  color: var(--text-muted); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.vote-btn:hover { border-color: var(--accent); color: var(--accent); }
.vote-btn.voted { border-color: var(--accent); color: var(--accent); background: var(--accent-glow); }
.vote-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem; font-weight: 700; color: var(--text-secondary);
}

.request-body { flex: 1; min-width: 0; }
.request-body h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.request-body p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.request-meta {
  display: flex; gap: 12px; flex-wrap: wrap;
  font-size: 0.75rem; color: var(--text-muted);
}
.request-status {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border-radius: 100px; font-weight: 600;
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.03em;
}
.status-open { background: rgba(96,165,250,0.12); color: var(--blue); }
.status-popular { background: rgba(251,191,36,0.12); color: var(--yellow); }
.status-planned { background: rgba(167,139,250,0.12); color: var(--purple); }
.status-building { background: rgba(0,194,209,0.12); color: var(--accent); }
.status-launched { background: var(--green-bg); color: var(--green); }

/* Request comments */
.request-comments {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.comment-item {
  padding: 10px 0;
  font-size: 0.85rem; color: var(--text-secondary);
  border-bottom: 1px solid rgba(30,42,66,0.5);
}
.comment-item:last-child { border-bottom: none; }
.comment-author { font-weight: 600; color: var(--text-primary); font-size: 0.8rem; }
.comment-date { font-size: 0.72rem; color: var(--text-muted); margin-left: 8px; }
.comment-text { margin-top: 4px; line-height: 1.5; }

.comment-form { margin-top: 12px; display: flex; gap: 8px; }
.comment-form input {
  flex: 1; padding: 10px 14px;
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text-primary); font-size: 0.85rem;
  font-family: inherit; outline: none;
}
.comment-form input:focus { border-color: var(--accent); }
.comment-form button {
  padding: 10px 18px; border-radius: 8px;
  background: var(--accent); color: #fff;
  font-weight: 600; font-size: 0.82rem; border: none;
  transition: var(--transition); white-space: nowrap;
}
.comment-form button:hover { background: var(--accent-dim); }

/* Submit request form */
.request-submit-card {
  background: linear-gradient(135deg, #fff 0%, rgba(217,119,6,0.05) 100%);
  border: 2px dashed rgba(217,119,6,0.25);
  border-radius: var(--radius-lg); padding: 36px;
  text-align: center; margin-bottom: 48px;
}
.request-submit-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.request-submit-card p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 24px; }
.request-form { max-width: 500px; margin: 0 auto; text-align: left; }

/* Discount applied in cart */
.price-original {
  text-decoration: line-through; color: var(--text-muted);
  font-size: 0.82rem; margin-right: 6px;
}
.price-discounted { color: var(--green); font-weight: 700; }
.discount-tag {
  background: rgba(251,191,36,0.15); color: var(--yellow);
  font-size: 0.7rem; font-weight: 700; padding: 2px 8px;
  border-radius: 4px; margin-left: 6px;
}

/* ===== EMAIL PROMPT MODAL ===== */
.email-prompt-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 10002;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.email-prompt-overlay.open { opacity: 1; pointer-events: auto; }

.email-prompt {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px; max-width: 400px; width: 100%;
  margin: 24px; text-align: center;
  transform: scale(0.92) translateY(10px);
  transition: transform 0.25s ease;
}
.email-prompt-overlay.open .email-prompt { transform: scale(1) translateY(0); }

.email-prompt-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--accent-glow); border: 1px solid rgba(0,194,209,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.5rem;
}
.email-prompt h3 { font-size: 1.1rem; margin-bottom: 6px; }
.email-prompt p { font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 20px; line-height: 1.6; }

.email-prompt input {
  width: 100%; padding: 12px 16px;
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text-primary); font-size: 0.92rem;
  font-family: inherit; outline: none; transition: border-color .2s;
  margin-bottom: 16px;
}
.email-prompt input::placeholder { color: var(--text-muted); }
.email-prompt input:focus { border-color: var(--accent); }

.email-prompt-actions { display: flex; gap: 10px; }
.email-prompt-actions .btn-primary { flex: 1; padding: 12px; font-size: 0.88rem; }
.email-prompt-actions .btn-ghost {
  flex-shrink: 0; padding: 12px 20px; font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== AUTH FORM ===== */
.auth-form { max-width: 440px; margin: 0 auto; text-align: center; }
.auth-form h3 { font-size: 1.2rem; margin-bottom: 8px; }
.auth-form p { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 24px; }
.auth-form .form-group { text-align: left; margin-bottom: 16px; }
.auth-form .form-group label { font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; display: block; }
.auth-form .form-group input {
  width: 100%; padding: 12px 16px;
  background: var(--bg-secondary); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text-primary); font-size: 0.92rem;
  font-family: inherit; outline: none; transition: border-color .2s;
}
.auth-form .form-group input:focus { border-color: var(--accent); }

.magic-link-sent {
  max-width: 440px; margin: 0 auto; text-align: center;
  padding: 40px 24px;
}
.magic-link-sent .mail-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--accent-glow); border: 1px solid rgba(8,145,178,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.8rem;
}
.magic-link-sent h3 { font-size: 1.2rem; margin-bottom: 8px; }
.magic-link-sent p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.magic-link-sent .email-highlight {
  color: var(--accent); font-weight: 600;
}

/* ===== DASHBOARD ===== */
.dashboard-page { padding: 100px 0 60px; }
.dashboard-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px; flex-wrap: wrap; gap: 16px;
}
.dashboard-header h2 { font-size: 1.6rem; }
.dashboard-header .user-email { font-size: 0.88rem; color: var(--text-secondary); }

.dashboard-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .dashboard-grid { grid-template-columns: 1fr; }
}

.dashboard-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  box-shadow: var(--shadow-sm);
}
.dashboard-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.dashboard-card-header h3 { font-size: 1.05rem; font-weight: 600; }
.dashboard-card-header .badge {
  font-size: 0.75rem; padding: 4px 10px;
  border-radius: 20px; font-weight: 600;
}

.platform-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.platform-row:last-child { border-bottom: none; }
.platform-row .platform-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; background: var(--bg-secondary);
}
.platform-row .platform-info { flex: 1; }
.platform-row .platform-name { font-weight: 600; font-size: 0.92rem; }
.platform-row .platform-id { font-size: 0.8rem; color: var(--text-muted); font-family: 'JetBrains Mono', monospace; }

.status-badge {
  font-size: 0.72rem; padding: 3px 10px;
  border-radius: 20px; font-weight: 600; text-transform: uppercase;
}
.status-badge.active { background: var(--green-bg); color: var(--green); }
.status-badge.trial { background: var(--accent-glow); color: var(--accent); }
.status-badge.expired { background: rgba(220,38,38,0.08); color: var(--red); }
.status-badge.cancelled { background: rgba(107,114,128,0.1); color: var(--text-muted); }

.subscription-row {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.subscription-row:last-child { border-bottom: none; }
.subscription-row .sub-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: #fff; flex-shrink: 0;
}
.subscription-row .sub-info { flex: 1; }
.subscription-row .sub-name { font-weight: 600; font-size: 0.9rem; }
.subscription-row .sub-trial {
  font-size: 0.78rem; color: var(--text-muted); margin-top: 2px;
}
.subscription-row .sub-trial .days-left { color: var(--accent); font-weight: 600; }

.trial-bar {
  width: 100%; height: 4px; border-radius: 2px;
  background: var(--bg-secondary); margin-top: 6px; overflow: hidden;
}
.trial-bar .trial-fill {
  height: 100%; border-radius: 2px; background: var(--accent);
  transition: width 0.3s ease;
}

.dashboard-empty {
  text-align: center; padding: 32px 16px; color: var(--text-muted);
  font-size: 0.9rem;
}
.dashboard-empty svg {
  width: 48px; height: 48px; margin-bottom: 12px; opacity: 0.4;
}

.btn-signout {
  padding: 8px 16px; font-size: 0.82rem;
  background: transparent; border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text-secondary);
  cursor: pointer; transition: var(--transition);
}
.btn-signout:hover { border-color: var(--red); color: var(--red); }

.btn-add-platform {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 12px; margin-top: 12px;
  background: var(--bg-secondary); border: 1px dashed var(--border);
  border-radius: var(--radius-sm); color: var(--text-muted);
  font-size: 0.85rem; cursor: pointer; transition: var(--transition);
}
.btn-add-platform:hover { border-color: var(--accent); color: var(--accent); }
