/*swipper tipos de productos*/
   /* ESTILOS PARA EL SLIDER DE CATEGORÍAS */
        .categories-section {
            width: 100%;
            position: relative;
        }

        .categories-container {
            margin: 0 auto;
            padding: 0 20px;
            padding-top:30px;
            position: relative;
        }


        .categories-swiper {
            width: calc(100% - 100px);
            margin: 0 auto;
            overflow: hidden;
            max-height:300px;
            display:flex;
            justify-content:center;
            align-items:center;
        }

        .categories-wrapper {
            display: flex;
            align-items: center;
        }

        .category-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            width: 100%;
        }
        .categories-swiper .categories-wrapper .flex-categoria{
            display: flex;
            align-items: center;
        }
        .category-circle {
            width:200px;
            height: auto;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
           /* margin-bottom: 15px;*/
            transition: all 0.3s ease;
        }

        .category-img{
            mix-blend-mode: multiply;

        }

        .category-name {
            color: var(--color-primary);
            text-align: center;
            font-size: 1rem;
            font-weight: 600;
            transition: color 0.3s ease;
            padding: 0 5px;
            line-height: 1.5;
            min-height: 2.5em;
            overflow: hidden;
            transition: all ease .3s;
        }


        .category-circle:hover .category-name{
            color:var(--color-secondary);
        }



        /* ESTILOS PARA LAS FLECHAS DE CATEGORÍAS */
        .categories-swiper-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: var(--AzulCorporativo);
            border: 1px solid var(--ColorWhite);
            /*border-radius: 50%;*/
            color: var(--ColorWhite);
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;

        }

        .categories-swiper-nav:hover {
            background-color: var(--AzulCorporativo);
            color: var(--ColorWhite);
            transform: translateY(-50%) scale(1.1);
        }

        .categories-swiper-nav.next {
            right: 10px;
        }

        .categories-swiper-nav.prev {
            left: 10px;
        }

        .categories-swiper-nav::after {
            content: '';
        }



        /* Ajustes responsive para el nuevo diseño */
        @media (max-width: 1200px) {
            .category-circle {
                padding: 15px; /* Reducido de 20px */

            }
        }

        @media (max-width: 992px) {
            .category-name {
                font-size: 0.7rem; /* Reducido de 0.8rem */
                min-height: 2.7em;
            }
        }

        @media (max-width: 768px) {
            .category-circle {
                padding: 12px; /* Reducido de 15px */
            }

            .category-name {
                font-size: 0.9rem;
                min-height:3em;
            }
        }
         /* Ajustes específicos para móvil (576px o menos) */
        @media (max-width: 576px) {
            .categories-container{
                padding:0px 20px;
            }
            .categories-swiper {
                width: calc(100% - 60px); /* Más espacio para flechas */
            }

            .category-name {
                min-height: 3em;
                overflow: hidden;
                /*margin-top: 5px;*/
            }

            .categories-swiper-nav {
                width: 40px;
                height: 40px;
            }


            /* Asegurar que solo se muestren 2 slides */
            .categories-swiper .swiper-slide {
              /*  width: calc(50% - 10px) !important;*/
              width: 100%;
                margin-right: 10px;
            }


            .categories-swiper .swiper-slide{
                margin-left:5px;
            }
        }
