

        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            font-family: "Source Sans 3", sans-serif;
        }
        
        .specs-table th, .specs-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .specs-table th {
            background-color: #f5f5f5;
            font-weight: 600;
            color: #212121;
        }
        
        .specs-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }





        .key-points {
            background: #212121;
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin: 40px 0;
        }
        
        .key-points h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-family: "Changa", sans-serif;
        }
        
        .key-points ul {
            list-style-type: none;
        }
        
        .key-points li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 30px;
            font-family: "Source Sans 3", sans-serif;
        }
        
        .key-points li:before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #4CAF50;
        }








        /* Product Page Specific Styles */
        /* .product-hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/2bg.png');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        } */
         

        .product-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .product-hero p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        .product-container {
            display: flex;
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }

        .product-gallery {
            flex: 1;
            padding-right: 40px;
        }

        .main-image {
            width: 100%;
            height: 400px;
            object-fit: contain;
            margin-bottom: 15px;
            background: #f5f5f5;
            border-radius: 8px;
        }

        .thumbnail-container {
            display: flex;
            gap: 10px;
        }

        .thumbnail {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 5px;
            cursor: pointer;
            border: 2px solid #ddd;
            transition: all 0.3s ease;
        }

        .thumbnail:hover, .thumbnail.active {
            border-color: #212121;
        }

        .product-details {
            flex: 1;
            padding-left: 40px;
        }

        .product-title {
            font-size: 36px;
            color: #212121;
            margin-bottom: 15px;
        }

        .product-price {
            font-size: 28px;
            color: #212121;
            font-weight: 600;
            margin-bottom: 25px;
        }

        .highlight-features ul {
            list-style: none;
            margin-bottom: 30px;
        }

        .highlight-features li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            font-size: 16px;
        }

        .highlight-features i {
            margin-right: 10px;
            color: #212121;
        }

        .product-actions {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .btn-primary {
            display: inline-block;
            background: #212121;
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: #333;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .btn-secondary {
            display: inline-block;
            background: white;
            color: #212121;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 30px;
            border: 1px solid #212121;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: #f5f5f5;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .specs-section {
            background: #f9f9f9;
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            color: #212121;
            margin-bottom: 50px;
        }

        .specs-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .specs-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .specs-card h3 {
            font-size: 22px;
            color: #212121;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .specs-card h3 i {
            margin-right: 10px;
            color: #212121;
        }

        .specs-card ul {
            list-style: none;
        }

        .specs-card li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }

        .specs-card li:before {
            content: "•";
            color: #212121;
            position: absolute;
            left: 10px;
            font-size: 20px;
        }

        .features-section {
            padding: 60px 0;
        }

        .features-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .feature-icon {
            font-size: 40px;
            color: #212121;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 20px;
            color: #212121;
            margin-bottom: 15px;
        }

        .feature-card p {
            color: #666;
            font-size: 15px;
            line-height: 1.6;
        }

        .gallery-section {
            background: #f9f9f9;
            padding: 60px 0;
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .gallery-item {
            height: 250px;
            overflow: hidden;
            border-radius: 8px;
            position: relative;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .cta-section {
            /* background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('img/2bg.png'); */
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8));
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .cta-container h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }

        .cta-container p {
            font-size: 18px;
            margin-bottom: 30px;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .features-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .product-container {
                flex-direction: column;
                padding: 0 15px;
            }
            
            .specs-table {
                display: block;
                overflow-x: auto;
            }

            .product-gallery {
                padding-right: 0;
                margin-bottom: 40px;
            }

            .product-details {
                padding-left: 0;
            }

            .specs-container {
                grid-template-columns: 1fr;
            }

            .features-container {
                grid-template-columns: 1fr;
            }

            .gallery-container {
                grid-template-columns: 1fr;
            }

            .product-actions {
                flex-direction: column;
            }

            .btn-primary, .btn-secondary {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .product-hero h1 {
                font-size: 32px;
            }

            .product-hero p {
                font-size: 16px;
            }

            .section-title {
                font-size: 28px;
            }

            .main-image {
                height: 300px;
            }
        }
        

        


.product-gallery {
  max-width: 500px;
  margin: auto;
}

.main-image {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 10px;
}

.thumbnail-container {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.thumbnail {
  width: 80px;
  height: auto;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: opacity 0.3s, border 0.3s;
}

.thumbnail.active, .thumbnail:hover {
  opacity: 1;
  border: 2px solid #007BFF;
}
