
        /* Main Content */
        .main-content {
            padding: 60px 16px;
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .page-title {
            font-size: 38px;
            font-family: 'Geist', sans-serif;
            font-weight: 600;
            color: #113554;
            margin-left: 6px;
            margin: 10px 0px;
        }

        .product-section {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .product-main {
            display: flex;
            flex-direction: column;
            gap: 40px;
            align-items: center;
        }

        .product-images {
            width: 100%;
            max-width: 600px;
            height: auto ;
            border-radius: 38px;
            object-fit: cover;
        }

        .product-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 100%;
        }

        .product-title {
            font-size: 32px;
            font-family: 'Geist', sans-serif;
            font-weight: 600;
            color: #113554;
            line-height: 1.3;
        }

        .chip-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .chip {
            padding: 7px 24px;
            width: fit-content;
            border-radius: 26px;
            font-size: 16px;
            font-family: 'Geist', sans-serif;
            font-weight: 400;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .chip.active {
            background-color: #113554;
            color: #fdfeff;
        }

        .chip.inactive {
            background-color: #fdfeff;
            color: #113554;
        }

        .chip:hover {
            background-color: #113554;
            color: #fdfeff;
        }

        .product-description {
            width: 100%;
            
            font-size: 14px;
            line-break: anywhere;
            text-wrap: wrap;
            font-family: 'Geist', sans-serif;
            /* font-weight: 400; */
            line-height: 1.2;
            color: #325573;
            margin-top: 0.5rem;
        }

        .features-title, .packaging-title {
            font-size: 20px;
            font-family: 'Geist', sans-serif;
            font-weight: 600;
            color: #113554;
            margin-top: 40px;
            margin-left: 4px;
        }

        .features-list, .packaging-list {
            font-size: 16px;
            font-family: 'Geist', sans-serif;
            font-weight: 400;
            line-height: 1.4;
            color: #325573;
            margin-top: 20px;
            margin-left: 4px;
            white-space: pre-line;
        }

        .quote-btn {
            background-color: #e44a1b;
            color: #fdfeff;
            width: fit-content;
            padding: 18px 24px ;
            border-radius: 32px;
            text-decoration: none;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 48px;
            margin-left: 4px;
            transition: all 0.3s ease;
        }

        .quote-btn:hover {
            background-color: #c73e17;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(228, 74, 27, 0.3);
        }

        .product-gallery {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            padding: 20px 0;
        }

        .gallery-image {
            width: 150px;
            height: 150px;
            border-radius: 20px;
            object-fit: cover;
            flex-shrink: 0;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .gallery-image:hover {
            transform: scale(1.05);
        }




        .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}


.product-grid:active {
    cursor: grabbing;
}

.product-grid::-webkit-scrollbar {
    display: none; /* WebKit */
}

.product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    flex: 0 0 280px; /* Fixed width for slider */
    min-width: 280px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f1f5f9;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-name {
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a5f;
    text-align: center;
}

        /* Assistance Section */
        .assistance-section {
            background-color: #325573;
            border-radius: 30px;
            padding: 30px 20px;
            margin: 178px 0;
            background-image: url('../assets/images/img_close_36px.png');
            background-size: cover;
            background-position: center;
        }

        .assistance-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 64px;
            text-align: center;
        }

        .assistance-image {
            width: 100%;
            max-width: 800px;
            height: 200px;
            border-radius: 20px;
            object-fit: cover;
        }

        .assistance-title {
            font-size: 32px;
            font-family: 'Geist', sans-serif;
            font-weight: 600;
            color: #fdfeff;
            line-height: 1.3;
        }

        .whatsapp-btn {
            background-color: #e44a1b;
            color: #fdfeff;
            padding: 18px 24px ;
            border-radius: 32px;
            text-decoration: none;
            font-size: 14px;
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .whatsapp-btn:hover {
            background-color: #c73e17;
            transform: translateY(-2px);
        }

    

        /* Responsive Design */
        @media (min-width: 640px) {
            /* .header {
                padding: 12px 32px;
            } */

            .main-content {
                padding: 60px 32px;
            }

            .page-title {
                font-size: 60px;
            }

            .product-title {
                font-size: 40px;
            }

            .assistance-title {
                font-size: 40px;
            }

            /* .footer-title {
                font-size: 36px;
            } */

            .gallery-image {
                width: 180px;
                height: 180px;
            }
        }
         @media (max-width: 768px) {
                 .cta-title {
                padding: 0 20px;
            }
           }

        @media (min-width: 768px) {
            .hamburger {
                display: none;
            }

            .nav-menu {
                display: flex;
            }

            .product-main {
                flex-direction: row;
                align-items: flex-start;
                justify-content: space-evenly;
                gap: 22px;
            }

            .product-images {
                width: 45%;
                max-width: none;
            }

            .product-info {
                width: 40%;
            }

            .product-title {
                font-size: 50px;
            }

            .chip {
                font-size: 24px;
            }

            /* .product-description {
                font-size: 24px;
            } */

            .features-title, .packaging-title {
                font-size: 30px;
            }

            .features-list, .packaging-list {
                font-size: 24px;
            }

            .assistance-image {
                height: 330px;
            }

            .assistance-title {
                font-size: 50px;
            }

            /* .footer-title {
                font-size: 50px;
            } */

            /* .footer-links {
                grid-template-columns: repeat(2, 1fr);
                gap: 60px;
            } */

            /* .footer-bottom {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            } */

            /* .footer-copyright {
                font-size: 24px;
            } */
        }

        @media (min-width: 1024px) {
            /* .header {
                padding: 12px 104px;
            } */

            .main-content {
                padding: 60px 24px;
            }

            .page-title {
                font-size: 90px;
            }

            /* .footer-links {
                grid-template-columns: repeat(4, 1fr);
            } */

            .gallery-image {
                width: 192px;
                height: 210px;
            }
        }

        @media (min-width: 1280px) {
            .container {
                max-width: 1440px;
            }
        }
    