/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 26 2025 | 19:15:45 */
        .carousel-container {
            max-width: 1300px;
            width: 100%;
            position: relative;
        }

        .carousel-wrapper {
            overflow: hidden;
            border-radius: 12px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide {
            min-width: 33.333%;
            padding: 10px;
            display: flex;
            justify-content: center;
        }

        .product-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            width: 100%;
            max-width: 360px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-image {
            width: 100%;
            height: 280px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
         
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .product-info {
            padding: 20px 10px;
			background: #0057B8;
        }

        .product-title {
            font-size: 20px;
            font-weight: 600;
			color: white;
            margin-bottom: 8px;
			margin-left: 8px;
        }

        .product-count {
            color: #7f8c8d;
            font-size: 14px;
        }

        

        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-top: 30px;
        }

        .carousel-btn {
            background: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            color: #667eea;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .carousel-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        .carousel-btn:active {
            transform: scale(0.95);
        }

        .carousel-indicators {
            display: flex;
            gap: 10px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: white;
            width: 30px;
            border-radius: 6px;
            background: rgba(0, 0, 0, 0.4);

        }

        @media (max-width: 1024px) {
            .carousel-slide {
                min-width: 50%;
            }
        }

        @media (max-width: 640px) {
            .carousel-slide {
                min-width: 100%;
            }
        }