      html { scroll-behavior: smooth; }
      .hide-scrollbar::-webkit-scrollbar { display: none; }
      .hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
      .custom-scrollbar::-webkit-scrollbar { width: 8px; }
      .custom-scrollbar::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 4px; }
      .custom-scrollbar::-webkit-scrollbar-thumb { background: #F97316; border-radius: 4px; }
      .custom-scrollbar::-webkit-scrollbar-thumb:hover { background: #DC2626; }
      
      /* Mobile specific adjustments not covered by Tailwind utilities */
      .mobile-menu-enter { max-height: 0; opacity: 0; transition: all 0.3s ease-in-out; }
      .mobile-menu-enter-active { max-height: 400px; opacity: 1; }