.suzen-home-slider-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            margin-bottom: 60px;
        }

        .slider-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .popular-badge {
            background: #e5e7eb;
            color: #6b7280;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .slider-title {
            font-size: 48px;
            font-weight: 700;
            color: #ffffff;
            margin-top: 10px;
            -webkit-text-stroke: 2px #b3de4f;
            text-stroke: 1px #b3de4f;
            text-shadow: 1px 1px 2px rgb(255, 255, 255);
        }

        .slider-controls {
            display: flex;
            gap: 12px;
        }

        .slider-arrow {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            border: 2px solid #e5e7eb;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 18px;
            color: #6b7280;
            position: static; /* Override Swiper's absolute positioning */
            margin: 0; /* Reset Swiper margins */
            transform: none; /* Reset Swiper transforms */
            top: auto; /* Reset Swiper positioning */
            left: auto;
            right: auto;
        }

        .slider-arrow:hover {
            border-color: #3b82f6;
            color: #3b82f6;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .slider-arrow.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }

        .suzen-home-slider {
            position: relative;
            overflow: hidden;
            width: 100%;
            padding: 5px 0;
        }

        .suzen-home-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            gap: 10px;
            padding: 5px 0;
            will-change: transform;
        }
        
        /* Swiper specific overrides to maintain original design */
        .swiper-wrapper {
            display: flex;
            transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
            gap: 10px;
            padding: 5px 0;
        }
        
        .swiper-slide {
            height: auto; /* Let the content determine the height */
            width: auto; /* Allow slides to size based on content */
            flex-shrink: 0;
        }
        
        /* Hide Swiper's default navigation arrows */
        .swiper-button-next::after,
        .swiper-button-prev::after {
            display: none;
        }
        
        /* Ensure Swiper container has the same styling as our original slider */
        .swiper {
            position: relative;
            overflow: hidden;
            width: 100%;
            padding: 5px 0;
        }
        
        /* Ensure proper spacing between slides and maintain card width */
        .swiper .swiper-wrapper {
            /* Maintain existing styling */
        }
        
        /* Set width for slides in different screen sizes to match breakpoints */
        @media (min-width: 1024px) {
            .suzen-home-card.swiper-slide {
                width: calc(25% - 15px);
            }
        }
        
        @media (min-width: 768px) and (max-width: 1023px) {
            .suzen-home-card.swiper-slide {
                width: calc(33.333% - 15px);
            }
        }
        
        @media (min-width: 480px) and (max-width: 767px) {
            .suzen-home-card.swiper-slide {
                width: calc(50% - 10px);
            }
        }
        
        @media (max-width: 479px) {
            .suzen-home-card.swiper-slide {
                width: 100%;
            }
        }
        
        /* Original selector preserved */
        .swiper .swiper-wrapper {
            gap: 20px;
        }

        .suzen-home-card {
            flex: 0 0 calc(25% - 15px);
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            position: relative;
            height: 400px;
            display: flex;
            flex-direction: column;
            margin: 0;
            box-sizing: border-box;
            cursor: pointer;
        }

        .suzen-home-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.15);
        }

        .suzen-home-image {
            width: 100%;
            height: 280px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .favorite-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            backdrop-filter: blur(10px);
        }

        .favorite-btn:hover {
            background: white;
            transform: scale(1.1);
        }

        .favorite-btn.active {
            background: #ef4444;
            color: white;
        }

        .suzen-home-info {
            padding: 20px;
            position: relative;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .suzen-home-name {
            font-size: 22px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 5px;
        }

        .suzen-home-location {
            color: #9ca3af;
            font-size: 14px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .suzen-home-price {
            font-size: 28px;
            font-weight: 800;
            color: #1f2937;
        }

        .expand-btn {
            position: absolute;
            bottom: 15px;
            right: 15px;
            width: 35px;
            height: 35px;
            background: rgba(179, 222, 79,0.5);
            border: 1px solid rgba(179, 222, 79,0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #b3de4f;
            font-size: 14px;
            opacity: 0;
            transform: translateY(10px);
        }

        .suzen-home-card:hover .expand-btn {
            opacity: 1;
            transform: translateY(0);
        }

        .expand-btn:hover {
            background: rgba(255,255,255,0.15);
            color: #374151;
            transform: scale(1.05);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .suzen-home-card {
                flex: 0 0 calc(33.333% - 14px);
                width: calc(33.333% - 14px);
            }
        }

        @media (max-width: 768px) {
            .suzen-home-card {
                flex: 0 0 calc(50% - 10px);
                width: calc(50% - 10px);
            }
            
            .slider-title {
                font-size: 36px;
            }
            
            .slider-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            /* Show expand button normally on tablets and mobile */
            .expand-btn {
                opacity: 1;
                transform: translateY(0);
            }
            
            .suzen-home-track {
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .suzen-home-card {
                flex: 0 0 calc(100% - 0px);
                width: 100%;
            }
            
            .suzen-home-track {
                gap: 15px;
            }

            /* Show expand button normally on mobile */
            .expand-btn {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Category-specific styling */

        .luxury-category .slider-arrow:hover {
            background: #e5e7eb;
            border: 2px solid #b3de4f;
            padding: 5px 10px;
            color: #b3de4f;
            text-align: center;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .premium-category .slider-arrow:hover {
            border-color: #b3de4f;
            color: #b3de4f;
        }

        .budget-category .slider-arrow:hover {
            border-color: #b3de4f;
            color: #b3de4f;
        }

        .family-category .slider-arrow:hover {
            border-color: #b3de4f;
            color: #b3de4f;
        }


        .business-category .slider-arrow:hover {
            border-color: #b3de4f;
            color: #b3de4f;
        }


        .vacation-category .slider-arrow:hover {
            border-color: #b3de4f;
            color: #b3de4f;
        }

  