        .listing-carousel-container {
            margin: 0 0 40px;
            overflow: hidden;
            position: relative;
        }
        
        .listing-carousel-wrapper {
            overflow: hidden;
            padding: 10px 0;
            margin: 0;
        }
        
        .listing-carousel {
            display: flex;
            transition: transform 0.5s ease;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        
        .listing-carousel::-webkit-scrollbar {
            display: none;
        }
        
        .listing-carousel-item {
            flex: 0 0 calc(25% - 20px);
            margin: 0 10px;
            opacity: 1;
            transition: opacity 0.3s ease;
        }
        
        .carousel-nav {
            position: absolute;
            top: 40%;
            transform: translateY(-50%);
            background: #2688FF;
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            opacity: 0;
        }
        
        .listing-carousel-container:hover .carousel-nav {
            opacity: 1;
        }
        
        .carousel-nav:hover {
            background: #0e6a8a;
        }
        
        .carousel-prev {
            left: 10px;
        }
        
        .carousel-next {
            right: 10px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .listing-carousel-item {
                flex: 0 0 calc(33.333% - 20px);
            }
        }
        
        @media (max-width: 768px) {
            .listing-carousel-item {
                flex: 0 0 calc(50% - 20px);
            }
        }
        
        @media (max-width: 576px) {
            .listing-carousel-item {
                flex: 0 0 calc(100% - 20px);
            }
        }

    