  .contenedor_principal_pavco {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .navegacion-encabezado {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            font-size: 14px;
        }
        
        .navegacion-encabezado a {
            color: #666;
            text-decoration: none;
            margin-right: 10px;
        }
        
        .navegacion-encabezado a:hover {
            color: #000;
        }
        
        .navegacion-encabezado .activo {
            color: #000;
            font-weight: bold;
        }
        
        /* Imagen principal */
        .imagen-destacada {
            width: 100%;
            height: 400px;
            object-fit: cover;
            margin: 20px 0;
            border-radius: 4px;
        }
        
        /* Contenido principal */
        .contenido-principal {
            margin: 30px 0;
        }
        
        h1 {
            font-size: 28px;
            margin-bottom: 15px;
            color: #000;
        }
        
        h2 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #333;
            font-weight: 600;
        }
        
        p {
            margin-bottom: 15px;
            color: #555;
        }
        
        /* Sección de filtros */
        .seccion-filtros {
            display: flex;
            margin: 30px 0;
            gap: 30px;
        }
        
        .barra-lateral-filtros {
            width: 250px;
        }
        
        .titulo-filtros {
            font-size: 20px;
            margin-bottom: 20px;
            color: #000;
        }
        
        .elemento-filtro {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            cursor: pointer;
        }
        
        .elemento-filtro:last-child {
            border-bottom: none;
        }
        
        .elemento-filtro span {
            font-weight: 500;
        }
        
        .elemento-filtro .icono-mas {
            font-size: 20px;
            color: #666;
        }
        .elemento-filtro:last-child {
            border-bottom: none;
        }
        
        .elemento-filtro span {
            font-weight: 500;
        }
        
        .elemento-filtro .icono-mas {
            font-size: 20px;
            color: #666;
            transition: transform 0.3s ease;
        }
        
        .elemento-filtro.expandido .icono-mas {
            transform: rotate(45deg);
        }
        
        .opciones-filtro {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .opciones-filtro.expandido {
            max-height: 200px;
        }
        
        .opcion-filtro-item {
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .opcion-filtro-item input {
            margin: 0;
        }
        
        .opcion-filtro-item label {
            font-size: 14px;
            color: #555;
        }
        
        /* Cuadrícula de productos */
        .encabezado-productos {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contador-productos {
            font-size: 14px;
            color: #666;
        }
        
        .opciones-vista {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .boton-vista {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f5f5f5;
            border: 1px solid #ddd;
            cursor: pointer;
        }
        
        .boton-vista.activo {
            background-color: #ddd;
        }
        
        .menu-ordenamiento {
            padding: 8px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            cursor: pointer;
        }
        
        .cuadricula-productos {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .tarjeta-producto {
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .tarjeta-producto:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .imagen-producto {
            width: 100%;
            height: 200px;
            background-color: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .imagen-producto img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        
        .icono-corazon {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }
        
        .icono-corazon:hover {
            background-color: #f5f5f5;
        }
        
        .informacion-producto {
            padding: 15px;
        }
        
        .titulo-producto {
            font-size: 16px;
            margin-bottom: 5px;
            color: #333;
        }
        
        .precio-producto {
            font-size: 18px;
            font-weight: bold;
            color: #000;
        }
        
        /* Diseño responsivo */
        @media (max-width: 768px) {
            .seccion-filtros {
                flex-direction: column;
            }
            
            .barra-lateral-filtros {
                width: 100%;
            }
            
            .cuadricula-productos {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .imagen-destacada {
                height: 250px;
            }
        }
        
        @media (max-width: 480px) {
            .cuadricula-productos {
                grid-template-columns: 1fr;
            }
        }