/* Mobile Bottom Action Bar */
.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 2px solid #e2e8f0;
  padding: 12px 16px;
  display: none;
  align-items: center;
  gap: 8px;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .mobile-action-bar {
    display: flex;
  }

  /* Add padding to body to prevent content hiding */
  body {
    padding-bottom: 80px;
  }
}

.mobile-action-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 8px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Cairo', sans-serif;
}

.mobile-action-btn i {
  font-size: 20px;
  color: #64748b;
}

.mobile-action-btn span {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
}

.mobile-action-btn:active {
  transform: scale(0.95);
}

.mobile-action-btn.favorite i {
  color: #ef4444;
}

.mobile-action-btn.chat i {
  color: #10b981;
}

.mobile-action-btn.call {
  flex: 2;
  flex-direction: row;
  gap: 12px;
  justify-content: space-around;
  text-decoration: none;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.mobile-action-btn.call i {
  color: white;
  font-size: 18px;
}

.mobile-action-btn.call span {
  color: white;
  font-size: 15px;
}

.mobile-action-btn:hover {
  background: #f8fafc;
}

.mobile-action-btn.call:hover {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}