/* ============================================================
   טרנדאר — עיצוב מרכזי (RTL)
   ============================================================ */

/* ── משתני עיצוב ─────────────────────────────────────────── */
:root {
  --primary: #7C6FFF;
  --primary-dark: #6457e8;
  --primary-light: #ece9ff;
  --accent: #FF6B6B;
  --accent2: #FFD93D;
  --success: #4CAF50;
  --warning: #FF9800;
  --danger: #f44336;
  --info: #2196F3;

  --bg: #0D0D1C;
  --bg-card: #161627;
  --bg-card2: #13132A;
  --bg-sidebar: #0F0F22;
  --border: rgba(124,111,255,0.2);
  --border-light: rgba(255,255,255,0.07);

  --text-primary: #F0F0FF;
  --text-secondary: #A0A0C8;
  --text-muted: #585878;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 9px;
  --shadow: 0 4px 28px rgba(0,0,0,0.45);
  --shadow-glow: 0 0 40px rgba(124,111,255,0.18);

  --sidebar-width: 248px;
  --header-height: 64px;
  --font: 'Rubik', 'Segoe UI', Arial, sans-serif;
}

/* ── איפוס ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  direction: rtl;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  direction: rtl;
  text-align: right;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; }
button { cursor: pointer; font-family: var(--font); }
input, select, textarea { font-family: var(--font); direction: rtl; text-align: right; }
ul, ol { list-style: none; }

/* ── גלילה ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-card); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 99px; }

/* ── טיפוגרפיה ──────────────────────────────────────────── */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.25; }
h1 { font-size: 2.2rem; }
h2 { font-size: 1.7rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }
h5 { font-size: 0.92rem; }
p { color: var(--text-secondary); line-height: 1.75; }

.text-primary   { color: var(--primary)   !important; }
.text-accent    { color: var(--accent)    !important; }
.text-success   { color: var(--success)   !important; }
.text-warning   { color: var(--warning)   !important; }
.text-danger    { color: var(--danger)    !important; }
.text-muted     { color: var(--text-muted)!important; }
.text-secondary { color: var(--text-secondary)!important; }

/* ── כפתורים ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
  direction: rtl;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #9f95ff);
  color: #fff;
  box-shadow: 0 2px 12px rgba(124,111,255,0.3);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(124,111,255,0.45); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: rgba(124,111,255,0.07); }

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: none;
}
.btn-ghost:hover { color: var(--text-primary); background: var(--border-light); }

.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #d32f2f; }

.btn-success { background: var(--success); color: #fff; }

.btn-sm  { padding: 6px 14px; font-size: 0.78rem; }
.btn-lg  { padding: 14px 28px; font-size: 0.98rem; }
.btn-full { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* ── כרטיסים ────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 22px;
  transition: all 0.2s;
}
.card:hover { border-color: var(--border); box-shadow: var(--shadow-glow); }
.card-glow   { box-shadow: var(--shadow-glow); border-color: var(--border); }

/* ── תגיות ──────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.badge-primary { background: rgba(124,111,255,0.18); color: #b0a5ff; }
.badge-success { background: rgba(76,175,80,0.18);   color: #81c784; }
.badge-warning { background: rgba(255,152,0,0.18);   color: #ffb74d; }
.badge-danger  { background: rgba(244,67,54,0.18);   color: #ef9a9a; }
.badge-info    { background: rgba(33,150,243,0.18);  color: #64b5f6; }
.badge-accent  { background: rgba(255,107,107,0.18); color: #ff8a80; }

/* ── טפסים ──────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }

.form-label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.88rem;
  transition: all 0.2s;
  outline: none;
  direction: rtl;
  text-align: right;
}
.form-control:focus {
  border-color: var(--primary);
  background: rgba(124,111,255,0.06);
  box-shadow: 0 0 0 3px rgba(124,111,255,0.14);
}
.form-control::placeholder { color: var(--text-muted); }
.form-control.error { border-color: var(--danger); }

.form-error {
  font-size: 0.77rem;
  color: var(--danger);
  margin-top: 5px;
  display: none;
}
.form-error.show { display: block; }

.input-group { position: relative; }
.input-group .input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  font-size: 15px;
}
.input-group .form-control { padding-right: 38px; padding-left: 14px; }
.input-group .input-suffix {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--text-muted);
}
.input-group .input-suffix:hover { color: var(--text-primary); }

select.form-control option { background: var(--bg-card); }

/* ── טאבים ──────────────────────────────────────────────── */
.tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 22px;
}
.tab-btn {
  flex: 1;
  padding: 8px 14px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  border-radius: 7px;
  font-size: 0.83rem;
  font-weight: 700;
  transition: all 0.2s;
  cursor: pointer;
  font-family: var(--font);
}
.tab-btn.active { background: var(--primary); color: #fff; }
.tab-btn:hover:not(.active) { color: var(--text-primary); background: var(--border-light); }

/* ── פסי התקדמות ─────────────────────────────────────────── */
.progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), #b0a5ff);
  transition: width 0.6s ease;
}
.progress-fill.accent  { background: linear-gradient(90deg, var(--accent), #ff8a80); }
.progress-fill.success { background: linear-gradient(90deg, var(--success), #81c784); }

/* ── מבנה האפליקציה ──────────────────────────────────────── */
.app-layout { display: flex; min-height: 100vh; }

/* ── סיידבר ─────────────────────────────────────────────── */
.sidebar {
  width: var(--sidebar-width);
  background: var(--bg-sidebar);
  border-left: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  z-index: 100;
  transition: transform 0.3s;
}

.sidebar-logo {
  padding: 20px 18px 16px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary), #b0a5ff);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.05rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #b0a5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.logo-badge {
  font-size: 0.56rem;
  background: var(--primary);
  color: #fff;
  padding: 2px 6px;
  border-radius: 5px;
  font-weight: 800;
  margin-right: auto;
}

.sidebar-nav { flex: 1; padding: 10px 8px; overflow-y: auto; }

.nav-section-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 10px 12px 5px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.87rem;
  font-weight: 600;
  transition: all 0.15s;
  margin-bottom: 2px;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: right;
  text-decoration: none;
  direction: rtl;
}
.nav-item:hover  { background: rgba(124,111,255,0.09); color: var(--text-primary); }
.nav-item.active { background: rgba(124,111,255,0.17); color: var(--primary); }

.nav-icon { width: 18px; text-align: center; font-size: 15px; flex-shrink: 0; }

.nav-badge {
  margin-right: auto;
  background: var(--accent);
  color: #fff;
  font-size: 0.63rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 99px;
  min-width: 18px;
  text-align: center;
}

.sidebar-user {
  padding: 14px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--primary), #b0a5ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.avatar-lg { width: 50px; height: 50px; font-size: 1.1rem; }

.user-info { flex: 1; overflow: hidden; }
.user-name  { font-size: 0.85rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-plan  { font-size: 0.7rem; color: var(--text-muted); }

/* ── תוכן ראשי ───────────────────────────────────────────── */
.main-content {
  margin-right: var(--sidebar-width);
  flex: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── כותרת עליונה ────────────────────────────────────────── */
.app-header {
  height: var(--header-height);
  background: rgba(13,13,28,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  padding: 0 26px;
  gap: 14px;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-title    { font-size: 1rem; font-weight: 800; }
.header-subtitle { font-size: 0.75rem; color: var(--text-muted); }
.header-spacer   { flex: 1; }

.header-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: 99px;
  padding: 7px 16px;
  gap: 8px;
  transition: all 0.2s;
  min-width: 210px;
  direction: rtl;
}
.header-search:focus-within { border-color: var(--primary); background: rgba(124,111,255,0.07); }
.header-search input { background: none; border: none; outline: none; color: var(--text-primary); font-size: 0.83rem; width: 100%; direction: rtl; text-align: right; }
.header-search input::placeholder { color: var(--text-muted); }

.header-actions { display: flex; align-items: center; gap: 8px; }

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 99px;
  border: 1px solid var(--border-light);
  background: rgba(255,255,255,0.04);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  font-size: 15px;
}
.icon-btn:hover { border-color: var(--primary); color: var(--primary); }

.notification-dot {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--bg);
}

/* ── תוכן עמוד ───────────────────────────────────────────── */
.page-content { padding: 28px; flex: 1; }

.page-header { margin-bottom: 26px; }
.page-header h1 { font-size: 1.55rem; margin-bottom: 4px; }
.page-header p  { font-size: 0.86rem; }

/* ── גריד ────────────────────────────────────────────────── */
.grid      { display: grid; }
.grid-2    { grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3    { grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4    { grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }

/* ── כרטיסי סטטיסטיקה ────────────────────────────────────── */
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.stat-icon.purple { background: rgba(124,111,255,0.15); }
.stat-icon.red    { background: rgba(255,107,107,0.15); }
.stat-icon.green  { background: rgba(76,175,80,0.15);  }
.stat-icon.yellow { background: rgba(255,217,61,0.15); }
.stat-icon.blue   { background: rgba(33,150,243,0.15); }

.stat-value  { font-size: 1.65rem; font-weight: 900; }
.stat-label  { font-size: 0.75rem; color: var(--text-muted); }
.stat-change { font-size: 0.73rem; font-weight: 700; }
.stat-change.up   { color: var(--success); }
.stat-change.down { color: var(--danger);  }

/* ── כרטיסי טרנד ──────────────────────────────────────────── */
.trend-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.trend-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, #b0a5ff, var(--primary));
  opacity: 0;
  transition: opacity 0.2s;
}
.trend-card:hover { border-color: var(--border); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.trend-card:hover::before { opacity: 1; }

.trend-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.trend-emoji {
  width: 46px;
  height: 46px;
  background: rgba(124,111,255,0.12);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  flex-shrink: 0;
}
.trend-card-meta { flex: 1; }
.trend-name     { font-size: 0.95rem; font-weight: 800; margin-bottom: 3px; }
.trend-category { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }

.trend-score-badge {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--primary);
  background: rgba(124,111,255,0.1);
  padding: 6px 10px;
  border-radius: 9px;
  text-align: center;
  flex-shrink: 0;
}
.trend-card-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.metric-item { text-align: center; }
.metric-value { font-size: 0.93rem; font-weight: 800; }
.metric-label { font-size: 0.63rem; color: var(--text-muted); text-transform: uppercase; }

.trend-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}
.window-indicator {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  color: var(--warning);
}

/* ── כרטיסי התראה ─────────────────────────────────────────── */
.alert-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.2s;
}
.alert-card.unread       { border-right: 3px solid var(--primary); }
.alert-card.unread-accent { border-right: 3px solid var(--accent); }
.alert-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.alert-icon.fire  { background: rgba(255,107,107,0.12); }
.alert-icon.spike { background: rgba(255,217,61,0.12);  }
.alert-icon.clock { background: rgba(33,150,243,0.12);  }

.alert-body   { flex: 1; }
.alert-title  { font-size: 0.9rem; font-weight: 800; margin-bottom: 3px; }
.alert-msg    { font-size: 0.81rem; color: var(--text-secondary); }
.alert-stats  { display: flex; gap: 14px; margin-top: 8px; }
.alert-stat   { font-size: 0.76rem; }
.alert-stat strong { color: var(--success); }
.alert-time   { font-size: 0.7rem; color: var(--text-muted); margin-top: 5px; }

/* ── כרטיסי רעיונות תוכן ─────────────────────────────────── */
.idea-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.2s;
}
.idea-card:hover { border-color: var(--border); }

.idea-format-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(124,111,255,0.12);
  border-radius: 7px;
  font-size: 0.73rem;
  font-weight: 700;
  color: #b0a5ff;
  margin-bottom: 10px;
}
.idea-title { font-size: 0.93rem; font-weight: 800; margin-bottom: 8px; }
.idea-hook {
  background: rgba(255,217,61,0.06);
  border-right: 3px solid var(--accent2);
  padding: 8px 12px;
  border-radius: 0 7px 7px 0;
  font-size: 0.81rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-style: italic;
}
.idea-cta { font-size: 0.78rem; color: var(--primary); font-weight: 700; margin-top: 10px; }

/* ── טבלאות ─────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}
table { width: 100%; border-collapse: collapse; font-size: 0.84rem; }
thead { background: rgba(255,255,255,0.03); }
thead th {
  padding: 12px 16px;
  text-align: right;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
tbody tr { border-top: 1px solid var(--border-light); transition: background 0.15s; }
tbody tr:hover { background: rgba(255,255,255,0.02); }
tbody td { padding: 14px 16px; color: var(--text-secondary); vertical-align: middle; text-align: right; }
tbody td strong { color: var(--text-primary); }

/* ── עמוד כניסה ──────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: radial-gradient(ellipse at top right, rgba(124,111,255,0.14) 0%, transparent 60%),
              radial-gradient(ellipse at bottom left,  rgba(255,107,107,0.09) 0%, transparent 60%),
              var(--bg);
}
.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.auth-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  justify-content: center;
}
.auth-title    { font-size: 1.45rem; margin-bottom: 6px; text-align: center; }
.auth-subtitle { font-size: 0.84rem; text-align: center; margin-bottom: 26px; }
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.auth-divider::before, .auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-light);
}
.auth-footer { text-align: center; margin-top: 20px; font-size: 0.82rem; color: var(--text-muted); }

/* ── אונבורדינג ──────────────────────────────────────────── */
.onboarding-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background: radial-gradient(ellipse at top, rgba(124,111,255,0.12) 0%, transparent 70%), var(--bg);
}
.onboarding-container { width: 100%; max-width: 640px; }

.onboarding-progress-bar {
  background: rgba(255,255,255,0.06);
  border-radius: 99px;
  height: 4px;
  margin-bottom: 32px;
  overflow: hidden;
}
.onboarding-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #b0a5ff);
  border-radius: 99px;
  transition: width 0.4s ease;
}

.onboarding-step { display: none; }
.onboarding-step.active { display: block; }

.step-header { margin-bottom: 30px; text-align: center; }
.step-number {
  display: inline-block;
  background: rgba(124,111,255,0.15);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.niche-option {
  background: rgba(255,255,255,0.03);
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px 10px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.niche-option:hover    { border-color: rgba(124,111,255,0.45); background: rgba(124,111,255,0.06); }
.niche-option.selected { border-color: var(--primary); background: rgba(124,111,255,0.13); }
.niche-emoji  { font-size: 28px; margin-bottom: 6px; }
.niche-label  { font-size: 0.82rem; font-weight: 700; }

.goal-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.goal-option {
  background: rgba(255,255,255,0.03);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 12px;
}
.goal-option:hover    { border-color: rgba(124,111,255,0.45); }
.goal-option.selected { border-color: var(--primary); background: rgba(124,111,255,0.09); }
.goal-option .goal-icon { font-size: 20px; width: 32px; text-align: center; flex-shrink: 0; }
.goal-option .goal-text h4 { font-size: 0.87rem; margin-bottom: 2px; }
.goal-option .goal-text p  { font-size: 0.76rem; margin: 0; }

.platform-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.platform-option {
  background: rgba(255,255,255,0.03);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.platform-option:hover    { border-color: rgba(124,111,255,0.45); }
.platform-option.selected { border-color: var(--primary); background: rgba(124,111,255,0.09); }
.platform-icon { font-size: 20px; }
.platform-name { font-size: 0.87rem; font-weight: 700; }

.keyword-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; min-height: 40px; }
.keyword-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(124,111,255,0.12);
  border: 1px solid rgba(124,111,255,0.3);
  color: #b0a5ff;
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
}
.keyword-tag .remove-tag { cursor: pointer; opacity: 0.7; transition: opacity 0.15s; }
.keyword-tag .remove-tag:hover { opacity: 1; }

.keyword-input-row { display: flex; gap: 8px; }
.keyword-input-row input { flex: 1; }

/* ── כותרות מקטע ─────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.section-title    { font-size: 1rem; font-weight: 800; }
.section-subtitle { font-size: 0.76rem; color: var(--text-muted); margin-top: 2px; }

/* ── מצב ריק ─────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 48px 20px; color: var(--text-muted); }
.empty-state .empty-icon { font-size: 48px; margin-bottom: 12px; }
.empty-state h3 { font-size: 1rem; color: var(--text-secondary); margin-bottom: 6px; }
.empty-state p  { font-size: 0.82rem; }

/* ── הודעות קופצות ───────────────────────────────────────── */
.toast-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  min-width: 270px;
  animation: slideIn 0.3s ease;
  font-size: 0.84rem;
  direction: rtl;
}
.toast.success { border-right: 3px solid var(--success); }
.toast.error   { border-right: 3px solid var(--danger);  }
.toast.info    { border-right: 3px solid var(--primary); }

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

/* ── מודל ────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.2s;
  direction: rtl;
}
.modal-overlay.open .modal { transform: scale(1); }

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}
.modal-title { font-size: 1.15rem; font-weight: 800; }
.modal-close { background: none; border: none; color: var(--text-muted); font-size: 20px; cursor: pointer; }
.modal-close:hover { color: var(--text-primary); }

/* ── פרטי טרנד ───────────────────────────────────────────── */
.trend-hero {
  background: linear-gradient(135deg, rgba(124,111,255,0.13), rgba(255,107,107,0.06));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
.trend-hero::after {
  content: '';
  position: absolute;
  top: -30%; left: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124,111,255,0.12), transparent 70%);
  pointer-events: none;
}

.score-breakdown {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.score-item { text-align: center; }
.score-item-value { font-size: 1.05rem; font-weight: 800; color: var(--primary); }
.score-item-label { font-size: 0.63rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.03em; margin-top: 2px; }

.big-score {
  font-size: 3.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), #b0a5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── התראה צפה ───────────────────────────────────────────── */
.floating-alert {
  background: linear-gradient(135deg, rgba(255,107,107,0.13), rgba(255,152,0,0.09));
  border: 1px solid rgba(255,107,107,0.28);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.floating-alert-icon { font-size: 28px; flex-shrink: 0; }
.floating-alert-body h4 { font-size: 0.93rem; margin-bottom: 3px; }
.floating-alert-body p  { font-size: 0.8rem; margin: 0; }

/* ── כפתור מובייל ────────────────────────────────────────── */
.sidebar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 20px;
  cursor: pointer;
}
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 90;
}

/* ── דף נחיתה ────────────────────────────────────────────── */
.landing-hero {
  text-align: center;
  padding: 80px 20px 60px;
  max-width: 800px;
  margin: 0 auto;
}
.landing-hero h1 {
  font-size: 2.9rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 35%, #b0a5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.landing-hero p { font-size: 1.08rem; max-width: 540px; margin: 0 auto 32px; }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── טקסט גרדיאנט ────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), #b0a5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── כלי עזר ─────────────────────────────────────────────── */
.flex           { display: flex; }
.flex-center    { display: flex; align-items: center; justify-content: center; }
.align-center   { align-items: center; }
.justify-between{ justify-content: space-between; }
.flex-col       { flex-direction: column; }
.gap-8  { gap: 8px;  }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.mb-4  { margin-bottom: 4px;  }
.mb-8  { margin-bottom: 8px;  }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-8  { margin-top: 8px;  }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.hidden     { display: none !important; }
.block      { display: block; }
.w-full     { width: 100%; }
.text-center{ text-align: center; }
.text-left  { text-align: left;   }
.font-bold  { font-weight: 700; }
.font-black { font-weight: 900; }
.rounded    { border-radius: var(--radius-sm); }
.truncate   { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.opacity-60 { opacity: 0.6; }

/* ── טעינה ───────────────────────────────────────────────── */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.22);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

.skeleton {
  background: linear-gradient(90deg,
    rgba(255,255,255,0.04) 25%,
    rgba(255,255,255,0.09) 50%,
    rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { to { background-position: -200% 0; } }

/* ── Paywall Banner ──────────────────────────────────────── */
.paywall-banner {
  background: linear-gradient(135deg, rgba(124,111,255,0.1), rgba(255,107,107,0.07));
  border: 1.5px solid rgba(124,111,255,0.32);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  animation: paywallPulse 3s ease-in-out infinite;
}
.paywall-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(124,111,255,0.05), transparent);
  animation: paywallShine 2.5s ease-in-out infinite;
}
@keyframes paywallPulse {
  0%, 100% { border-color: rgba(124,111,255,0.32); }
  50%       { border-color: rgba(124,111,255,0.55); }
}
@keyframes paywallShine {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.paywall-banner .pb-icon { font-size: 1.5rem; flex-shrink: 0; z-index: 1; }
.paywall-banner .pb-text { flex: 1; z-index: 1; }
.paywall-banner .pb-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 3px;
}
.paywall-banner .pb-sub {
  font-size: 0.76rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.paywall-banner .pb-btn {
  background: linear-gradient(135deg, var(--primary), #9d8fff);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  z-index: 1;
  transition: all 0.2s;
  box-shadow: 0 3px 14px rgba(124,111,255,0.4);
}
.paywall-banner .pb-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(124,111,255,0.55);
  color: #fff;
}

/* Plan limit bar (usage meter) */
.plan-usage-bar {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.plan-usage-bar .pub-label { flex: 1; font-weight: 600; }
.plan-usage-bar .pub-count { font-weight: 800; color: var(--text-primary); white-space: nowrap; }
.plan-usage-bar .pub-bar { flex: 2; height: 5px; background: rgba(255,255,255,0.08); border-radius: 99px; overflow: hidden; }
.plan-usage-bar .pub-fill { height: 100%; border-radius: 99px; transition: width 0.5s; }
.plan-usage-bar .pub-fill.safe    { background: var(--success); }
.plan-usage-bar .pub-fill.warning { background: var(--warning); }
.plan-usage-bar .pub-fill.danger  { background: var(--danger); }

/* Locked trend card overlay */
.trend-locked-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: linear-gradient(180deg, transparent 0%, rgba(13,13,28,0.92) 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 18px;
  text-align: center;
  border-radius: var(--radius);
}

/* Plan badge in sidebar */
.plan-upgrade-cta {
  margin: 8px 12px 0;
  background: linear-gradient(135deg, rgba(124,111,255,0.12), rgba(255,107,107,0.06));
  border: 1px solid rgba(124,111,255,0.25);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}
.plan-upgrade-cta:hover { border-color: var(--primary); background: rgba(124,111,255,0.18); }
.plan-upgrade-cta .puc-icon { font-size: 1.1rem; }
.plan-upgrade-cta .puc-text { flex: 1; }
.plan-upgrade-cta .puc-title { font-size: 0.73rem; font-weight: 800; color: var(--text-primary); }
.plan-upgrade-cta .puc-sub { font-size: 0.65rem; color: var(--text-muted); }
.plan-upgrade-cta .puc-arrow { color: var(--primary); font-size: 0.8rem; }

/* ══════════════════════════════════════════════════════════
   רספונסיב — טאבלט ומובייל
══════════════════════════════════════════════════════════ */

/* ── כפתור סגירה סיידבר (נראה רק במובייל) ───────────────── */
#sidebar-close-btn {
  display: none !important;
}
@media (max-width: 768px) {
  #sidebar-close-btn {
    display: flex !important;
  }
}

/* ── המבורגר ─────────────────────────────────────────────── */
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 18px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.15s;
  z-index: 101;
}
.mobile-menu-btn:hover { background: rgba(124,111,255,0.12); border-color: var(--primary); }

/* ── Overlay ─────────────────────────────────────────────── */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 99;
  backdrop-filter: blur(2px);
}
.sidebar-overlay.open { display: block; }

/* ── 1200px ──────────────────────────────────────────────── */
@media (max-width: 1200px) {
  :root { --sidebar-width: 220px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .score-breakdown { grid-template-columns: repeat(3, 1fr); }
}

/* ── 1024px ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --sidebar-width: 200px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .header-search { min-width: 160px; }
}

/* ── 768px — טאבלט ───────────────────────────────────────── */
@media (max-width: 768px) {

  /* סיידבר — מוסתר, נפתח מהצד */
  .sidebar {
    transform: translateX(110%);
    z-index: 100;
    transition: transform 0.28s cubic-bezier(.4,0,.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.5);
  }
  .sidebar.open { transform: translateX(0); }

  /* תוכן ראשי — ללא margin */
  .main-content { margin-right: 0 !important; }

  /* המבורגר מופיע */
  .mobile-menu-btn { display: flex; }

  /* כותרת עליונה */
  .app-header {
    padding: 0 12px;
    gap: 8px;
    height: 56px;
  }
  .header-search { display: none; }
  .header-subtitle { display: none; }
  .header-title { font-size: 0.97rem; }

  /* תוכן עמוד */
  .page-content { padding: 14px; }

  /* גרידים */
  .grid-2  { grid-template-columns: 1fr; }
  .grid-3  { grid-template-columns: 1fr; }
  .grid-4  { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .grid-auto { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
  .niche-grid { grid-template-columns: repeat(2, 1fr); }
  .score-breakdown { grid-template-columns: repeat(3, 1fr); gap: 8px; }

  /* כרטיסים */
  .card { padding: 16px; }
  .stat-card { padding: 14px 16px; gap: 12px; }
  .stat-value { font-size: 1.4rem; }
  .trend-card { padding: 14px; }
  .trend-hero { padding: 20px 16px; }
  .floating-alert { flex-wrap: wrap; gap: 10px; }
  .floating-alert-icon { font-size: 22px; }

  /* section header */
  .section-header { flex-wrap: wrap; gap: 8px; }
  .section-title { font-size: 0.92rem; }

  /* טיפוגרפיה */
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.05rem; }
  .landing-hero h1 { font-size: 1.85rem; }
  .landing-hero p  { font-size: 0.9rem; }
  .big-score { font-size: 2.2rem; }

  /* טבלאות */
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table { min-width: 520px; }

  /* מודל */
  .modal { padding: 22px 16px; }

  /* auth */
  .auth-card { padding: 24px 18px; }
  .onboarding-page { padding: 14px; }

  /* פריסת dashboard stats — 2 בשורה */
  #stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }

  /* header filter dropdowns */
  .flex.gap-8 { flex-wrap: wrap; gap: 6px; }

  /* weekly plan + content ideas side by side on tablet */
  /* כבר grid-2 → 1 col, OK */
}

/* ── 480px — מובייל ──────────────────────────────────────── */
@media (max-width: 480px) {

  .page-content { padding: 10px; }

  .card  { padding: 13px; }
  .stat-card { flex-direction: column; text-align: center; padding: 14px 10px; gap: 8px; }
  .stat-icon { margin: 0 auto; }
  .stat-value { font-size: 1.55rem; }

  /* גרידים */
  .grid-4  { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .grid-auto { grid-template-columns: 1fr; }
  .score-breakdown { grid-template-columns: repeat(3, 1fr); }
  .niche-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-options { grid-template-columns: 1fr; }

  /* stats */
  #stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }

  /* כפתורים */
  .btn    { padding: 9px 14px; font-size: 0.83rem; }
  .btn-sm { padding: 6px 10px; font-size: 0.76rem; }
  .btn-lg { padding: 12px 22px; font-size: 0.92rem; }

  /* header */
  .app-header { height: 52px; padding: 0 10px; gap: 7px; }
  .header-title { font-size: 0.92rem; }
  .icon-btn { width: 34px; height: 34px; font-size: 15px; }

  /* טיפוגרפיה */
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.15rem; }
  .landing-hero h1 { font-size: 1.55rem; }
  .big-score { font-size: 1.9rem; }
  .section-title { font-size: 0.88rem; }

  /* כרטיסי טרנד */
  .trend-card { padding: 13px; }
  .trend-name { font-size: 0.88rem; }
  .trend-card-metrics { gap: 7px; }
  .trend-hero { padding: 16px 12px; }

  /* filters */
  .flex.gap-8 select.form-control { font-size: 0.75rem; padding: 6px 8px; }

  /* אונבורדינג */
  .auth-card { padding: 20px 14px; }
  .onboarding-page { padding: 10px; }
  .niche-option { padding: 13px 8px; }
  .niche-emoji { font-size: 24px; }

  /* טאבים */
  .tabs { flex-wrap: wrap; gap: 4px; }
  .tab-btn { flex: none; font-size: 0.77rem; padding: 7px 10px; }

  /* מודל */
  .modal { padding: 18px 12px; }
  .modal-title { font-size: 1rem; }

  /* toast */
  .toast-container { left: 10px; right: 10px; bottom: 80px; }
  .toast { min-width: unset; width: 100%; }

  /* section headers wrap */
  .section-header { gap: 8px; }
  .section-header .btn-sm { font-size: 0.72rem; padding: 5px 9px; }

  /* top opportunities row */
  .mini-trend-row { gap: 8px; }

  /* weekly plan badge */
  .day-badge { min-width: 36px; font-size: 0.62rem; padding: 3px 7px; }

  /* idea cards */
  .idea-title { font-size: 0.86rem; }
  .idea-hook  { font-size: 0.77rem; }

  /* creators banner */
  .mb-24[style*="display:flex"] { flex-direction: column; gap: 0.8rem; }

  /* floating alert */
  .floating-alert { padding: 12px 14px; }

  /* score breakdown */
  .score-item-value { font-size: 0.9rem; }
  .score-item-label { font-size: 0.58rem; }
}

/* ── stat card — מובייל אנכי ────────────────────────────── */
@media (max-width: 520px) {
  .stat-card {
    padding: 14px 12px;
    gap: 10px;
  }
  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .stat-value  { font-size: 1.35rem; }
  .stat-label  { font-size: 0.7rem; }
  .stat-change { font-size: 0.67rem; }
}

/* ── 360px — מובייל קטן ──────────────────────────────────── */
@media (max-width: 360px) {
  .page-content { padding: 8px; }
  .card { padding: 11px; }
  #stats-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 8px; }
  h1 { font-size: 1.2rem; }
  .trend-emoji { width: 38px; height: 38px; font-size: 18px; }
  .stat-value { font-size: 1.3rem; }
}

/* ── אייקון-ים אמוג׳י — גלגל הצלה ─────────────────────────── */
/* וידוא שאמוג׳י ומנות font-awesome מוגדרים נכון */
.nav-icon,
.empty-icon,
.floating-alert-icon {
  font-style: normal;
  line-height: 1;
}

/* ── icon-btn ────────────────────────────────────────────── */
.icon-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  cursor: pointer;
  font-size: 17px;
  position: relative;
  transition: all 0.15s;
  flex-shrink: 0;
}
.icon-btn:hover { background: rgba(124,111,255,0.1); border-color: var(--border); }

.notification-dot {
  position: absolute;
  top: 6px; left: 6px;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--bg-card);
}
