/* ==============================================================================
   منظومة «صيانة بلس» (Home Maintenance Pro) - نظام التصميم الأساسي
   مطور بالكامل بـ Vanilla CSS بدون أي إطارات عمل خارجية (No Tailwind, No Bootstrap)
============================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* ألوان الهوية البصرية الرسمية */
  --primary: #FF5F00;
  --primary-hover: #E65300;
  --primary-dark: #A63B00;
  --primary-light: #FFF4ED;
  --primary-glow: rgba(255, 95, 0, 0.28);
  --on-primary: #FFFFFF;

  --secondary: #1E252D;
  --secondary-hover: #2C3642;
  --secondary-muted: #585F68;
  --on-secondary: #FFFFFF;

  --tertiary: #FFA100;
  --tertiary-dark: #865300;
  --tertiary-light: #FFF9ED;

  /* الخلفيات والأسطح */
  --bg-app: #F8F9FA;
  --surface-card: #FFFFFF;
  --surface-dim: #F1F3F5;
  --surface-hover: #F8F9FA;
  --surface-glass: rgba(255, 255, 255, 0.92);

  /* النصوص */
  --text-main: #1E252D;
  --text-muted: #6C757D;
  --text-subtle: #8E98A4;
  --text-inverted: #FFFFFF;

  /* الحدود والظلال */
  --border-subtle: rgba(30, 37, 45, 0.08);
  --border-focus: #FF5F00;
  --shadow-ambient: 0 2px 8px -2px rgba(30, 37, 45, 0.06), 0 1px 3px -1px rgba(30, 37, 45, 0.04);
  --shadow-elevated: 0 8px 24px -4px rgba(30, 37, 45, 0.08), 0 4px 8px -2px rgba(30, 37, 45, 0.04);
  --shadow-glow: 0 8px 20px -4px var(--primary-glow);
  --shadow-glow-tertiary: 0 6px 16px -3px rgba(255, 161, 0, 0.35);

  /* حالات التحقق والأمان */
  --success: #10B981;
  --success-light: #ECFDF5;
  --warning: #F59E0B;
  --warning-light: #FFFBEB;
  --danger: #EF4444;
  --danger-light: #FEF2F2;

  /* الحواف والزوايا (Border Radius) */
  --radius-xs: 0.25rem;
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-pill: 9999px;

  /* المسافات والخطوط */
  --font-family: 'Cairo', 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* تهيئة أساسية */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-app);
  color: var(--text-main);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Persona Top Switcher Bar (شريط التنقل السريع بين الأدوار) */
.persona-bar {
  background: var(--secondary);
  color: #FFF;
  padding: 8px 16px;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.persona-bar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #FFA100;
}

.persona-bar-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.persona-btn {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
  color: #E2E8F0;
  background: rgba(255, 255, 255, 0.08);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.persona-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #FFF;
}

.persona-btn.active {
  background: var(--primary);
  color: #FFF;
  box-shadow: 0 2px 8px var(--primary-glow);
}

/* الحاوية الرئيسية للتطبيق */
.app-container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--surface-card);
  position: relative;
  box-shadow: 0 0 35px rgba(30, 37, 45, 0.08);
  display: flex;
  flex-direction: column;
  padding-bottom: 75px; /* مساحة للـ Bottom Nav */
}

@media (min-width: 992px) {
  .app-container.wide-mode {
    max-width: 1180px;
  }
}

/* الرأس العلوي (App Header) */
.app-header {
  position: sticky;
  top: 36px;
  z-index: 90;
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-subtle);
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
}

.brand-logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-badge {
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 95, 0, 0.2);
}

.brand-location {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: var(--surface-card);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
  text-decoration: none;
}

.icon-btn:hover {
  background: var(--surface-dim);
  border-color: rgba(30, 37, 45, 0.15);
}

.icon-btn .badge-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid #FFF;
}

/* شريط البحث المباشر */
.search-bar-container {
  padding: 12px 16px;
}

.search-input-box {
  position: relative;
  display: flex;
  align-items: center;
  background: #FFF;
  border: 1.5px solid rgba(30, 37, 45, 0.12);
  border-radius: var(--radius-md);
  padding: 4px 6px 4px 14px;
  box-shadow: var(--shadow-ambient);
  transition: var(--transition-fast);
}

.search-input-box:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 95, 0, 0.15);
}

.search-input-box input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 8px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-main);
  text-align: right;
}

.search-input-box input::placeholder {
  color: var(--text-muted);
}

.search-btn {
  background: var(--primary);
  color: #FFF;
  border: none;
  padding: 8px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition-fast);
}

.search-btn:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-glow);
}

/* بطاقات الأقسام (Category Grid) */
.section-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 8px;
}

.section-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
}

.section-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: -4px;
}

.section-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 8px 16px 16px;
}

.category-card {
  background: #FFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 6px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.22s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-ambient);
}

.category-card:hover, .category-card.active {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  background: #FFF;
}

.category-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: var(--transition-fast);
}

.category-card:hover .category-icon-box {
  background: var(--primary);
  color: #FFF;
}

.category-name {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
}

/* بطاقات الفنيين (Technician Profile Card) */
.tech-card {
  background: #FFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px;
  margin: 0 16px 12px;
  box-shadow: var(--shadow-ambient);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: var(--transition-fast);
}

.tech-card:hover {
  border-color: rgba(255, 95, 0, 0.35);
  box-shadow: var(--shadow-elevated);
}

.tech-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tech-avatar-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.tech-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid #FFF;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.tech-verified-badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: var(--success);
  color: #FFF;
  font-size: 0.65rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-meta {
  flex: 1;
}

.tech-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tech-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--secondary);
}

.tech-badge-title {
  background: var(--tertiary-light);
  color: var(--tertiary-dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: var(--radius-sm);
}

.tech-specialty {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.tech-stats-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.rating-pill {
  color: var(--tertiary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 3px;
}

.tech-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--border-subtle);
  padding-top: 10px;
}

.tech-price-wrap {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.price-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
}

.price-currency {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-inline-start: 2px;
}

/* الأزرار الموحدة */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  background: rgba(30, 37, 45, 0.06);
  color: var(--secondary);
}

.btn-secondary:hover {
  background: rgba(30, 37, 45, 0.12);
}

.btn-secondary:active {
  transform: scale(0.98);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(30, 37, 45, 0.15);
  color: var(--secondary);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-danger {
  background: var(--danger-light);
  color: var(--danger);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.78rem;
  border-radius: var(--radius-sm);
}

/* باقات الصيانة الدورية الموفرة */
.package-card {
  background: #FFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin: 0 16px 14px;
  box-shadow: var(--shadow-ambient);
  position: relative;
  overflow: hidden;
}

.package-card.highlight {
  border-color: var(--primary);
  background: linear-gradient(180deg, #FFF9F5 0%, #FFFFFF 40%);
}

.package-badge-popular {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #FFF;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.package-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.package-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.package-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--secondary);
}

.package-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.package-features {
  list-style: none;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.package-feature-item {
  font-size: 0.78rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.package-feature-item i {
  color: var(--success);
  font-size: 0.85rem;
}

.package-pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
  margin-top: 8px;
}

/* شريط التنقل السفلي (Bottom Navigation Bar) */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: var(--surface-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 8px 4px;
  z-index: 900;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}

.nav-item i {
  font-size: 1.15rem;
}

.nav-item.active {
  color: var(--primary);
  font-weight: 700;
}

.nav-item.active::after {
  content: '';
  position: absolute;
  top: 0;
  width: 18px;
  height: 3px;
  background: var(--primary);
  border-radius: var(--radius-pill);
}

/* إشعار عائم وبانر الطوارئ */
.emergency-banner {
  background: linear-gradient(135deg, #B91C1C 0%, #FF5F00 100%);
  color: #FFF;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(185, 28, 28, 0.25);
}

.emergency-info h4 {
  font-size: 0.95rem;
  font-weight: 800;
}

.emergency-info p {
  font-size: 0.75rem;
  opacity: 0.9;
}

.emergency-call-btn {
  background: #FFF;
  color: #B91C1C;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* النوافذ المنبثقة (Modals & Bottom Sheets) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 37, 45, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.28s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.bottom-sheet {
  background: #FFF;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 20px 18px 30px;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .bottom-sheet {
  transform: translateY(0);
}

.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.sheet-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--secondary);
}

.sheet-close-btn {
  background: var(--surface-dim);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* نموذج الحجز التفاعلي (Booking Steps) */
.wizard-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
}

.wizard-steps::before {
  content: '';
  position: absolute;
  top: 15px;
  right: 15px;
  left: 15px;
  height: 2px;
  background: var(--border-subtle);
  z-index: 1;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--surface-dim);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFF;
  transition: var(--transition-fast);
}

.step-item.active .step-circle {
  background: var(--primary);
  color: #FFF;
  box-shadow: var(--shadow-glow);
}

.step-item.completed .step-circle {
  background: var(--success);
  color: #FFF;
}

.step-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
}

.step-item.active .step-label {
  color: var(--primary);
  font-weight: 700;
}

/* حقول الإدخال والاختيارات */
.form-group {
  margin-bottom: 14px;
}

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

.form-control {
  width: 100%;
  height: 48px;
  border: 1.5px solid rgba(30, 37, 45, 0.12);
  border-radius: 12px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text-main);
  background: #FFF;
  transition: var(--transition-fast);
  text-align: right;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 95, 0, 0.15);
}

textarea.form-control {
  height: auto;
  min-height: 80px;
  padding: 10px 14px;
}

/* بطاقات الاختيار الراديو المخصصة */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice-chip {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(30, 37, 45, 0.12);
  background: #FFF;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.choice-chip.active, .choice-chip:has(input:checked) {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary-dark);
  font-weight: 700;
}

.choice-chip input {
  display: none;
}

/* مسجل الصوت التجريبي (Voice Note Simulation) */
.voice-recorder-box {
  background: var(--surface-dim);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px dashed var(--border-subtle);
}

.record-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #FFF;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-fast);
}

.record-btn.recording {
  background: var(--danger);
  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { transform: scale(1.06); box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.audio-waveform {
  flex: 1;
  height: 24px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.wave-bar {
  width: 3px;
  height: 8px;
  background: #CBD5E1;
  border-radius: 2px;
  transition: height 0.2s ease;
}

.record-btn.recording ~ .audio-waveform .wave-bar {
  background: var(--primary);
  animation: soundWave 0.8s ease-in-out infinite alternate;
}

@keyframes soundWave {
  0% { height: 6px; }
  100% { height: 22px; }
}

/* التنبيهات المنبثقة (Toast Alerts) */
.toast-container {
  position: fixed;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 90%;
  max-width: 400px;
  pointer-events: none;
}

.toast {
  background: var(--secondary);
  color: #FFF;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  pointer-events: auto;
  animation: slideDown 0.3s ease;
}

.toast.success { border-right: 4px solid var(--success); }
.toast.danger { border-right: 4px solid var(--danger); }
.toast.info { border-right: 4px solid var(--primary); }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
