  /* Custom styles for better aesthetics and dropdown positioning */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f8f8f8;
        }
        .search-dropdown {
            max-height: 400px;
            overflow-y: auto;
            z-index: 50; /* Ensure it stays above other content */
        }
        .search-container {
            position: relative;
        }
        .flash-sale-timer {
            font-variant-numeric: tabular-nums; /* Keeps digits aligned */
        }
        /* Slider transition track */
        #slider-track {
            transition: transform 0.5s ease-in-out;
        }
        /* Style for the slider item to take full width of its container (which is 100% of the slider container) */
        .slider-item {
            flex: 0 0 100%;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            padding: 2rem;
            color: white;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }