        /* Aquí van tus estilos CSS actuales */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        .container {
            display: flex;
        }
        .sidebar {
            width: 250px;
            padding: 20px;
            background-color: #f4f4f4;
            border-right: 1px solid #ddd;
            position: fixed;
            top: 0;
            bottom: 0;
            overflow-y: auto;
        }
        .sidebar h2 {
            font-size: 1.5em;
            margin-top: 0;
        }
        .sidebar form {
            margin-top: 20px;
        }
        .sidebar label {
            display: block;
            margin-bottom: 10px;
        }
        .sidebar input[type="checkbox"] {
            margin-right: 10px;
        }
        .filter-button, .clear-button {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            border-radius: 5px;
            font-size: 1em;
            margin-top: 10px;
            display: block;
        }
        .clear-button {
            background-color: #dc3545;
            margin-top: 5px;
        }
        .content {
            margin-left: 270px;
            padding: 20px;
            flex: 1;
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        .product-card {
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            background: #fff;
            transition: box-shadow 0.3s ease;
            position: relative;
        }
        .product-card:hover {
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .product-image img {
            width: 100%;
            height: auto;
        }
        .product-details {
            padding: 15px;
        }
        .product-name {
            font-size: 1.2em;
            margin: 0;
            color: #333;
        }
        .product-price {
            color: #007bff;
            font-size: 1.1em;
            margin: 10px 0;
        }
        .product-category {
            font-size: 0.8em;
            color: #999;
        }
        .view-details-button {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
            border-radius: 5px;
            font-size: 0.9em;
            position: absolute;
            bottom: 10px;
            right: 10px;
        }
        /* Estilos para el modal */
        .modal {
            display: none; 
            position: fixed; 
            z-index: 1; 
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto; 
            background-color: rgba(0,0,0,0.4); 
            padding-top: 60px; 
        }
        .modal-content {
            background-color: #fefefe;
            margin: 15% auto; 
            padding: 20px;
            border: 1px solid #888;
            width: 50%; 
            max-width: 600px;
            text-align: center;
            border-radius: 8px;
        }
        .modal-content img {
            width: 100%;
            height: auto;
            max-width: 300px; /* Reducción del tamaño de la imagen */
            margin-bottom: 20px;
            border-radius: 8px;
        }
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
        }
        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }
        .pagination {
            text-align: center;
            margin: 20px 0;
        }
        .pagination a {
            color: #007bff;
            padding: 10px;
            text-decoration: none;
            border: 1px solid #ddd;
            border-radius: 5px;
            margin: 0 5px;
            font-size: 1em;
        }
        .pagination a.active {
            background-color: #007bff;
            color: white;
            border: 1px solid #007bff;
        }
        .pagination a.disabled {
            color: #ccc;
            cursor: not-allowed;
            border: 1px solid #ccc;
        }