        .products-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(3, 26, 63, 0.85)), url('../Images/product-page-hero-bg-2.avif');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 100px;
            text-align: center;
            margin-top: 80px;
        }
        .solarpanel-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(3, 26, 63, 0.85)), url('../Images/products/solar-panel-thumb-small-12.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 100px;
            text-align: center;
            margin-top: 80px;
        }
        .products-hero h1 {
            font-size: 3.8rem;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .products-hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            font-size: 16px;
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
        }

        .breadcrumb a:hover {
            color: var(--secondary);
        }

        .breadcrumb span {
            margin: 0 10px;
            color: rgba(255, 255, 255, 0.5);
        }

        .category-section {
            padding: 80px 0;
        }

        .category-section:nth-child(even) {
            background-color: #f8f9fa;
        }

        .category-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .category-title {
            position: relative;
            padding-bottom: 15px;
        }

        .category-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--secondary);
        }

        .view-all-btn {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: 500;
            transition: var(--transition);
        }

        .view-all-btn:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }

        .view-all-btn i {
            margin-left: 8px;
            transition: var(--transition);
        }

        .view-all-btn:hover i {
            transform: translateX(5px);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .product-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .product-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-card:hover .product-img img {
            transform: scale(1.05);
        }

        .product-info {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-info h3 {
            margin-bottom: 15px;
            color: var(--primary);
        }

        .product-info p {
            margin-bottom: 20px;
            color: var(--gray);
            flex-grow: 1;
        }

        .product-features {
            margin-top: auto;
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .feature-list {
            list-style: none;
            margin-bottom: 20px;
        }

        .feature-list li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 8px;
            font-size: 14px;
            color: var(--gray);
        }

        .feature-list li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--accent);
            font-size: 12px;
        }

        .product-link {
            display: inline-flex;
            align-items: center;
            color: var(--secondary);
            font-weight: 500;
            transition: var(--transition);
        }

        .product-link:hover {
            color: var(--primary);
        }

        .product-link i {
            margin-left: 8px;
            transition: var(--transition);
        }

        .product-link:hover i {
            transform: translateX(5px);
        }

        /* Responsive styles for products page */
        @media (max-width: 768px) {
            .products-hero {
                padding: 150px 0 80px;
            }

            .products-hero h1 {
                font-size: 2.5rem;
            }

            .products-hero p {
                font-size: 1.1rem;
            }

            .category-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .view-all-btn {
                margin-top: 10px;
            }
        }

        @media (max-width: 576px) {
            .products-hero h1 {
                font-size: 2rem;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Custom styles for solar panel detail page */
        .product-detail-section {
            padding: 80px 0;
        }

        .product-detail-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .product-gallery {
            position: sticky;
            top: 100px;
        }

        .product-image-main {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            position: relative;
        }

        .product-image-main img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .product-image-main:hover img {
            transform: scale(1.03);
        }

        .product-thumbnails {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
        }

        .product-thumbnail {
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 3px solid transparent;
        }

        .product-thumbnail.active {
            border-color: var(--secondary);
        }

        .product-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-info h2 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 2.2rem;
        }

        .product-description {
            margin-bottom: 30px;
            line-height: 1.8;
            color: var(--gray);
        }

        .product-features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 30px 0;
        }

        .product-feature {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: rgba(26, 58, 108, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--primary);
            flex-shrink: 0;
        }

        .specifications-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            overflow: hidden;
        }

        .specifications-table th, .specifications-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        .specifications-table th {
            background-color: var(--primary);
            color: white;
            font-weight: 500;
        }

        .specifications-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        .specifications-table tr:hover {
            background-color: #f1f1f1;
        }

        .brands-section {
            background-color: #f8f9fa;
            padding: 80px 0;
        }

        .brands-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            align-items: center;
        }

        .brand-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .brand-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        .brand-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .brand-card:hover::before {
            transform: scaleX(1);
        }

        .brand-logo {
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .brand-logo img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }

        .comparison-section {
            padding: 80px 0;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            overflow: hidden;
        }

        .comparison-table th, .comparison-table td {
            padding: 15px;
            text-align: center;
            border: 1px solid #eee;
        }

        .comparison-table th {
            background-color: var(--primary);
            color: white;
            font-weight: 500;
        }

        .comparison-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        .highlight {
            background-color: rgba(76, 175, 80, 0.1) !important;
            font-weight: 600;
        }

        .cta-section {
            background: linear-gradient(135deg, var(--primary), #14325a);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/45-degree-fabric-light.png');
            opacity: 0.05;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* Animation classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive styles */
        @media (max-width: 992px) {
            .product-detail-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .product-gallery {
                position: static;
            }
            
            .solar-hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .solar-hero {
                padding: 150px 0 80px;
            }
            
            .solar-hero h1 {
                font-size: 2.2rem;
            }
            
            .product-features-grid {
                grid-template-columns: 1fr;
            }
            
            .specifications-table, .comparison-table {
                display: block;
                overflow-x: auto;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 576px) {
            .solar-hero h1 {
                font-size: 1.8rem;
            }
            
            .product-thumbnails {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .brands-container {
                grid-template-columns: 1fr;
            }
        }