 /* --- CSS: Estilos Base --- */
        :root {
            --red: #e60000;
            --dark-grey: #333;
        }

        #galeria26 {
            font-family: Arial, sans-serif;
            margin: 0;
            /*background-color: #ddd;*/
            display: flex;
            justify-content: center;
            /*align-items: center;
            min-height: 100vh;*/ /* Asegura altura mínima */
            overflow-x: hidden; /* Evita scroll horizontal accidental */
            padding-top: 0px;
            padding-bottom: 0px;
        }

        /* --- Contenedor Principal --- */
        .slider-container {
            width: 100%;
            max-width: 100%;
            height: auto;
            padding-bottom: 0px;
            background: linear-gradient(to bottom, #ffffff, #dcdcdc);
            border-radius: 8px;
            overflow: hidden;
            position: relative; /* Necesario para posicionar flechas y puntos */
            /*box-shadow: 0 10px 20px rgba(0,0,0,0.2);*/
            /* Importante para UX de arrastre: evita seleccionar texto mientras se arrastra */
            user-select: none; 
            -webkit-user-select: none;
        }

        /* Wrapper que se mueve */
        .slides-wrapper {
            display: flex;
            /* La transición se controla por JS para el drag, 
               pero establecemos una base suave para los clicks */
            transition: transform 0.5s ease-out; 
            cursor: grab; /* Indica que se puede agarrar */
            will-change: transform; /* Optimización de rendimiento */
        }
        
        .slides-wrapper.grabbing {
             cursor: grabbing; /* Cursor mientras se arrastra */
             transition: none; /* Sin transición mientras se arrastra manualmente */
        }


        /* --- Slide Individual --- */
        .slide {
            min-width: 100%;
            display: flex;
            flex-direction: row;
            align-items: center;
            padding: 40px 50px; /* Aumenté un poco el padding lateral por las flechas */
            box-sizing: border-box;
           
        }

        /* Imagen del producto */
        .slide-image {
            flex: 1.2; /* Un poco más de espacio a la imagen */
            text-align: center;
        }

        /* Evitar que la imagen se arrastre por defecto al intentar hacer swipe */
        .slide-image img {
            max-width: 100%;
            height: auto;
           /* filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));*/
            pointer-events: none; 
            min-width: 200px
            
        }

        /* Contenido de texto */
        .slide-content {
            flex: 1;
            padding-left: 20px;
            text-align: left;
            font-size: 0.5rem;
        }

        /* Tipografía estilo diseño adjunto */
        .slide-content h2 { margin: 0; font-size: 2.8rem; color: #aaa; text-transform: uppercase; line-height: 0.9; font-weight: bolder;}
        .slide-content .subtitle { font-weight: bold; color: var(--dark-grey); font-size: 1.3rem; text-transform: uppercase;}
        .slide-content .product-name { color: var(--red); font-size: 2.4rem; font-weight: 800; text-transform: uppercase; margin-bottom: 15px; line-height: 1;}
        .slide-content .descrip-label {
            font-size: 1.3rem; margin-bottom: 5px;
            }
        .slide-content .price-label { font-size: 1.4rem; color:rgba(191,0,3,1.00); margin-bottom: 0px; margin-top: 15px;}
        .slide-content .price-value { font-size: 2.8rem; font-weight: 800; color: #444; display: block;  margin-bottom: 25px;}


        .slide-content .price-normal {font-size: 1.8rem; margin-top: 5px; }

/* Botón MAS INFO */
        .btn-info {
    background: linear-gradient(to bottom, #444, #111);
    color: white;
    padding: 12px 35px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 1.1rem;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-decoration: none;
        }

        .btn-info:hover { transform: translateY(-3px); background: #000; box-shadow: 0 8px 20px rgba(0,0,0,0.3); }

        /* --- Navegación: Flechas --- */
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.3); /* Fondo semitransparente */
            color: var(--dark-grey);
            border: none;
            width: 40px;
            height: 80px;
            font-size: 2rem;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
        }
        
        .nav-btn:hover {
             background-color: var(--red);
             color: white;
        }

        .prev-btn { left: 10px; }
        .next-btn { right: 10px; }

        /* --- Navegación: Puntos (Dots) --- */
        .dots-container {
            text-align: center;
            position: absolute;
            bottom: 20px;
            width: 100%;
            z-index: 10;
        }

        .dot {
            height: 20px;
            width: 20px;
            margin: 0 6px;
            background-color: var(--red);
            border-radius: 50%;
            display: inline-block;
            cursor: pointer;
            opacity: 0.3;
            transition: all 0.3s;
            box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
        }

        .dot.active { opacity: 1; transform: scale(1.2); border: 2px solid white;}


        /* --- Responsividad --- */
        @media (max-width: 768px) {
            .slide { padding: 30px 20px; }
            .slide-content h2 { font-size: 2.2rem; }
            .slide-content .product-name { font-size: 2rem; }
            .slide-content .price-value { font-size: 2.4rem; }
             /* Ocultar flechas en móviles muy pequeños si molestan, opcional */
            /* .nav-btn { display: none; } */
        }

        @media (max-width: 600px) {
            .slide { flexDirection: column; text-align: center; padding-top: 50px;}
            .slide-image { max-width: 80%; margin: 0 auto; }
            .slide-content { padding-left: 0; margin-top: 30px; text-align: center; padding-bottom: 30px; transform: scale(0.9)}
            .nav-btn { width: 30px; font-size: 1.5rem; background-color: rgba(255,255,255,0.5);}
            
            
        }
	
