.products {
            padding: 60px 20px;
            background-color: #f5f5f5;
        }

        .products-container {
            max-width: 1250px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 42px;
            font-weight: 700;
            text-transform: uppercase;
            color: #333;
            letter-spacing: 1px;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .product-card {
            background: white;
            border-radius: 2px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            /* cursor: pointer; */
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }

        .product-image {
            width: 100%;
            height: 240px;
            overflow: hidden;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.15);
        }

        .product-title {
            padding: 10px;
            text-align: center;
            background: white;
        }

        .product-title h3 {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #333;
            padding-top: 5px;
        }
        .product-card:hover .product-title h3 {
            color: #00DA6D;
        }
        /* Tablet View */
        @media (max-width: 1024px) {
            .products {
                padding: 50px 20px;
            }

            .section-title h2 {
                font-size: 36px;
            }

            .products-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }

            .product-image {
                height: 200px;
            }

            .product-title h3 {
                font-size: 14px;
            }
        }

        /* Mobile View */
        @media (max-width: 768px) {
            .products {
                padding: 40px 15px;
            }

            .section-title {
                margin-bottom: 30px;
            }

            .section-title h2 {
                font-size: 28px;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .product-image {
                height: 160px;
            }

            .product-title {
                padding: 12px;
            }

            .product-title h3 {
                font-size: 12px;
                letter-spacing: 0.3px;
            }
        }

        /* Small Mobile View */
        @media (max-width: 480px) {
            .products {
                padding: 30px 10px;
            }

            .section-title h2 {
                font-size: 24px;
            }

            .product-image {
                height: 140px;
            }

            .product-title h3 {
                font-size: 11px;
            }

            .product-title {
                padding: 10px;
            }
        }