/* === شريط تنقل سفلي متوافق مع نوافذ سلة === */
#perfect-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999; /* أقل من نوافذ المنبثقة (التي تكون 1000+) */
  display: flex;
  justify-content: space-around;
  background: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  border-top: 1px solid #eee;
  height: auto;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

#perfect-bottom-nav a,
#perfect-bottom-nav button {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  color: #333;
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

#perfect-bottom-nav i {
  font-size: 18px;
  margin-bottom: 4px;
}

#perfect-bottom-nav a[href="/"] {
  color: #e74c3c;
}