.phone-mockup {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  border: 8px solid #1e293b;
  border-radius: 2.5rem;
  overflow: hidden;
  position: relative;
  background: white;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 24px;
  background: #1e293b;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 20;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@media (prefers-reduced-motion: no-preference) {
  .floating {
    animation: float 5s ease-in-out infinite;
  }
}

html[dir="rtl"] body {
  font-family: 'Cairo', sans-serif;
  line-height: 1.8;
}

html[dir="rtl"] .font-sans {
  font-family: 'Cairo', sans-serif !important;
}

html[dir="rtl"] .badge-soon {
  margin-left: 0;
  margin-right: 0.5rem;
}

html[dir="ltr"] .badge-soon {
  margin-left: 0.5rem;
  margin-right: 0;
}
