/* Custom Base Utilities for Omer Phones */
@layer utilities {
  .no-scrollbar::-webkit-scrollbar {
    display: none;
  }
  .no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}

body {
  font-family: 'Tajawal', sans-serif;
  background-color: #f8fafc;
  color: #0f172a;
  -webkit-tap-highlight-color: transparent;
}

/* Tab Active Styles */
.nav-tab.active {
  color: #2563eb !important;
}

.nav-tab.active svg {
  stroke-width: 2.5;
  transform: translateY(-1px);
  transition: transform 0.15s ease;
}

/* Smooth modal slide up */
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0.8;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-slide-up {
  animation: slideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Card hover / press feedback */
.phone-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.phone-card:active {
  transform: scale(0.985);
}

/* Custom Image Fallback Glow */
.image-glow {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}