  /* Estilos específicos para la página de productos */
        .products-page {
            min-height: 100vh;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .products-hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, #002356 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }

        .products-hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--white);
        }

        .products-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }

        .products-container {
            padding: 4rem 0;
        }

        .products-category {
            margin-bottom: 4rem;
        }

        .category-title {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 3rem;
            position: relative;
        }

        .category-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }

        .products-grid-detailed {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .product-card-detailed {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #e1e1e1;
        }

        .product-card-detailed:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 3px solid var(--primary-color);
        }

        .product-content {
            padding: 1.5rem;
        }

        .product-title {
            color: var(--primary-color);
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .product-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .product-specs {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .product-spec {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #555;
            font-size: 0.9rem;
        }

        .product-spec i {
            color: var(--secondary-color);
            font-size: 0.8rem;
        }

        .product-pricing {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 10px;
            border-left: 4px solid var(--accent-color);
        }

        .product-price {
            color: var(--secondary-color);
            font-size: 1.8rem;
            font-weight: bold;
        }

        .product-stock {
            color: #28a745;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .product-stock.out-of-stock {
            color: var(--secondary-color);
        }

        .btn-product {
            width: 100%;
            padding: 12px 20px;
            background: linear-gradient(135deg, var(--primary-color), #0047ab);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1rem;
        }

        .btn-product:hover {
            background: linear-gradient(135deg, #002356, var(--primary-color));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 52, 120, 0.4);
        }

        .btn-product:disabled {
            background: #6c757d;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .back-to-home {
            text-align: center;
            margin-top: 3rem;
        }

        .btn-back {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 12px 24px;
            background: var(--white);
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            border-radius: 8px;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-back:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* Filtros de productos */
        .products-filters {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 3rem;
        }

        .filter-title {
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .filter-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .filter-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .filter-group label {
            font-weight: 600;
            color: var(--primary-color);
        }

        .filter-group select,
        .filter-group input {
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        /* Responsive para página de productos */
        @media (max-width: 768px) {
            .products-hero h1 {
                font-size: 2.5rem;
            }

            .products-hero {
                padding: 3rem 0;
            }

            .products-grid-detailed {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .filter-grid {
                grid-template-columns: 1fr;
            }

            .product-pricing {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .products-hero h1 {
                font-size: 2rem;
            }

            .category-title {
                font-size: 2rem;
            }

            .product-content {
                padding: 1rem;
            }
        }