/* 
 * Dar El-Khebra Website - Main Styles
 * Converted from React/Tailwind to Vanilla CSS
 */

/* ==================== ROOT VARIABLES ==================== */
:root {
  --primary-color: #398FA1;
  --secondary-color: #384158;
  --text-dark: #2C3E50;
  --text-gray: #6B7280;
  --bg-gray-50: #F9FAFB;
  --bg-gray-100: #F3F4F6;
  --bg-white: #FFFFFF;
  --border-gray: #E5E7EB;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --transition: all 0.3s ease;
}

/* ==================== RESET & BASE ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
}

body[dir="rtl"] {
  font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  direction: rtl;
  text-align: right;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==================== UTILITY CLASSES ==================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--secondary-color); }
.text-gray-600 { color: var(--text-gray); }
.text-gray-700 { color: #374151; }

.bg-white { background-color: var(--bg-white); }
.bg-gray-50 { background-color: var(--bg-gray-50); }
.bg-primary { background-color: var(--primary-color); }
.bg-secondary { background-color: var(--secondary-color); }

.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.hidden { display: none; }

/* ==================== HEADER & NAVIGATION ==================== */
.header {
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--secondary-color);
  transition: var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--primary-color);
}

.services-dropdown {
  position: relative;
}

.services-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--secondary-color);
  cursor: pointer;
  transition: var(--transition);
}

.services-dropdown-btn:hover {
  color: var(--primary-color);
}

.services-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  width: 16rem;
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  border-radius: 0.5rem;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
}

.services-dropdown:hover .services-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.services-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--secondary-color);
  transition: var(--transition);
}

.services-dropdown-menu a:hover {
  background: rgba(57, 143, 161, 0.1);
  color: var(--primary-color);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  color: var(--secondary-color);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

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

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--secondary-color);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--border-gray);
  padding: 1rem 0;
}

.nav-mobile.active {
  display: block;
}

.nav-mobile a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--secondary-color);
  border-radius: 0.5rem;
  transition: var(--transition);
}

.nav-mobile a:hover {
  background: rgba(57, 143, 161, 0.1);
  color: var(--primary-color);
}

.nav-mobile-services {
  padding: 0.5rem 1rem;
}

.nav-mobile-services-title {
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.nav-mobile-services-links {
  padding-left: 1rem;
}

.nav-mobile-services-links a {
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
  color: white;
  padding: 5rem 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.1) 0%, transparent 50%),
              radial-gradient(circle at bottom right, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

/* Hero column entrance animation: columns start slightly apart and slide toward each other on load */
@media (min-width: 768px) {
  .hero .hero-content > div:first-child {
    transform: translateX(-40px);
    opacity: 0;
    animation: hero-in-left 700ms cubic-bezier(.22,.9,.36,1) 120ms forwards;
  }

  .hero .hero-content > div:last-child {
    transform: translateX(40px);
    opacity: 0;
    animation: hero-in-right 700ms cubic-bezier(.22,.9,.36,1) 120ms forwards;
  }
}

@keyframes hero-in-left {
  0% {
    transform: translateX(-40px) scale(1.02);
    opacity: 0;
  }
  60% {
    transform: translateX(8px) scale(1.00);
    opacity: 1;
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

@keyframes hero-in-right {
  0% {
    transform: translateX(40px) scale(1.02);
    opacity: 0;
  }
  60% {
    transform: translateX(-8px) scale(1.00);
    opacity: 1;
  }
  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

/* About section: animate grid-2 columns toward each other when scrolled into view */
@media (min-width: 768px) {
  .section.bg-gray-50 .grid-2.in-view > div:first-child {
    transform: translateX(-40px);
    opacity: 0;
    animation: hero-in-left 700ms cubic-bezier(.22,.9,.36,1) 80ms forwards;
  }

  .section.bg-gray-50 .grid-2.in-view > div:last-child {
    transform: translateX(40px);
    opacity: 0;
    animation: hero-in-right 700ms cubic-bezier(.22,.9,.36,1) 80ms forwards;
  }
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-image {
  border-radius: 1rem;
  box-shadow: var(--shadow-2xl);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Hero Small (for inner pages) */
.hero-small {
  padding: 5rem 0;
  text-align: center;
}

.hero-small .hero-content {
  max-width: 48rem;
  margin: 0 auto;
}

.hero-small h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.hero-small p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
}

@media (min-width: 1024px) {
  .hero-small h1 {
    font-size: 3rem;
  }
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: #2d7a8a;
}

.btn-secondary {
  background: white;
  color: var(--secondary-color);
}

.btn-secondary:hover {
  background: var(--bg-gray-50);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 0.5rem;
}

body[dir="rtl"] .btn svg {
  margin-left: 0;
  margin-right: 0.5rem;
}

/* ==================== STATS SECTION ==================== */
.stats-section {
  padding: 4rem 0;
  background: var(--bg-white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-color);
  margin: 0 auto 1rem;
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-gray);
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-gray);
  max-width: 42rem;
  margin: 0 auto;
}

/* ==================== GRID LAYOUTS ==================== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* ==================== CARDS ==================== */
.card {
  background: var(--bg-white);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  overflow: hidden;
}

.card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.card svg {
  width: 3rem;
  height: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.card:hover .card-title {
  color: var(--primary-color);
}

.card-text {
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.card-link {
  color: var(--primary-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.card-link:hover {
  text-decoration: underline;
}

.card-img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 0.75rem 0.75rem 0 0;
  margin: -1.5rem -1.5rem 1rem -1.5rem;
}

/* Card hover animation for gray background */
.bg-gray-50 .card {
  background: var(--bg-white);
}

.bg-gray-50 .card:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow-2xl);
}

/* ==================== SERVICE DETAILS ==================== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2rem 0;
  scroll-margin-top: 96px;
}

.service-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.service-description {
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.feature-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.service-image {
  border-radius: 1rem;
  box-shadow: var(--shadow-2xl);
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ==================== FORMS ==================== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-gray);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(57, 143, 161, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ==================== CONTACT INFO ==================== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--secondary-color);
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.75;
}

.footer-section a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-color);
}

.footer-logo {
  height: 64px;
  width: auto;
  background: white;
  border-radius: 0.5rem;
  padding: 0.5rem;
  margin-bottom: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links .social-link {
  display: inline-block !important;
  width: 40px !important;
  height: 40px !important;
  line-height: 40px !important;
  text-align: center !important;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  transition: var(--transition);
  padding: 0 !important;
  margin: 0;
  border: none;
  vertical-align: middle;
}

.social-links .social-link:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  color: white;
}

.social-links .social-link i {
  display: inline-block !important;
  font-size: 20px !important;
  line-height: 40px !important;
  width: 100% !important;
  text-align: center !important;
  color: white;
  vertical-align: top !important;
  margin: 0 !important;
  padding: 0 !important;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
}

/* ==================== BACK TO TOP BUTTON ==================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

body[dir="rtl"] .back-to-top {
  right: auto;
  left: 2rem;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease;
}

/* ==================== UTILITY CLASSES ==================== */
.text-center {
  text-align: center;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.space-y-32 > * + * {
  margin-top: 8rem;
}

.space-y-4 > * + * {
  margin-top: 1rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.shadow-xl {
  box-shadow: var(--shadow-xl);
}

.shadow-2xl {
  box-shadow: var(--shadow-2xl);
}

.img-fluid {
  width: 100%;
  height: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.flex {
  display: flex;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.leading-relaxed {
  line-height: 1.75;
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

/* Service alternating layout */
.service-detail:nth-child(even) {
  direction: ltr;
}

[dir="rtl"] .service-detail:nth-child(even) {
  direction: rtl;
}

/* Scroll margin for anchor links */
.scroll-mt-24 {
  scroll-margin-top: 6rem;
}

/* Feature list with checkmarks */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.feature-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-content { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  .hero-actions {
    flex-direction: row;
  }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1024px) {
  h1 { font-size: 3.75rem; }
  h2 { font-size: 2.25rem; }
  .hero h1 { font-size: 3.75rem; }
  .hero p { font-size: 1.25rem; }
  .hero-content { grid-template-columns: repeat(2, 1fr); }
  .nav-desktop { display: flex; }
  .mobile-menu-btn { display: none; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .footer-content { grid-template-columns: repeat(4, 1fr); }
  .service-detail { grid-template-columns: repeat(2, 1fr); }
  .service-detail:nth-child(even) .service-content { order: 2; }
  .service-detail:nth-child(even) .service-visual { order: 1; }
}

@media (max-width: 767px) {
  .container { padding: 0 1rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  .hero { padding: 3rem 0; }
  .section { padding: 3rem 0; }
  .hero-image { display: none; }
}

/* ==================== TOAST NOTIFICATIONS ==================== */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
}

.toast {
  background: white;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-xl);
  padding: 1rem 1.5rem;
  margin-bottom: 0.5rem;
  min-width: 300px;
  animation: slideIn 0.3s ease;
}

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

.toast-title {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.25rem;
}

.toast-message {
  color: var(--text-gray);
  font-size: 0.875rem;
}

body[dir="rtl"] .toast-container {
  right: auto;
  left: 1rem;
}
