    
 /* Estilos adicionales para la página del artículo */
        .articuloContainer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .sliderContainer {
            position: relative;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        .slider {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            aspect-ratio: 1 / 1;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            aspect-ratio: 1 / 1;
        }

        .sliderControls {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            font-size: 18px;
            border-radius: 5px;
            transition: background 0.3s ease;
        }

        .sliderControls:hover {
            background: rgba(0,0,0,0.8);
        }

        .prevBtn {
            left: 10px;
        }

        .nextBtn {
            right: 10px;
        }

        .sliderIndicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 15px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .indicator.active {
            background: #880404;
        }

        .articuloInfo {
            padding: 20px 0;
        }

        .articuloTitulo {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .articuloCodigo {
            font-size: 1rem;
            color: #666;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .articuloPrecio {
            font-size: 3rem;
            font-weight: 700;
            color: #880404;
            margin-bottom: 20px;
        }
        
        .articuloPrecioBefore {
            text-decoration: line-through;
            color: #888;
            font-weight: bold;
            font-size: 1rem;
        }

        .articuloCategoria {
            display: inline-block;
            background: #f0f0f0;
            color: #333;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 20px;
        }

        .articuloEstado {
            display: inline-block;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
            margin-left: 10px;
        }

        .estado-disponible {
            background: #d4edda;
            color: #155724;
        }

        .estado-agotado {
            background: #f8d7da;
            color: #721c24;
        }

        .articuloDescripcion {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
            margin-bottom: 30px;
            text-align: justify;
        }

        .botonesAccion {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btnPrimario {
            background-color: #880404;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btnPrimario:hover {
            background-color: #7b0000;
            transform: translateY(-2px);
        }

        .btnSecundario {
            background-color: transparent;
            color: #880404;
            border: 2px solid #880404;
            padding: 15px 30px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btnSecundario:hover {
            background-color: #880404;
            color: white;
        }

        .breadcrumb {
            padding: 20px;
            font-size: 0.9rem;
            color: #666;
        }

        .breadcrumb a {
            color: #880404;
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .articuloContainer {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 15px;
            }

            .slider {
                height: 300px;
            }

            .articuloTitulo {
                font-size: 2rem;
            }

            .articuloPrecio {
                font-size: 2.5rem;
            }

            .botonesAccion {
                flex-direction: column;
            }

            .btnPrimario, .btnSecundario {
                width: 100%;
                justify-content: center;
            }
        }