/* Marketer Theme - Fresh & Energetic */

.marketer-theme {
  /* Primary Colors - Fresh Blue & Green */
  --background: 210 20% 98%; /* Very Light Blue-Gray */
  --foreground: 210 30% 20%; /* Dark Blue-Gray */
  --card: 0 0% 100%; /* Pure White */
  --card-foreground: 210 30% 20%;
  --popover: 0 0% 100%;
  --popover-foreground: 210 30% 20%;
  
  /* Primary - Energetic Teal */
  --primary: 174 62% 47%; /* Teal/Turquoise */
  --primary-foreground: 0 0% 100%;
  --primary-glow: 174 62% 67%;
  
  /* Secondary - Fresh Green */
  --secondary: 158 64% 52%; /* Fresh Green */
  --secondary-foreground: 0 0% 100%;
  --secondary-light: 158 64% 72%;
  
  /* Accent - Light Cyan */
  --accent: 180 77% 95%; /* Very Light Cyan */
  --accent-foreground: 174 62% 47%;
  --accent-light: 180 77% 97%;
  
  /* Muted - Soft Gray */
  --muted: 210 20% 96%;
  --muted-foreground: 210 15% 45%;
  
  /* Status Colors */
  --success: 142 71% 45%; /* Green */
  --success-foreground: 0 0% 100%;
  --warning: 38 92% 50%; /* Orange */
  --warning-foreground: 0 0% 100%;
  --info: 199 89% 48%; /* Bright Blue */
  --info-foreground: 0 0% 100%;
  --destructive: 0 84% 60%; /* Red */
  --destructive-foreground: 0 0% 98%;
  
  /* Borders & Inputs */
  --border: 210 20% 90%;
  --input: 0 0% 100%;
  --ring: 174 62% 47%;
  
  --radius: 0.75rem;

  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Cairo', 'Inter', system-ui, sans-serif;
  direction: rtl;
}

/* Marketer Sidebar Styles */
.marketer-theme .sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
  color: hsl(210 15% 45%);
}

.marketer-theme .sidebar-item:hover {
  color: hsl(174 62% 47%);
  background: hsl(180 77% 95%);
}

.marketer-theme .sidebar-item-active {
  color: hsl(0 0% 100%);
  background: linear-gradient(135deg, hsl(174 62% 47%), hsl(158 64% 52%));
  font-weight: 600;
  box-shadow: 0 4px 12px hsl(174 62% 47% / 0.3);
}

/* Marketer Button Styles */
.marketer-theme .btn-primary {
  background: linear-gradient(135deg, hsl(174 62% 47%), hsl(158 64% 52%));
  color: white;
  border: none;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.2s;
  box-shadow: 0 4px 12px hsl(174 62% 47% / 0.3);
}

.marketer-theme .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px hsl(174 62% 47% / 0.4);
}

/* Marketer Card Styles */
.marketer-theme .card-style {
  background: hsl(0 0% 100%);
  border: 1px solid hsl(210 20% 90%);
  border-radius: 1rem;
  box-shadow: 0 2px 8px hsl(210 20% 50% / 0.05);
  transition: all 0.3s;
}

.marketer-theme .card-style:hover {
  border-color: hsl(174 62% 47% / 0.3);
  box-shadow: 0 4px 16px hsl(174 62% 47% / 0.1);
  transform: translateY(-2px);
}
