/* Recent Orders Ticker - Styles améliorés */
#recent-orders-ticker {
  pointer-events: none;
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
  justify-content: center !important;
  position: relative;
}

/* Dégradés latéraux supprimés pour éviter les marques noires dans le header */

#recent-orders-content {
  display: block !important;
  visibility: visible !important;
  color: rgba(255,255,255,0.9) !important;
  white-space: nowrap !important;
  text-align: center;
  position: relative;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.12) 0%, rgba(0, 200, 255, 0.08) 100%);
  border-radius: 16px;
  border: 1px solid rgba(0, 123, 255, 0.2);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: opacity 0.8s ease-in-out, all 0.3s ease;
  opacity: 0;
}

#recent-orders-content::before {
  content: '⚡';
  margin-right: 8px;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(0, 200, 255, 0.8));
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.15);
  }
}

#recent-orders-content:hover {
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.18) 0%, rgba(0, 200, 255, 0.12) 100%);
  border-color: rgba(0, 123, 255, 0.35);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

@media (max-width: 960px) {
  #recent-orders-ticker {
    display: none !important;
  }
}

