/* Carousel Wrapper */
.tours-carousel-wrapper {
    position: relative;
    /*display: flex;*/
    align-items: center;
    gap: 20px;
}

/* Carousel Container */
.tours-carousel {
    flex: 1;
    position: relative;
}

.tours-carousel-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-location svg {
    fill: #1C8EB8;
}
.tour-meta-left svg {
    fill: #1C8EB8;
}

/* Carousel Card */
.tour-carousel-card {
    flex: 0 0 calc(33.333% - 27px);
    box-shadow: rgba(0, 0, 0, 0.08) 0px 8px 32px;
    background: rgb(255, 255, 255);
    border-radius: 16px;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-carousel-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.tour-carousel-card .tour-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.tour-carousel-card .featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6200, #ff8c00);
    color: #fff;
    padding: 8px 14px;
    border-radius: 25px;
    font-size: 0.85em;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(255, 98, 0, 0.3);
}

.tour-carousel-card .tour-content {
    padding: 30px;
}

.tour-carousel-card .tour-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.tour-carousel-card .stars {
    color: #ffc107;
    font-size: 1.4em;
}

.tour-carousel-card .rating-text {
    font-size: 0.9em;
    color: #7f8c8d;
}

.tour-carousel-card .tour-title {
    font-size: 22px;
    margin: 0 0 18px 0;
    color: #2c3e50;
    line-height: 1.3;
    font-weight: 600;
}

.tour-carousel-card .tour-location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #7f8c8d;
}

.tour-carousel-card .tour-location .icon {
    width: 20px;
    height: 20px;
    fill: #1C8EB8;
}

.tour-carousel-card .tour-price {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px;
}

.tour-carousel-card svg.tour-info-icon {
    height: 20px;
    fill: #1C8EB8;
}

.tour-carousel-card .tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-carousel-card .tour-meta-left {
    display: flex;
    gap: 6px;
    color: #7f8c8d;
    font-size: 0.95em;
}

.tour-carousel-card .explore-btn {
    background: #1C8EB8;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.tour-carousel-card .explore-btn:hover {
    color: #fff !important;
    background: #156d8f;
}

/* Navigation Buttons */
.carousel-nav {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background: var(--e-global-color-primary);
    display: flex
;
    align-items: center;
    padding: 0;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s 
ease;
    flex-shrink: 0;
    z-index: 10;
    position: absolute;
    top: 38%;
}

button.carousel-nav.carousel-next{
    right: 0;
}

.carousel-nav svg {
    width: 24px;
    height: 24px;
    color: #2c3e50;
}

.carousel-nav:hover:not(:disabled) {
    background: #1C8EB8;
    border-color: #1C8EB8;
}

.carousel-nav:hover:not(:disabled) svg {
    color: #fff;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-nav:focus {
    outline: 2px solid #1C8EB8;
    outline-offset: 2px;
}

/* Navigation Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: #94a3b8;
}

.carousel-dot.active {
    background: #1C8EB8;
    width: 32px;
    border-radius: 6px;
}

.carousel-dot:focus {
    outline: 2px solid #1C8EB8;
    outline-offset: 2px;
}

/* No Tours Message */
.no-tours {
    text-align: center;
    padding: 60px;
    color: #7f8c8d;
    font-size: 1.2em;
    width: 100%;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .tour-carousel-card {
        flex: 0 0 calc(50% - 20px);
    }
    
    .tours-carousel-track {
        gap: 30px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .tours-carousel-wrapper {
        gap: 15px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .tour-carousel-card .tour-content {
        padding: 25px;
    }
    
    .carousel-dots {
        margin-top: 30px;
        gap: 8px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
        .tour-carousel-card {
        flex: 0 0 100%;
    }
    
    .tours-carousel-wrapper {
        gap: 10px;
    }
    
    .carousel-nav {
        width: 36px;
        height: 36px;
    }
    
    .carousel-nav svg {
        width: 18px;
        height: 18px;
    }
    
    .tour-carousel-card .tour-image {
        height: 200px;
    }
    
    .tour-carousel-card .tour-content {
        padding: 20px;
    }
    
    .tour-carousel-card .tour-title {
        font-size: 20px;
    }
}