/* Place Filter Carousel Styles */

.place-filter-wrapper {
    padding: 20px 0;
    max-width: 100%;
}

/* Main Category Tabs */
.place-main-tabs {
    display: flex;
    gap: 1px;
    margin-bottom: 8px;
    border-bottom: 2px solid #ddd;
    flex-wrap: wrap;
    padding-bottom: 8px;
}

.place-main-tab {
    padding: 10px 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: #1D1D1B;
    position: relative;
    transition: color 0.3s;
    text-transform: uppercase;
}
.place-main-tab:hover {
    color: #1D1D1B;
    border: none;
    background: #D6A700;
    border-radius: 4px;
}

.place-main-tab.active {
    color: #1D1D1B;
    border: none;
    background: #D6A700;
    border-radius: 4px;
}

/*.place-main-tab.active:after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #FFD700;
}*/

/* Sub Category Tabs */
.place-sub-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.place-sub-tab {
    padding: 8px 12px;
    background: transparent;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 15px;
    border-radius: 4px;
    transition: all 0.3s;
    color: #1D1D1B;
    text-transform: uppercase;
}

.place-sub-tab:hover {
    background: #D6A70026;
    color: #1D1D1B;
    border: 1px solid;
    border-color: #D6A70080;
}

.place-sub-tab.active {
    background: #D6A70026;
    color: #1D1D1B;
    border: 1px solid;
    border-color: #D6A70080;
}

/*.place-sub-tab.active:hover {
    background: #333;
}*/

/* Carousel Wrapper */
.place-carousel-wrapper {
    position: relative;
    opacity: 1;
    transition: opacity 0.3s;
}

.place-carousel-wrapper.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Place Items */
.place-item {
    padding: 0 10px;
    outline: none;
}

.place-item-inner {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.place-item-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.place-item-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.place-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
}

.place-item-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.place-item-location {
    font-size: 14px;
    opacity: 0.9;
    margin: 0 0 8px 0;
}

.place-item-price {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.place-item-rating {
    font-size: 14px;
}

/* Slick Carousel Customization */
.place-carousel .slick-prev,
.place-carousel .slick-next {
    width: 40px;
    height: 40px;
    z-index: 10;
}

.place-carousel .slick-prev {
    left: -50px;
}

.place-carousel .slick-next {
    right: -50px;
}

.place-carousel .slick-prev:before,
.place-carousel .slick-next:before {
    font-size: 40px;
    opacity: 0.75;
    color: #333;
}

.place-carousel .slick-prev:hover:before,
.place-carousel .slick-next:hover:before {
    opacity: 1;
}

/* No Places Message */
.no-places-message {
    text-align: center;
    padding: 40px;
    color: #999;
    font-size: 16px;
}




.place-custom-slider {
      position: relative;
      width: 100%;
      margin: auto;
      overflow: hidden;
      border-radius: 12px;
    }
    .place-slides-wrapper {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    .place-slide {
      min-width: 100%;
    }
    .place-slide img {
      width: 100%;
      display: block;
      border-radius: 12px;
    }

    .place-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: transparent !important;
    border: 1px solid #ffffffd1;
    font-size: 26px;
    border-radius: 50%;
    cursor: pointer;
    justify-content: center;
    padding: 0px;
    display: flex;
    /* align-items: center; */
    justify-content: center;
}
    .place-arrow.prev { right: 60px; }

    .place-dots {
      position: absolute;
      bottom: 25px;
      left: 25px;
      display: flex;
      gap: 8px;
    }
    .place-dots span {
      width: 10px;
      height: 10px;
      background: #ffffff70;
      border-radius: 50%;
      cursor: pointer;
    }
    .place-dots .active { background: #fff; }
    .place-custom-slider {
    position: relative;
    overflow: hidden;
}

.place-dots {
    white-space: nowrap;
    overflow: hidden;
    max-width: 85%;
}




/* Responsive Styles */
@media (max-width: 1200px) {
    .place-carousel .slick-prev {
        left: -30px;
    }
    
    .place-carousel .slick-next {
        right: -30px;
    }
}

@media (max-width: 768px) {
    .place-main-tab {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .place-sub-tab {
        padding: 6px 16px;
        font-size: 13px;
    }
    
    .place-item-image {
        height: 250px;
    }
    
    .place-carousel .slick-prev,
    .place-carousel .slick-next {
        width: 30px;
        height: 30px;
    }
    
    .place-carousel .slick-prev {
        left: -20px;
    }
    
    .place-carousel .slick-next {
        right: -20px;
    }
    
    .place-carousel .slick-prev:before,
    .place-carousel .slick-next:before {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .place-filter-wrapper {
        padding: 10px 0;
    }
    
    .place-main-tabs,
    .place-sub-tabs {
        gap: 5px;
    }
    
    .place-item-image {
        height: 200px;
    }
    
    .place-item-overlay {
        padding: 15px;
    }
    
    .place-item-title {
        font-size: 16px;
    }
    
    .place-carousel .slick-prev,
    .place-carousel .slick-next {
        display: none !important;
    }
}



/*new css*/
.place_tab_slider {
    width: 100% !important;
    height: auto !important;
}
.place_tab_slider_contant a {
    font-weight: 400;
    text-transform: uppercase;
    color: #1D1D1B;
    text-decoration: none !important;
}
.place_tab_slider_contant a h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 15px 0px 0px;
    color: #1D1D1B;
}
.place_tab_slider_contant .place-cats {
    margin: 0px;
    padding-bottom: 5px;
}
.place_tab_slider_contant .place-cats span.tag {
    font-weight: 400;
    font-size: 13px;
    color: #4F4F4A;
}
.place_tab_slider_contant h5.Sarting_text {
    font-weight: 400;
    font-size: 13px;
    color: #4F4F4A;
    margin: 2px 0px 0px;
}
.place_tab_slider_contant p {
    font-weight: 400;
    font-size: 16px;
    color: #1D1D1B;
    margin: 0px;
}
.place_tab_slider_contant h4.reviews_text {
    font-weight: 400;
    font-size: 14px;
    color: #1D1D1B;
    margin: 6px 0px 0px;
}
.place_tab_slider_contant .reviews_text span {
    font-weight: 400;
    font-size: 12px;
    color: #4F4F4A;
    padding-left: 5px;
}
.place_tab_slider .place-arrow {
    right: 20px;
    width: 32px;
    height: 32px;
    font-size: 27px;
    line-height: 24px;
}
.place_tab_slider .place-arrow.prev {
    right: 60px;
}