/* Custom Industrial Theme Enhancements for Shuaizhou B2B */

@layer utilities {
  .text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #94a3b8;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #64748b;
}

/* Smooth transitions */
.transition-card {
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.transition-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px -10px rgba(15, 23, 42, 0.12);
}

/* Diagram boxes */
.factory-schematic {
  background: radial-gradient(circle at 50% 50%, #1e293b 0%, #0f172a 100%);
}
