  /* Premium Products Page Styles */
        :root {
            --gradient-premium: linear-gradient(135deg, #006bd6 0%, #004a99 100%);
            --gradient-gold: linear-gradient(135deg, #dbae26 0%, #b8941a 100%);
            --gradient-silver: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            --gradient-platinum: linear-gradient(135deg, #1a1a2e 0%, #0d0d1a 100%);
        }
        
        .logo-image {
            max-height: 60px;
            width: auto;
            transition: var(--transition);
        }
        
        .header.sticky .logo-image {
            max-height: 50px;
        }
        
        .footer-logo-image {
            max-height: 70px;
            width: auto;
            margin-bottom: 20px;
        }
        
        /* Products Hero Section */
        .products-hero {
            height: 70vh;
            min-height: 500px;
            background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.7)), 
                        url('images/products/products-hero.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .products-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="2" fill="%23dbae26" opacity="0.3"/><circle cx="20" cy="20" r="1" fill="%23dbae26" opacity="0.2"/><circle cx="80" cy="80" r="1" fill="%23dbae26" opacity="0.2"/></svg>');
            background-size: 200px;
        }
        
        .products-hero-content {
            max-width: 900px;
            position: relative;
            z-index: 2;
        }
        
        .hero-products-badge {
            display: inline-block;
            background: var(--gradient-gold);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            margin-bottom: 30px;
            font-size: 0.9rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            animation: floatBadge 3s infinite ease-in-out;
        }
        
        @keyframes floatBadge {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .products-hero h1 {
            font-size: 4rem;
            margin-bottom: 25px;
            line-height: 1.1;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        
        .hero-subtitle {
            font-size: 1.4rem;
            opacity: 0.9;
            margin-bottom: 40px;
            max-width: 700px;
        }
        
        .hero-products-stats {
            display: flex;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        
        .product-stat {
            text-align: center;
        }
        
        .product-stat-number {
            font-size: 2.5rem;
            font-weight: 600;
            background: var(--gradient-gold);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
            line-height: 1;
        }
        
        .product-stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* WhatsApp button positioning */
        .whatsapp-float {
            left: 30px;
            bottom: 30px;
            right: auto;
        }
        
        /* Products Navigation */
        .products-nav {
            padding: 40px 0;
            background: var(--gradient-premium);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .products-nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .nav-products-list {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .nav-product-item {
            position: relative;
        }
        
        .nav-product-link {
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .nav-product-link:hover,
        .nav-product-link.active {
            background: var(--gradient-gold);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(219, 174, 38, 0.3);
        }
        
        .nav-product-icon {
            font-size: 1.2rem;
        }
        
        /* Premium Products Showcase */
        .premium-products {
            padding: 100px 0;
            background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
        }
        
        .product-category {
            margin-bottom: 100px;
        }
        
        .category-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .category-header::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: var(--gradient-gold);
        }
        
        .category-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-premium);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: white;
            font-size: 2.5rem;
            box-shadow: 0 15px 30px rgba(0, 107, 214, 0.2);
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .product-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .product-card:hover {
            transform: translateY(-20px) scale(1.02);
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
        }
        
        .product-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gradient-gold);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            z-index: 2;
        }
        
        .product-image {
            height: 250px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 20px;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.1);
        }
        
        .product-content {
            padding: 35px;
            position: relative;
        }
        
        .product-brand {
            color: var(--primary-color);
            font-weight: 500;
            margin-bottom: 10px;
            display: block;
        }
        
        .product-title {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--dark-color);
            line-height: 1.3;
        }
        
        .product-specs {
            list-style: none;
            margin: 20px 0;
        }
        
        .product-specs li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            color: #666;
        }
        
        .product-specs li i {
            color: var(--secondary-color);
            margin-right: 10px;
            font-size: 0.9rem;
        }
        
        .product-pricing {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid #eee;
        }
        
        .product-price {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .product-price-discount {
            text-decoration: line-through;
            color: #999;
            font-size: 1.2rem;
            margin-left: 10px;
        }
        
        .product-actions {
            display: flex;
            gap: 15px;
        }
        
        .btn-product {
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-family: 'Jost', sans-serif;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-product-primary {
            background: var(--gradient-premium);
            color: white;
        }
        
        .btn-product-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 107, 214, 0.3);
        }
        
        .btn-product-secondary {
            background: var(--gradient-gold);
            color: white;
        }
        
        .btn-product-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(219, 174, 38, 0.3);
        }
        
        /* Premium Brands Section */
        .premium-brands {
            padding: 100px 0;
            background: var(--gradient-platinum);
            color: white;
        }
        
        .brands-slider {
            margin-top: 50px;
        }
        
        .brand-slide {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .brand-slide img {
            max-width: 80%;
            max-height: 80px;
            filter: brightness(0) invert(1);
            opacity: 0.8;
            transition: all 0.3s ease;
        }
        
        .brand-slide:hover img {
            opacity: 1;
            transform: scale(1.1);
        }
        
        .swiper-pagination-bullet {
            background: rgba(255, 255, 255, 0.5);
            opacity: 1;
        }
        
        .swiper-pagination-bullet-active {
            background: var(--secondary-color);
        }
        
        /* Product Comparison */
        .product-comparison {
            padding: 100px 0;
            background: var(--gradient-silver);
        }
        
        .comparison-table {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            margin-top: 50px;
        }
        
        .comparison-header {
            display: grid;
            grid-template-columns: 1fr repeat(3, 1fr);
            background: var(--gradient-premium);
            color: white;
            padding: 25px 30px;
        }
        
        .comparison-row {
            display: grid;
            grid-template-columns: 1fr repeat(3, 1fr);
            padding: 20px 30px;
            border-bottom: 1px solid #eee;
            align-items: center;
        }
        
        .comparison-row:nth-child(even) {
            background: rgba(0, 107, 214, 0.02);
        }
        
        .comparison-row.featured {
            background: rgba(219, 174, 38, 0.05);
            position: relative;
        }
        
        .comparison-row.featured::before {
            content: 'RECOMMENDED';
            position: absolute;
            top: 0;
            left: 0;
            background: var(--gradient-gold);
            color: white;
            padding: 5px 15px;
            border-radius: 0 0 15px 0;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .comparison-feature {
            font-weight: 500;
            color: var(--dark-color);
        }
        
        .comparison-value {
            text-align: center;
            color: #666;
        }
        
        .comparison-value.highlight {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        /* Installation & Support */
        .installation-support {
            padding: 100px 0;
            background: white;
        }
        
        .support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .support-card {
            text-align: center;
            padding: 50px 30px;
            border-radius: 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .support-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-premium);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .support-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }
        
        .support-card:hover::before {
            opacity: 1;
        }
        
        .support-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-premium);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: white;
            font-size: 2rem;
        }
        
        /* Products CTA */
        .products-cta {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-color) 0%, #004a99 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .products-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('images/pattern-dots.svg') repeat;
            opacity: 0.1;
        }
        
        .products-cta h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .products-cta p {
            font-size: 1.4rem;
            max-width: 700px;
            margin: 0 auto 50px;
            opacity: 0.9;
        }
        
        .cta-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .form-group-inline {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-input {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 15px;
            border-radius: 10px;
            font-family: 'Jost', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.25);
            border-color: white;
        }
        
        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Mobile Menu Styles */
        .nav-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            z-index: 1001;
        }
        
        .nav-toggle span {
            width: 25px;
            height: 3px;
            background-color: white;
            transition: var(--transition);
            transform-origin: left center;
        }
        
        .header.sticky .nav-toggle span {
            background-color: var(--dark-color);
        }
        
        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(0px, 0px);
        }
        
        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(0px, 0px);
        }
        
        @media (max-width: 1200px) {
            .products-hero h1 {
                font-size: 3.5rem;
            }
            
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 30px;
            }
        }
        
        @media (max-width: 992px) {
            .products-hero {
                height: 60vh;
                min-height: 400px;
            }
            
            .products-hero h1 {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-products-stats {
                gap: 30px;
            }
            
            .product-stat-number {
                font-size: 2rem;
            }
            
            .products-nav {
                padding: 30px 0;
            }
            
            .nav-products-list {
                gap: 10px;
            }
            
            .nav-product-link {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
            
            .comparison-header,
            .comparison-row {
                grid-template-columns: 1fr repeat(3, 1fr);
                padding: 15px 20px;
            }
            
            .nav-toggle {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                max-width: 400px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 100px 30px 30px;
                transition: var(--transition);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                z-index: 1000;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-list {
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
                width: 100%;
            }
            
            .nav-item {
                width: 100%;
                margin-bottom: 0;
            }
            
            .nav-link {
                color: var(--dark-color);
                display: block;
                padding: 15px 0;
                width: 100%;
                border-bottom: 1px solid #eee;
                font-size: 1.1rem;
            }
            
            .nav-link.active {
                color: var(--primary-color);
                border-left: 3px solid var(--primary-color);
                padding-left: 15px;
            }
            
            .cta-nav {
                margin-top: 20px;
                width: 100%;
            }
            
            .cta-nav .btn {
                width: 100%;
                text-align: center;
            }
        }
        
        @media (max-width: 768px) {
            .products-hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-products-stats {
                gap: 20px;
                flex-direction: column;
                align-items: center;
            }
            
            .nav-products-list {
                flex-direction: column;
                align-items: center;
            }
            
            .nav-product-link {
                width: 100%;
                justify-content: center;
            }
            
            .products-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .form-group-inline {
                grid-template-columns: 1fr;
            }
            
            .comparison-header,
            .comparison-row {
                grid-template-columns: 1fr repeat(3, 0.8fr);
                font-size: 0.9rem;
            }
            
            .products-cta h2 {
                font-size: 2.5rem;
            }
            
            .products-cta p {
                font-size: 1.2rem;
            }
            
            .whatsapp-float {
                left: 20px;
                bottom: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .products-hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-products-badge {
                font-size: 0.8rem;
                padding: 10px 20px;
            }
            
            .product-stat-number {
                font-size: 1.8rem;
            }
            
            .product-content {
                padding: 25px;
            }
            
            .product-actions {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn-product {
                width: 100%;
                justify-content: center;
            }
            
            .products-cta h2 {
                font-size: 2rem;
            }
            
            .products-cta p {
                font-size: 1.1rem;
            }
            
            .cta-form {
                padding: 30px 20px;
            }
        }