  /* Custom scrollbar for categories */
      .custom-scrollbar::-webkit-scrollbar {
        width: 6px;
      }
      .custom-scrollbar::-webkit-scrollbar-track {
        background: #f1f1f1;
      }
      .custom-scrollbar::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 3px;
      }
      .custom-scrollbar::-webkit-scrollbar-thumb:hover {
        background: #555;
      }

      /* Hide scrollbar for flash sale */
      .scrollbar-hide {
        -ms-overflow-style: none;
        scrollbar-width: none;
      }
      .scrollbar-hide::-webkit-scrollbar {
        display: none;
      }

      /* Smooth scrolling */
      .scrollbar-hide {
        scroll-behavior: smooth;
      }

      @keyframes marquee {
        0% {
            transform: translateX(100%);
        }

        100% {
            transform: translateX(-100%);
        }
    }

    /* Tailwind-friendly class */
    .animate-marquee {
        animation: marquee 30s linear infinite;
    }

    .relative:hover .animate-marquee {
        animation-play-state: paused;
    }
