* {
            margin: 0;
            padding: 0;
            
        }

        body {
            font-family: 'Roboto', Arial, sans-serif;
            background-color: #f1f3f6;
           
        }

        .ekart-category-wrapper {
            max-width: 100%;
            margin: 0 auto;
            position: relative;
            background: white;
            border-radius: 4px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            padding: 24px 16px;
        }

        .shopify-slider-container {
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .amazon-categories-track {
            display: flex;
            transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            gap: 20px;
            padding: 0 10px;
        }

        .flipkart-category-item {
            flex: 0 0 auto;
            width: 120px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 8px;
            border-radius: 8px;
        }

        /* ensure brand items are links without underline */
        .flipkart-category-item,
        .flipkart-category-item:link,
        .flipkart-category-item:visited {
            text-decoration: none;
            color: inherit;
        }

        .flipkart-category-item:hover {
            transform: translateY(-4px);
            background-color: #f8f9fa;
        }

        .myntra-category-image {
            width: 90px;
            height: 64px;
            border-radius: 12px;
            object-fit: cover;
            margin: 0 auto 12px;
            display: block;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: box-shadow 0.3s ease;
        }

        .flipkart-category-item:hover .myntra-category-image {
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        .snapdeal-category-title {
            font-size: 14px;
            font-weight: 500;
            color: #212121;
            line-height: 1.3;
            margin: 0;
        }

        .paytm-nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            z-index: 10;
        }

        .paytm-nav-button:hover {
            background: #2874f0;
            color: white;
            border-color: #2874f0;
            box-shadow: 0 4px 12px rgba(40, 116, 240, 0.3);
        }

        .paytm-nav-button:active {
            transform: translateY(-50%) scale(0.95);
        }

        .meesho-prev-btn {
            left: -22px;
        }

        .jiomart-next-btn {
            right: -22px;
        }

        .paytm-nav-button:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            background: #f5f5f5;
        }

        .paytm-nav-button:disabled:hover {
            background: #f5f5f5;
            color: #666;
            border-color: #e0e0e0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .bigbasket-slider-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 8px;
        }

        .nykaa-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #e0e0e0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nykaa-dot.active {
            background: #2874f0;
            width: 20px;
            border-radius: 4px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .flipkart-category-item {
                width: 100px;
            }

            .myntra-category-image {
                width: 70px;
                height: 56px;
            }

            .snapdeal-category-title {
                font-size: 12px;
            }

            .paytm-nav-button {
                width: 36px;
                height: 36px;
            }

            .meesho-prev-btn {
                left: -18px;
            }

            .jiomart-next-btn {
                right: -18px;
            }
        }

        @media (max-width: 480px) {
            .flipkart-category-item {
                width: 80px;
            }

            .myntra-category-image {
                width: 60px;
                height: 48px;
            }

            .snapdeal-category-title {
                font-size: 11px;
            }
        }

        /* Loading Animation */
        .myntra-category-image {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: loading 1.5s infinite;
        }

        .myntra-category-image[src] {
            background: none;
            animation: none;
        }

        @keyframes loading {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }