.products {
            width: 100%;
            max-width: 1200px;
        }

        .products-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .products-header h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .products-header p {
            font-size: 1.1rem;
            color: #7f8c8d;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 20px;
            background: white;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            padding: 10px 20px;
        }

        .carousel-wrapper {
            position: relative;
            width: 100%;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            animation: slideIn 0.8s ease-in-out;
        }

        .carousel-slide.active {
            opacity: 1;
            animation: slideInActive 0.8s ease-in-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInActive {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .product-image {
            width: 90%;
            max-width: 600px;
            height: 250px;
            margin-bottom: 20px;
        }

        .product-info {
            text-align: center;
        }

        .product-badge {
            display: inline-block;
            background: #2563eb;
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .product-title {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .product-description {
            font-size: 1rem;
            color: #7f8c8d;
            max-width: 500px;
            margin-bottom: 20px;
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
        }

        .carousel-btn {
            width: 50px;
            height: 50px;
            border: none;
            background: #2563eb;
            color: white;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-btn:hover {
            background: #1d4ed8;
            transform: scale(1.1);
        }

        .carousel-btn:active {
            transform: scale(0.95);
        }

        .carousel-indicators {
            display: flex;
            gap: 8px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #d1d5db;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: #2563eb;
            width: 30px;
            border-radius: 6px;
        }

        @media (max-width: 768px) {
            .products-header h1 {
                font-size: 1.8rem;
            }

            .carousel-wrapper {
                height: 320px;
            }

            .product-image {
                height: 180px;
            }

            .carousel-container {
                padding: 30px 15px;
            }

            .product-title {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 480px) {
            .products-header h1 {
                font-size: 1.5rem;
            }

            .carousel-wrapper {
                height: 115px;
            }

            .product-image {
                height: 150px;
            }

            .carousel-container {
                padding: 20px 10px;
            }

            .product-title {
                font-size: 1.2rem;
            }

            .product-description {
                font-size: 0.9rem;
            }

            .carousel-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            #kmm {
                width: inherit;
            }
        }