        /* ========================================
           BANNER CATEGORIE ORIZZONTALE
        ======================================== */
        
        .categories-banner {
            background: linear-gradient(135deg, #FF6B9D 0%, #FFA06B 50%, #FFD93D 100%);
            padding: 10px 0;
            margin: 10px auto;
            position: relative;
            overflow: hidden;
            max-width:1200px;
        }

        .banner-container {
            max-width: 100%;
            margin: 0 auto;
            position: relative;
        }

        .banner-title {
            color: white;
            text-align: center;
            font-size: 1.5rem;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .scroll-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0 15px;
        }

        .scroll-button {
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            flex-shrink: 0;
            z-index: 10;
        }

        .scroll-button:hover {
            background: white;
            transform: scale(1.1);
        }

        .scroll-button:active {
            transform: scale(0.95);
        }

        .scroll-button.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .categories-scroll {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            scroll-behavior: smooth;
            scrollbar-width: none;
            -ms-overflow-style: none;
            flex: 1;
            padding: 5px 0;
        }

        .categories-scroll::-webkit-scrollbar {
            display: none;
        }

        .category-card {
            background: white;
            border-radius: 12px;
            padding: 12px 24px;
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 0.95rem;
            white-space: nowrap;
            transition: all 0.3s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
            flex-shrink: 0;
        }

        .category-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            background: #f8f9fa;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .banner-title {
                font-size: 1.2rem;
                margin-bottom: 12px;
            }

            .scroll-button {
                width: 35px;
                height: 35px;
            }

            .category-card {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
        .categories-banner {
            max-width:100%;
        }
            
        }
