/**
 * DPX Tours Elementor Widget Styles
 */

/* ==========================================================================
   Elementor Widget Container
   ========================================================================== */

.elementor-widget-dpx_tour_grid,
.elementor-widget-dpx_tour_carousel,
.elementor-widget-dpx_tour_hero,
.elementor-widget-dpx_tour_highlights,
.elementor-widget-dpx_tour_info,
.elementor-widget-dpx_tour_pricing,
.elementor-widget-dpx_tour_availability,
.elementor-widget-dpx_room_showcase,
.elementor-widget-dpx_date_pax_selector,
.elementor-widget-dpx_pricing_calculator,
.elementor-widget-dpx_room_selector,
.elementor-widget-dpx_itinerary_accordion,
.elementor-widget-dpx_tour_gallery,
.elementor-widget-dpx_tour_reviews,
.elementor-widget-dpx_booking_form,
.elementor-widget-dpx_sidebar_booking,
.elementor-widget-dpx_cta_banner,
.elementor-widget-dpx_tour_archive,
.elementor-widget-dpx_tour_filter,
.elementor-widget-dpx_tour_category_filter,
.elementor-widget-dpx_map_route,
.elementor-widget-dpx_yacht_showcase,
.elementor-widget-dpx_golf_challenge,
.elementor-widget-dpx_stories_feed,
.elementor-widget-tour-breadcrumbs,
.elementor-widget-tour_scroll_animation {
    position: relative;
}

/* ==========================================================================
   Tour Grid Widget
   ========================================================================== */

.elementor-widget-dpx_tour_grid .dpx-tour-grid {
    display: grid;
    gap: 2rem;
}

.elementor-widget-dpx_tour_grid .dpx-tour-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* ==========================================================================
   Tour Day by Day Widget Styles
   ========================================================================== */
/* Tour Day by Day Widget Styles - Timeline Design Only */
.tour-day-by-day-widget {
    position: relative;
    overflow: hidden;
}

.tour-day-by-day-title {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 30px 0;
    text-align: left;
}

/* Timeline Container */
.tour-day-by-day-timeline {
    position: relative;
    padding-left: 60px;
    max-height: 400px;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-day-by-day-timeline.expanded {
    max-height: none !important;
    overflow: visible !important;
}

/* Timeline Items Container */
.tour-day-by-day-items {
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-day-by-day-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 20px;
    bottom: 40px;
    width: 2px;
    background-color: #e9ecef;
    z-index: 1;
    border: 1px solid #111!important;
}

.tour-day-by-day-items {
    position: relative;
    z-index: 2;
}

.tour-day-by-day-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateX(0);
}

.tour-day-by-day-item:last-child {
    margin-bottom: 0 !important;
}


/* Timeline Number */
.tour-day-by-day-number {
    position: absolute;
    left: -50px;
    top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 2px solid #0073aa;
    border-radius: 50%;
    font-weight: bold;
    color: #0073aa;
    font-size: 14px;
    z-index: 3;
    transition: all 0.3s ease;
}


/* Content */
.tour-day-by-day-content {
    flex: 1;
    padding-left: 0;
}

/* Day Title */
.tour-day-by-day-title-text {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

/* Day Content */
.tour-day-by-day-content-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    font-weight: 400;
}

/* Combined Day Title and Content Display */
.tour-day-by-day-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tour-day-by-day-title-text::after {
    content: ':';
    margin-left: 4px;
}

/* Overlay */
.tour-day-by-day-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 4;
}

.tour-day-by-day-overlay.hidden {
    opacity: 0;
}

/* Show More Button */
.tour-day-by-day-show-more-btn {
    position: absolute;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Button Position Classes - Collapsed State */
.tour-day-by-day-show-more-btn.bottom-right {
    bottom: 20px;
    right: 20px;
}

.tour-day-by-day-show-more-btn.bottom-center {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.tour-day-by-day-show-more-btn.bottom-left {
    bottom: 20px;
    left: 20px;
}

.tour-day-by-day-show-more-btn.center-right {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.tour-day-by-day-show-more-btn.center-left {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

/* Button when inside timeline container (collapsed state) */
.tour-day-by-day-timeline .tour-day-by-day-show-more-btn {
    position: absolute;
    z-index: 5;
}

/* Button Position Classes - Expanded State */
.tour-day-by-day-show-more-btn.expanded {
    position: relative !important;
    bottom: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin-top: 30px !important;
    margin-bottom: 20px !important;
    display: block !important;
    width: auto !important;
    max-width: none !important;
    text-align: center !important;
}

.tour-day-by-day-show-more-btn.expanded.bottom-center {
    left: 50%;
    transform: translateX(-50%) !important;
}

.tour-day-by-day-show-more-btn.expanded.bottom-right {
    left: auto;
    right: 0;
    transform: none !important;
}

.tour-day-by-day-show-more-btn.expanded.bottom-left {
    left: 0;
    right: auto;
    transform: none !important;
}

/* Button when moved outside timeline container */
.tour-day-by-day-widget > .tour-day-by-day-show-more-btn {
    position: relative !important;
    margin-top: 30px !important;
    margin-bottom: 20px !important;
    display: block !important;
    width: auto !important;
    max-width: none !important;
    text-align: center !important;
    bottom: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
}

/* Force button positioning when outside timeline */
.tour-day-by-day-widget > .tour-day-by-day-show-more-btn.bottom-center {
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.tour-day-by-day-widget > .tour-day-by-day-show-more-btn.bottom-right {
    left: auto !important;
    right: 0 !important;
    transform: none !important;
}

.tour-day-by-day-widget > .tour-day-by-day-show-more-btn.bottom-left {
    left: 0 !important;
    right: auto !important;
    transform: none !important;
}

.tour-day-by-day-show-more-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.tour-day-by-day-show-more-btn.bottom-center:hover {
    transform: translateX(-50%) translateY(-2px);
}

.tour-day-by-day-show-more-btn.expanded.bottom-center:hover {
    transform: translateX(-50%) translateY(-2px) !important;
}

.tour-day-by-day-show-more-btn.center-right:hover {
    transform: translateY(-50%) translateY(-2px);
}

.tour-day-by-day-show-more-btn.center-left:hover {
    transform: translateY(-50%) translateY(-2px);
}

.tour-day-by-day-show-more-btn.expanded:hover {
    transform: translateY(-2px) !important;
}

.tour-day-by-day-show-more-btn:active {
    transform: translateY(0);
}

/* Horizontal Timeline Style */
.timeline-style-horizontal .tour-day-by-day-timeline {
    padding-left: 0;
    padding-top: 60px;
}

.timeline-style-horizontal .tour-day-by-day-timeline::before {
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: auto;
    width: auto;
    height: 2px;
}

.timeline-style-horizontal .tour-day-by-day-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.timeline-style-horizontal .tour-day-by-day-item {
    flex: 1;
    min-width: 250px;
    margin-bottom: 0;
}

.timeline-style-horizontal .tour-day-by-day-number {
    position: absolute;
    left: 50%;
    top: -50px;
    transform: translateX(-50%);
}

.timeline-style-horizontal .tour-day-by-day-item:hover .tour-day-by-day-number {
    transform: translateX(-50%) scale(1.1);
}

/* Responsive Design for Tour Day by Day */
@media (max-width: 768px) {
    .tour-day-by-day-timeline {
        padding-left: 50px;
    }
    
    .tour-day-by-day-number {
        left: -40px;
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
  

    .tour-day-by-day-title {
        font-size: 20px;
    }
    
    .tour-day-by-day-item {
        padding: 15px;
        gap: 15px;
    }
    
    .tour-day-by-day-text {
        font-size: 14px;
    }
    
    .tour-day-by-day-show-more-btn {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 13px;
    }
    
    /* Horizontal timeline mobile */
    .timeline-style-horizontal .tour-day-by-day-items {
        flex-direction: column;
    }
    
    .timeline-style-horizontal .tour-day-by-day-item {
        min-width: auto;
    }
    
    .timeline-style-horizontal .tour-day-by-day-number {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 10px;
    }
    
    .timeline-style-horizontal .tour-day-by-day-item:hover .tour-day-by-day-number {
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .tour-day-by-day-timeline {
        padding-left: 40px;
    }
    
.tour-day-by-day-show-more-btn.bottom-center {
    bottom: 20px;
    left: 20%;
    transform: translateX(-20%);
}

    .tour-day-by-day-number {
        left: -30px;
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
    
    .tour-day-by-day-title {
        font-size: 18px;
    }
    
    .tour-day-by-day-item {
        padding: 12px;
        gap: 12px;
    }
    
    .tour-day-by-day-text {
        font-size: 13px;
    }
    
    .tour-day-by-day-show-more-btn {
        bottom: 10px;
        right: 10px;
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ==========================================================================
   Tour Include/Exclude Widget Styles
   ========================================================================== */
.tour-include-exclude-widget {
    position: relative;
}

.tour-include-section,
.tour-exclude-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tour-include-title,
.tour-exclude-title {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 20px 0;
}

.tour-include-exclude-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.tour-include-item,
.tour-exclude-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.tour-include-icon {
    color: #28a745;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.tour-exclude-icon {
    color: #dc3545;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.tour-include-text,
.tour-exclude-text {
    flex: 1;
}

.tour-exclude-section {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.tour-exclude-section.tour-exclude-visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tour-exclude-section.tour-exclude-hidden {
    display: none;
}

.tour-toggle-button {
    background: transparent;
    border: none;
    color: #0073aa;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: underline;
}

.tour-toggle-button:hover {
    color: #005a87;
    background-color: rgba(0, 115, 170, 0.05);
}

/* Responsive Design for Tour Include/Exclude */
@media (max-width: 768px) {
    .tour-include-exclude-items {
        grid-template-columns: 1fr;
    }
    
    .tour-include-title,
    .tour-exclude-title {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .tour-include-title,
    .tour-exclude-title {
        font-size: 18px;
    }
    
    .tour-include-item,
    .tour-exclude-item {
        font-size: 13px;
    }
}

/* ==========================================================================
   Tour Filter Widget Styles
   ========================================================================== */
.tour-filter-widget {
    margin-bottom: 30px;
}

/* Guest Selector Styles */
.tour-guest-selector {
    position: relative;
}

.guest-selector-display {
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: #ffffff;
    font-size: 14px;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 45px;
}

.guest-selector-display:hover {
    border-color: #adb5bd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.guest-selector-display:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.guest-display-text {
    flex: 1;
}

.guest-display-icon {
    font-size: 12px;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.guest-selector-modal {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 5px;
    min-width: 280px;
}

.guest-selector-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.guest-selector-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
}

.guest-selector-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.guest-selector-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.guest-selector-close:hover {
    background: #f8f9fa;
    color: #495057;
}

.guest-selector-content {
    padding: 20px;
}

.guest-type-selector {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.guest-type-label-container{
    display: block;
}
.guest-type-selector:last-child {
    margin-bottom: 0;
}

.guest-type-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.guest-type-subtitle {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 12px;
}

.guest-counter {
    display: flex;
    align-items: center;
    gap: 15px;
}

.guest-counter-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #dee2e6;
    background: #ffffff;
    color: #495057;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 36px;
}

.guest-counter-btn:hover {
    border-color: #007cba;
    color: #007cba;
    background: #f8f9fa;
}

.guest-counter-btn:active {
    transform: scale(0.95);
}

.guest-counter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #e9ecef;
    color: #adb5bd;
}

.guest-counter-btn.minus:disabled {
    opacity: 0.3;
}

.guest-counter-btn.plus:disabled {
    opacity: 0.3;
}

/* Active state for guest selector */
.guest-selector-display.active {
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.guest-selector-display.active .guest-display-icon {
    transform: rotate(180deg);
}

.guest-counter-value {
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    min-width: 30px;
    text-align: center;
}

.guest-selector-footer {
    padding: 15px 20px;
    border-top: 1px solid #e9ecef;
}

.guest-selector-confirm {
    width: 100%;
    padding: 12px 20px;
    background: #111111;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.guest-selector-confirm:active {
    transform: translateY(0);
}

/* Body class for modal open */
body.guest-selector-open {
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .guest-selector-modal {
        position: fixed;
        top: 50%;
        left: 20px;
        right: 20px;
        transform: translateY(-50%) translateY(-10px);
        max-width: none;
        margin-top: 0;
        max-height: 80vh;
        overflow-y: auto;
        border-radius: 12px;
    }
    
    .guest-selector-modal.active {
        transform: translateY(-50%) translateY(0);
    }
    
    .guest-counter {
        justify-content: center;
        padding: 15px 10px;
    }
    
    .guest-counter-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
        border-radius: 8px;
        touch-action: manipulation;
    }
    
    .guest-counter-value {
        font-size: 18px;
        min-width: 44px;
    }
    
    .guest-selector-header {
        padding: 12px 15px;
    }
    
    .guest-selector-header h4 {
        font-size: 15px;
    }
    
    .guest-selector-footer {
        padding: 12px 15px;
    }
    
    .guest-confirm-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Add backdrop for mobile */
    .guest-selector-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .guest-selector-backdrop.active {
        opacity: 1;
        visibility: visible;
    }
}

.tour-filter-container {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* Mobile touch improvements */
    -webkit-overflow-scrolling: touch;
    touch-action: manipulation;
}

.tour-filter-item {
    display: flex;
    flex-direction: column;
    min-width: 150px;
    flex: 1;
}

.tour-filter-label {
    font-size: 12px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-filter-select {
    padding: 12px 40px 12px 15px !important;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: #ffffff;
    font-size: 14px;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative !important;
    appearance: none !important;
    /* Mobile improvements */
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    touch-action: manipulation;
}

.travel-date-select::after {
    content: '▼' !important;
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #111111 !important;
    font-size: 12px !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.tour-filter-select::after {
    content: none !important;
}

/* Sane dropdown styling for travel date select */
.tour-booking-field .input-with-icon {
    position: relative;
}

select.travel-date-select {
    width: 100%;
    max-width: 100%;
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    padding: 10px 36px 10px 12px;
    font-size: 14px;
    line-height: 1.4;
    color: #111111;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
    cursor: pointer;
}

/* If a leading icon exists, add left padding so text doesn't overlap */
.tour-booking-field .input-with-icon .field-icon + select.travel-date-select {
    padding-left: 36px;
}

select.travel-date-select:focus {
    outline: none;
    border-color: #c9c9c9;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* Add dropdown caret inside the input wrapper for consistent look */
.tour-booking-field .input-with-icon::after { content: none !important; }

/*
   Global select normalization (Woodmart conflict fix):
   - Hide native arrows
   - Add consistent SVG caret for all non-multiple selects
*/
select:not([multiple]):not(.select2-hidden-accessible) {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23111111' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 10px 6px;
    padding-right: 36px;
    cursor: pointer;
}

/* Hide IE/Edge legacy arrow */
select::-ms-expand { display: none; }

/* Checkout Login Modal */
.checkout-login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.checkout-login-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.checkout-login-modal-content {
    position: relative;
    max-width: 500px;
    margin: 50px auto;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.checkout-login-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.checkout-login-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.checkout-login-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.checkout-login-modal-close:hover {
    background-color: #e9ecef;
    color: #333;
}

.checkout-login-modal-body {
    padding: 25px;
}

.checkout-login-modal .woocommerce-form-login {
    margin: 0;
}

.checkout-login-modal .form-row {
    margin-bottom: 15px;
}

.checkout-login-modal .form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.checkout-login-modal .form-row input[type="text"],
.checkout-login-modal .form-row input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.checkout-login-modal .woocommerce-form-login__submit {
    width: 100%;
    padding: 12px;
    background-color: #007cba;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.checkout-login-modal .woocommerce-form-login__submit:hover {
    background-color: #005a87;
}

.checkout-login-modal .woocommerce-LostPassword {
    text-align: center;
    margin-top: 15px;
}

.checkout-login-modal .woocommerce-LostPassword a {
    color: #007cba;
    text-decoration: none;
}

.checkout-login-modal .woocommerce-LostPassword a:hover {
    text-decoration: underline;
}

/* Woodmart main menu: unify dropdown caret to match selects */
.wd-nav-main .menu-item-has-children > a.woodmart-nav-link:after{
    content: '' !important;
    display: inline-block;
    width: 10px;
    height: 6px;
    margin-left: 6px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23111111' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px 6px;
    vertical-align: middle;
}

/* Remove any transform/rotate Woodmart might apply on hover/open */
.wd-nav-main .menu-item-has-children.opened > a.woodmart-nav-link:after,
.wd-nav-main .menu-item-has-children.wd-opened > a.woodmart-nav-link:after,
.wd-nav-main .menu-item-has-children:hover > a.woodmart-nav-link:after {
    transform: none !important;
}

.tour-filter-select:hover {
    border-color: #adb5bd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tour-filter-select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.tour-filter-search-btn {
    padding: 12px 24px;
    background: #007cba;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Mobile improvements */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
}

.tour-filter-search-btn:hover {
    background: #005a87;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 124, 186, 0.3);
}

.tour-filter-search-btn:active {
    transform: translateY(0);
}

.tour-filter-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    margin-top: 15px;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007cba;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.tour-filter-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    margin: 20px 0;
}

/* Responsive Design for Tour Filter */
@media (max-width: 768px) {
    .tour-filter-container {
        flex-direction: column;
        align-items: stretch;
        padding: 15px;
        gap: 12px;
    }
    
    .tour-filter-item {
        min-width: auto;
        margin-bottom: 0;
        width: 100%;
    }
    
    .tour-filter-label {
        font-size: 11px;
        margin-bottom: 6px;
    }
    
    .tour-filter-select {
        padding: 14px 12px;
        font-size: 14px;
        min-height: 48px;
    }
    
    .tour-filter-search-btn {
        width: 100%;
        margin-top: 5px;
        padding: 14px 20px;
        font-size: 14px;
        min-height: 48px;
    }
    
    /* Guest selector mobile improvements */
    .guest-selector-display {
        min-height: 48px;
        padding: 14px 15px;
    }
    
    .guest-selector-modal {
        position: fixed;
        top: 50%;
        left: 20px;
        right: 20px;
        transform: translateY(-50%) translateY(-10px);
        max-width: none;
        margin-top: 0;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .guest-selector-modal.active {
        transform: translateY(-50%) translateY(0);
    }
    
    .guest-counter {
        justify-content: center;
        padding: 15px 10px;
    }
    
    .guest-counter-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .guest-counter-value {
        font-size: 18px;
        min-width: 44px;
    }
    
    .guest-selector-header {
        padding: 12px 15px;
    }
    
    .guest-selector-header h4 {
        font-size: 15px;
    }
    
    .guest-selector-footer {
        padding: 12px 15px;
    }
    
    .guest-confirm-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Room selection popup mobile */
    .room-selection-overlay {
        padding: 10px;
    }
    
    .room-selection-modal {
        max-width: 100%;
        max-height: 95vh;
    }
    
    .popup-header {
        padding: 15px 20px;
    }
    
    .popup-header h4 {
        font-size: 16px;
    }
    
    .popup-content {
        padding: 20px;
    }
    
    .room-info {
        padding: 12px;
    }
    
    .room-info p {
        font-size: 13px;
    }

    
    .quantity-controls .qty-btn {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .quantity-controls .qty-display {
        font-size: 22px;
        min-width: 60px;
    }
    
    .popup-footer {
        padding: 15px 20px;
    }
    
    .btn-confirm-rooms {
        padding: 14px 25px;
        font-size: 15px;
    }
    
    /* Room selection modal mobile */
    .room-selection-modal-overlay {
        padding: 10px;
    }
    
    .room-selection-modal {
        max-width: 100%;
        max-height: 85vh;
    }
    
    .room-selection-header {
        padding: 15px 20px;
    }
    
    .room-selection-title {
        font-size: 16px;
    }
    
    .room-selection-content {
        padding: 20px;
    }
    
    .room-item {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .room-image {
        width: 80px;
        height: auto;
        object-fit: contain;
    }
    
    .room-controls {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        gap: 20px;
    }
    
    .room-counter {
        flex: 1;
    }
    
    .room-selection-footer {
        padding: 15px 20px;
    }
    
    .room-selection-confirm {
        padding: 14px 25px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .tour-filter-container {
        padding: 12px;
        gap: 10px;
    }
    
    .tour-filter-select {
        padding: 12px 10px;
        font-size: 13px;
        min-height: 44px;
    }
    
    .tour-filter-search-btn {
        padding: 12px 16px;
        font-size: 13px;
        min-height: 44px;
    }
    
    .tour-filter-label {
        font-size: 10px;
        margin-bottom: 5px;
    }
    
    /* Guest selector small mobile improvements */
    .guest-selector-display {
        min-height: 44px;
        padding: 12px 12px;
        font-size: 13px;
    }
    
    .guest-selector-modal {
        left: 15px;
        right: 15px;
    }
    
    .guest-counter-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .guest-counter-value {
        font-size: 16px;
        min-width: 40px;
    }
}

@media (max-width: 360px) {
    .tour-filter-container {
        padding: 10px;
        gap: 8px;
    }
    
    .tour-filter-select {
        padding: 10px 8px;
        font-size: 12px;
        min-height: 40px;
    }
    
    .tour-filter-search-btn {
        padding: 10px 12px;
        font-size: 12px;
        min-height: 40px;
    }
    
    .tour-filter-label {
        font-size: 9px;
        margin-bottom: 4px;
    }
    
    .guest-selector-display {
        min-height: 40px;
        padding: 10px 10px;
        font-size: 12px;
    }
    
    .guest-selector-modal {
        left: 10px;
        right: 10px;
    }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
    /* Prevent zoom on input focus for iOS */
    .tour-filter-select,
    .guest-selector-display {
        font-size: 16px !important;
    }
    
    /* Improve touch targets */
    .tour-filter-select,
    .tour-filter-search-btn,
    .guest-selector-display {
        min-height: 44px;
    }
    
    /* Better spacing for small screens */
    .tour-filter-container {
        margin: 0 -10px;
        border-radius: 0;
    }
}

/* Landscape mobile optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .tour-filter-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .tour-filter-item {
        flex: 1;
        min-width: 150px;
    }
    
    .tour-filter-search-btn {
        flex: 0 0 auto;
        width: auto;
        min-width: 120px;
    }
    
    .guest-selector-modal {
        max-height: 70vh;
    }
}

/* ==========================================================================
   Tour Archive Widget Styles
   ========================================================================== */

.tour-carousel-container .tour-card {
    flex-shrink: 0;
    margin-right: 20px;
}

.tour-carousel-container .tour-card:last-child {
    margin-right: 0;
}

/* Grid Layout */
.tour-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 30px;
    width: 100%;
}

/* Tour Card Styles */
.tour-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Tour Filter - inputs with left icons */
.tour-filter-container .input-with-icon {
    position: relative;
}

.tour-filter-container .input-with-icon .icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #6b7280;
    pointer-events: none;
    z-index: 2;
}

.tour-filter-container .input-with-icon select.tour-filter-select,
.tour-filter-container .input-with-icon .guest-selector-display {
    padding-left: 40px;
}

.tour-filter-container .guest-selector-display {
    display: flex;
    align-items: center;
    height: 44px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    padding: 10px 14px;
    cursor: pointer;
}


/* Additional specific rule to ensure appearance properties are applied */
.tour-filter-widget .tour-filter-container .tour-filter-item .input-with-icon select.tour-filter-select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    position: relative !important;
    padding-left: 40px !important;
    padding: 0px 0px 0px 40px!important;
}


/* Ultra-specific rule for the exact HTML structure */
.input-with-icon select.tour-filter-select[data-filter="category"] {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    position: relative !important;
}


/* Rule for all tour filter selects with data-filter attributes */
.input-with-icon select.tour-filter-select[data-filter] {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    position: relative !important;
}


/* Tour filter dropdown icon styling */
.tour-filter-dropdown-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #555555;
    font-size: 12px;
    pointer-events: none;
    z-index: 1;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Hover Animation Classes */
.tour-card.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.tour-card.hover-scale:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.tour-card.hover-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.tour-card.hover-none:hover {
    transform: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.tour-card-image-wrapper {
    position: relative;
    overflow: hidden;
}

.tour-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    background-color: #f8f9fa;
}

.tour-card-image img[src*="placeholder"] {
    background-color: #f8f9fa;
    opacity: 0.8;
}

.tour-card-image img[src*="woocommerce-placeholder"] {
    background-color: #f8f9fa;
    opacity: 0.8;
}

/* Image loading states */
.tour-card-image {
    position: relative;
}

.tour-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    z-index: 1;
    opacity: 0.5;
}

.tour-card-image img {
    position: relative;
    z-index: 2;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Image loaded state */
.tour-card-image.loaded::before {
    display: none;
}

/* Image error state */
.tour-card-image.error::before {
    background: #f8d7da;
    animation: none;
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.05);
}

.tour-card.image-zoom-disabled:hover .tour-card-image img {
    transform: none;
}

/* Image Labels */
.tour-card-labels {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.tour-label {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    white-space: nowrap;
}

.tour-label.pre-register {
    background: #111111;
    color: #fff;
}



.tour-label.new {
    background: #ffe185;
    color: #111111;
}

.tour-label.ready-to-start {
    background: #243b73;
    color: #111111;
}

/* Card Content */
.tour-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-card-meta {
    font-size: 12px;
    color: #666666;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.3;
    flex: 1;
    /* Ensure consistent two-line height even for short titles */
    min-height: calc(1.3em * 2);
    max-height: calc(1.3em * 2);
    overflow: hidden;
}

.tour-card-title a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
    /* Multiline ellipsis for long titles */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.tour-card-title a:hover {
    color: #007cba;
}

.tour-card-date {
    font-size: 14px;
    color: #666666;
    margin-bottom: 15px;
    font-weight: 500;
}

.tour-card-date.no-upcoming {
    color: #dc3545;
    font-weight: 600;
}

.tour-card-price {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    margin-top: auto;
    text-align: left;
}

/* Carousel Navigation */
.tour-carousel-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    z-index: 3;
}

/* Item Mirroring for Seamless Loop */
.tour-carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}
.tour-carousel-widget{
    overflow: hidden;
}
/* Smooth transition for mirrored items */
.tour-carousel-widget[data-enable-item-mirror="true"] .tour-carousel-container {
    transition: transform 0.5s ease;
}

.tour-carousel-container .tour-card {
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Smooth transition for mirrored items */
.tour-carousel-widget[data-enable-item-mirror="true"] .tour-carousel-container {
    transition: transform 0.5s ease;
}

/* Arrow Position Variations */
.tour-carousel-arrows.position-outside {
    width: calc(100% + 120px);
    left: -60px;
}

.tour-carousel-arrows.position-inside {
    width: 100%;
    left: 0;

}

.tour-carousel-arrows.position-center {
    width: 100%;
    left: 0;
}

/* Vertical Position Variations */
.tour-carousel-arrows.vertical-top {
    top: 20px;
    transform: none;
}

.tour-carousel-arrows.vertical-center {
    top: 50%;
    transform: translateY(-50%);
}

.tour-carousel-arrows.vertical-bottom {
    top: auto;
    bottom: 20px;
    transform: none;
}

/* Arrow Layout Variations */
.tour-carousel-arrows.together {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.tour-carousel-arrows.together.vertical-top {
    transform: translateX(-50%);
}

.tour-carousel-arrows.together.vertical-bottom {
    transform: translateX(-50%);
}

.tour-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    background: #ffffff;
    color: #333333;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-carousel-arrow:hover {
    background: #007cba;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.tour-carousel-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

/* Together layout arrow positioning */
.tour-carousel-arrows.together .tour-carousel-arrow {
    position: relative;
    top: auto;
    transform: none;
}

.tour-carousel-prev {
    left: -22px;
}

.tour-carousel-next {
    right: -22px;
}

.tour-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 8px;
}

.tour-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.tour-carousel-dot:hover {
    background: #999999;
}

.tour-carousel-dot.active {
    background: #007cba;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

.tour-carousel-dot {
    transition: all 0.3s ease;
}

/* No Posts Message */
.tour-carousel-no-posts {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666666;
}

/* Responsive Design for Tour Carousel */
@media (max-width: 1024px) {
    .tour-carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .tour-remote-nav{
     display: none!important;
    }
    .tour-carousel-prev {
        left: -20px;
    }
    
    .tour-carousel-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .tour-carousel-container .tour-card {
        margin-right: 15px;
    }
    .tour-remote-nav{
        display: none!important;
       }
    .tour-card-content {
        padding: 15px;
    }
    
    .tour-card-title {
        font-size: 16px;
    }
    
    .tour-card-price {
        font-size: 14px;
    }
    
    .tour-carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .tour-carousel-prev {
        left: -18px;
    }
    
    .tour-carousel-next {
        right: -18px;
    }
    
    .tour-carousel-dots {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .tour-carousel-container .tour-card {
        margin-right: 10px;
    }
    
    .tour-card-content {
        padding: 12px;
    }
    
    .tour-card-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .tour-card-meta {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .tour-card-date {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .tour-card-price {
        font-size: 13px;
        text-align: left;
    }
    
    .tour-carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .tour-carousel-prev {
        left: -16px;
    }
    
    .tour-carousel-next {
        right: -16px;
    }
    
    .tour-card-labels {
        top: 10px;
        left: 10px;
    }
}

/* Grid Responsive */
@media (max-width: 768px) {
    .tour-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .tour-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
}

/* Tour Product Grid Styles */
.tour-product {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tour-product-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tour-product-image {
    position: relative;
    overflow: hidden;
}

.tour-product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-product:hover .tour-product-image img {
    transform: scale(1.05);
}

.tour-product-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-product-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.tour-product-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tour-product-title a:hover {
    color: #007cba;
}

.tour-destination,
.tour-duration,
.tour-guests {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.destination-label,
.duration-label,
.guests-label {
    font-weight: 600;
    color: #6c757d;
    margin-right: 8px;
    min-width: 80px;
}

.destination-value,
.duration-value,
.guests-value {
    color: #495057;
}

.tour-price {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-label {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 600;
}

.price-value {
    font-size: 18px;
    font-weight: 700;
    color: #007cba;
}

.tour-actions {
    margin-top: 15px;
}

.view-tour-btn {
    width: 100%;
    padding: 12px 20px;
    background: #007cba;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-tour-btn:hover {
    background: #005a87;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 124, 186, 0.3);
}

.no-tours-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #6c757d;
}

.no-tours-found p {
    font-size: 16px;
    margin: 0;
}

/* WooCommerce Integration */
.woocommerce .products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce .products::before,
.woocommerce .products::after {
    display: none;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Select Styling */
.tour-filter-select option {
    padding: 8px 12px;
    background: #ffffff;
    color: #495057;
}

.tour-filter-select option:hover {
    background: #f8f9fa;
}

/* Focus States */
.tour-filter-select:focus,
.tour-filter-search-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.2);
}

/* Loading State */
.tour-filter-widget.loading .tour-filter-container {
    opacity: 0.6;
    pointer-events: none;
}

.tour-filter-widget.loading .tour-filter-loading {
    display: flex;
}

/* Tour Category Filter Widget Styles */
.tour-category-filter-widget {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.category-filter-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.category-filter-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-filter-subtitle::after {
    content: '';
    font-size: 16px;
    color: #666;
    transition: transform 0.3s ease;
}

.category-filter-container {
    display: flex!important;
    gap: 15px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.category-filter-select {
    flex: 1;
    min-width: 200px;
    padding: 12px 40px 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 14px;
    background: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    color: #333;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
}




/* Responsive Design for Category Filter */
@media (max-width: 768px) {
   
    .category-filter-select {
        min-width: auto;
    }
}

/* Responsive Design for Tour Carousel */
@media (max-width: 1024px) {
    .tour-carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .tour-carousel-prev {
        left: -20px;
    }
    
    .tour-carousel-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .tour-carousel-container .tour-card {
        margin-right: 15px;
    }
    
    .tour-card-content {
        padding: 15px;
    }
    
    .tour-card-title {
        font-size: 16px;
    }
    
    .tour-card-price {
        font-size: 14px;
        text-align: left;
    }
    
    .tour-carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .tour-carousel-prev {
        left: -18px;
    }
    
    .tour-carousel-next {
        right: -18px;
    }
    
    .tour-carousel-dots {
        margin-top: 15px;
    }
    
    /* Grid Responsive */
    .tour-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .tour-carousel-container .tour-card {
        margin-right: 10px;
    }
    
    .tour-card-content {
        padding: 12px;
    }
    
    .tour-card-title {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .tour-card-meta {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .tour-card-date {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .tour-card-price {
        font-size: 13px;
    }
    
    .tour-carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .tour-carousel-prev {
        left: -16px;
    }
    
    .tour-carousel-next {
        right: -16px;
    }
    
    .tour-card-labels {
        top: 10px;
        left: 10px;
    }
    
    /* Grid Responsive */
    .tour-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
    
    .tour-carousel-arrows.position-outside {
        width: 100%;
        left: 0;
    }
    
    .tour-carousel-arrows.together {
        gap: 6px;
    }
}

/* Tour Gallery Widget */
.tour-gallery-widget {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.tour-gallery-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.gallery-item {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-lightbox {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Gallery Navigation */
.tour-gallery-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    z-index: 3;
}

/* Arrow Position Variations */
.tour-gallery-arrows.position-outside {
    width: calc(100% + 120px);
    left: -60px;
}

.tour-gallery-arrows.position-inside {
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding: 0px 20px;
    align-content: center;
    align-items: center;
    
}

.tour-gallery-arrows.position-center {
    width: 100%;
    left: 0;
}

/* Vertical Position Variations */
.tour-gallery-arrows.vertical-top {
    top: 20px;
    transform: none;
}

.tour-gallery-arrows.vertical-center {
    top: 50%;
    transform: translateY(-50%);
}

.tour-gallery-arrows.vertical-bottom {
    top: auto;
    bottom: 20px;
    transform: none;
}

/* Arrow Layout Variations */
.tour-gallery-arrows.together {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.tour-gallery-arrows.together.vertical-top {
    transform: translateX(-50%);
}

.tour-gallery-arrows.together.vertical-bottom {
    transform: translateX(-50%);
}

.tour-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #333333;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Together layout arrow positioning */
.tour-gallery-arrows.together .tour-gallery-arrow {
    position: relative;
    top: auto;
    transform: none;
}

.tour-gallery-arrow:hover {
    background: #007cba;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.tour-gallery-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.tour-gallery-prev {
    left: -22px;
}

.tour-gallery-next {
    right: -22px;
}

/* Gallery Dots */
.tour-gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 8px;
}

.tour-gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.tour-gallery-dot:hover {
    background: #999999;
}

.tour-gallery-dot.active {
    background: #007cba;
    transform: scale(1.2);
}

/* No Images Message */
.tour-gallery-no-images {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666666;
}

/* No Tour Product Message */
.tour-gallery-no-tour {
    text-align: center;
    padding: 40px 20px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    color: #856404;
}

.tour-gallery-no-tour p {
    margin: 0;
    font-weight: 500;
}

/* Responsive Design for Tour Gallery */
@media (max-width: 1024px) {
    .tour-gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .tour-gallery-prev {
        left: -20px;
    }
    
    .tour-gallery-next {
        right: -20px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .tour-gallery-arrows.position-outside {
        width: calc(100% + 100px);
        left: -50px;
    }
}

@media (max-width: 768px) {
    .tour-gallery-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .tour-gallery-prev {
        left: -18px;
    }
    
    .tour-gallery-next {
        right: -18px;
    }
    
    .gallery-item img {
        height: 180px;
    }
    
    .tour-gallery-dots {
        margin-top: 15px;
    }
    
    .tour-gallery-arrows.position-outside {
        width: 100%;
        left: 0;
    }
    
    .tour-gallery-arrows.together {
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .tour-gallery-arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .tour-gallery-prev {
        left: -16px;
    }
    
    .tour-gallery-next {
        right: -16px;
    }
    
    .gallery-item img {
        height: 150px;
    }
    
    .tour-gallery-dots {
        margin-top: 10px;
        gap: 6px;
    }
    
    .tour-gallery-dot {
        width: 8px;
        height: 8px;
    }
    
    .tour-gallery-arrows.together {
        gap: 6px;
    }
}

/* Tour Highlights Widget Styles */
.tour-highlights-widget {
    position: relative;
    overflow: hidden !important;
    width: 100% !important;
}

.tour-highlights-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.tour-highlights-container {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    padding-bottom: 50px!important;
}

.tour-highlights-slide,
.tour-highlights-slide-clone {
    flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
    min-width: calc(100% / 3);
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    display: block;
    flex-direction: column;
    margin: 0 !important;
    padding: 0 !important;
}

.tour-highlights-image-wrapper {
    position: relative;
    width: 100%;
    flex: 1;
}

.tour-highlights-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.tour-highlights-content {
    padding: 20px;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
    flex-shrink: 0;
}

.tour-highlights-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

.tour-highlights-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #333333;
    line-height: 1.3;
}

.tour-highlights-description {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: #666666;
}

/* Tour Highlights Navigation */
.tour-highlights-arrows {
    position: absolute;
    top: 30%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    z-index: 10;
    left: 0;
    right: 0;
}

.tour-highlights-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    z-index: 11;
    border-radius: 50%;
    background: #ffffff;
    color: #333333;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.tour-highlights-arrow:hover {
    background: #f8f9fa;
    color: #007cba;
    transform: translateY(-50%) scale(1.1);
}

/* Arrow Positioning - Outside */
.tour-highlights-widget[data-arrow-position="outside"] .tour-highlights-arrow {
    position: absolute;
}

.tour-highlights-widget[data-arrow-position="outside"] .tour-highlights-prev {
    left: -22px;
}

.tour-highlights-widget[data-arrow-position="outside"] .tour-highlights-next {
    right: -22px;
}

/* Arrow Positioning - Inside */
.tour-highlights-widget[data-arrow-position="inside"] .tour-highlights-arrow {
    position: absolute;
}

.tour-highlights-widget[data-arrow-position="inside"] .tour-highlights-prev {
    left: 10px;
}

.tour-highlights-widget[data-arrow-position="inside"] .tour-highlights-next {
    right: 10px;
}

/* Arrow Positioning - Center Overlay */
.tour-highlights-widget[data-arrow-position="center"] .tour-highlights-arrow {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
}

.tour-highlights-widget[data-arrow-position="center"] .tour-highlights-prev {
    left: 10px;
}

.tour-highlights-widget[data-arrow-position="center"] .tour-highlights-next {
    right: 10px;
}

/* Vertical Positioning */
.tour-highlights-widget[data-arrow-vertical="top"] .tour-highlights-arrow {
    top: 20px;
    transform: none;
}

.tour-highlights-widget[data-arrow-vertical="center"] .tour-highlights-arrow {
    top: 50%;
    transform: translateY(-50%);
}

.tour-highlights-widget[data-arrow-vertical="bottom"] .tour-highlights-arrow {
    top: auto;
    bottom: 20px;
    transform: none;
}

/* Arrow Layout - Together */
.tour-highlights-widget[data-arrow-layout="together"] .tour-highlights-arrows {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: flex;
    gap: 10px;
    pointer-events: none;
}

.tour-highlights-widget[data-arrow-layout="together"] .tour-highlights-arrow {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    pointer-events: auto;
}

/* Default positioning for backward compatibility */
.tour-highlights-prev {
    left: -22px;
}

.tour-highlights-next {
    right: -22px;
}

.tour-highlights-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.tour-highlights-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-highlights-dot.active {
    background: #007cba;
    transform: scale(1.2);
}

.tour-highlights-dot:hover {
    background: #007cba;
}

/* Tour Highlights Empty State */
.tour-highlights-empty,
.tour-highlights-no-tour {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    color: #6c757d;
}

.tour-highlights-empty p,
.tour-highlights-no-tour p {
    margin: 0;
    font-weight: 500;
}

/* Tour Highlights Responsive */
@media (max-width: 1024px) {
    .tour-highlights-slide {
        flex: 0 0 calc(100% / 2);
        max-width: calc(100% / 2);
    }
    
    .tour-highlights-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .tour-highlights-prev {
        left: -20px;
    }
    
    .tour-highlights-next {
        right: -20px;
    }
    
    .tour-highlights-image {
        height: 200px;
    }
}

/* Tour CTA Banner Widget Styles */
.tour-cta-banner {
    position: relative;
    display: flex;
    justify-content: space-between;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.tour-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
.tour-cta-top-section{
    text-align: left;
}
.tour-cta-content {
    position: relative;
    z-index: 3;
    flex: 1;
    max-width: 50%;
}

.tour-cta-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.tour-cta-description {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 30px 0;
    color: #ffffff;
    opacity: 0.9;
}

.tour-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #007cba;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tour-cta-button:hover {
    background: #005a87;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 124, 186, 0.3);
}

/* CTA Button Hover Animations */
.tour-cta-button.hover-lift:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tour-cta-button.hover-scale:hover {
    transform: scale(1.05);
}

.tour-cta-button.hover-slide:hover {
    transform: translateY(-5px);
}

/* Tour Card Hover Animations */
.tour-cta-card.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.tour-cta-card.hover-scale:hover {
    transform: scale(1.03);
}

.tour-cta-card.hover-slide:hover {
    transform: translateY(-10px);
}

/* Banner Content Area Styling */
.tour-cta-content-items {
    position: relative;
    z-index: 3;
    flex: 1;
    max-width: 100%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Enhanced CTA Button Styling */
.tour-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #007cba;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tour-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.tour-cta-button:hover::before {
    left: 100%;
}

.tour-cta-card-wrapper {
    position: relative;
    z-index: 3;
    flex-shrink: 0;
}

.tour-cta-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    width: 350px;
    height: 500px;
}

.tour-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.tour-cta-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.tour-cta-card-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.tour-cta-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-cta-card:hover .tour-cta-card-image img {
    transform: scale(1.05);
}

.tour-cta-card-labels {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.tour-cta-label {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.tour-cta-label.new {
    background: #ffe185;
    color: #111111;
}

.tour-cta-label.pre-register {
    background: #111111;
    color: #ffffff;
}

.tour-cta-label.guests-more {
    background: linear-gradient(112.83deg, rgba(255, 255, 255, 1.00) 0%, rgba(255, 255, 255, 0.00) 100%);
    color: #111111;
}

.tour-cta-label.ready-to-start {
    background: #243b73;
    color: #ffffff;
}

.tour-cta-card-content {
    padding: 25px;
}

.tour-cta-card-meta {
    font-size: 16.8px;
    color: #666666;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.tour-cta-card-title {
    font-size: 25.2px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 50px 0;
    color: #333333;
}

.tour-cta-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tour-cta-card-title a:hover {
    color: #111111;
}

.tour-cta-card-date {
    font-size: 21px;
    color: #555555;
    margin: 0;
}

.tour-cta-card-date.no-upcoming {
    color: #e25a68;
}

.tour-cta-card-price {
    font-size: 25px;
    font-weight: 700;
    color: #111111;
    margin: 0;
}

/* Card Position Layouts */
.tour-cta-banner.tour-cta-card-left {
    flex-direction: row-reverse;
}

.tour-cta-banner.tour-cta-card-left .tour-cta-content {
    text-align: right;
}

.tour-cta-banner.tour-cta-card-right .tour-cta-content {
    text-align: left;
}

/* Banner Width and Positioning - Desktop */
.tour-cta-banner.tour-cta-banner-width-left {
    align-self: flex-end;
    margin-left: auto;
}



.tour-cta-banner.tour-cta-banner-width-right {
    align-self: flex-start;
    margin-right: auto;
}


/* Overflow Controls - Desktop */
.tour-cta-banner.tour-cta-overflow-desktop-visible {
    overflow: visible;
}
.tour-cta-banner.tour-cta-overflow-desktop-hidden {
    overflow: hidden;
}
.tour-cta-banner.tour-cta-overflow-desktop-auto {
    overflow: auto;
}
.tour-cta-banner.tour-cta-overflow-desktop-scroll {
    overflow: scroll;
}

/* Tour CTA Banner Empty State */
.tour-cta-no-tours {
    text-align: center;
    padding: 60px 20px;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    color: #6c757d;
}

.tour-cta-no-tours p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

/* Tour Booking Form Widget Styles */
.tour-booking-form {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.tour-booking-title {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 25px 0;
    text-align: center;
}

.tour-booking-form-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tour-booking-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tour-booking-field label {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.tour-booking-field input,
.tour-booking-field select {
    width: 100%;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.tour-booking-field input:focus,
.tour-booking-field select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

/* Disabled date options */
.tour-booking-field select option:disabled {
    color: #999;
    background-color: #f5f5f5;
    font-style: italic;
}

.tour-booking-field select option.insufficient-slots {
    color: #dc3545;
    background-color: #f8d7da;
    font-style: italic;
}

.tour-booking-field select option.insufficient-slots:disabled {
    color: #dc3545;
    background-color: #f8d7da;
    font-style: italic;
}

/* Date availability message */
.date-availability-message {
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.date-availability-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.date-availability-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.date-availability-message p {
    margin: 0;
    line-height: 1.4;
}

/* Guest Selector for Booking Form (Dropdown Design) */
.tour-booking-form .tour-guest-selector {
    position: relative;
}

.tour-booking-form .guest-selector-display {
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: #ffffff;
    font-size: 14px;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 45px;
}

.tour-booking-form .guest-selector-display:hover {
    border-color: #adb5bd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tour-booking-form .guest-selector-display:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.tour-booking-form .guest-display-text {
    flex: 1;
}

.tour-booking-form .guest-display-icon {
    font-size: 12px;
    color: #6c757d;
    transition: transform 0.3s ease;
}

.tour-booking-form .guest-selector-modal {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 5px;
    min-width: 280px;
}

.tour-booking-form .guest-selector-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tour-booking-form .guest-selector-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
}

.tour-booking-form .guest-selector-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.tour-booking-form .guest-selector-close {
    background: none;
    border: none;
    font-size: 20px;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tour-booking-form .guest-selector-close:hover {
    background: #f8f9fa;
    color: #495057;
}

.tour-booking-form .guest-selector-content {
    padding: 20px;
}

.tour-booking-form .guest-type-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tour-booking-form .guest-type-selector:last-child {
    margin-bottom: 0;
}

.tour-booking-form .guest-type-label-container {
    display: flex;
    flex-direction: column;
}

.tour-booking-form .guest-type-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 2px;
}

.tour-booking-form .guest-type-subtitle {
    font-size: 12px;
    color: #6c757d;
}

.tour-booking-form .guest-counter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tour-booking-form .guest-counter-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #dee2e6;
    background: #ffffff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.tour-booking-form .guest-counter-btn:hover:not(:disabled) {
    background: #007cba;
    color: #ffffff;
    border-color: #007cba;
}

.tour-booking-form .guest-counter-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.tour-booking-form .guest-counter-value {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
    color: #495057;
    font-size: 16px;
}

.tour-booking-form .guest-selector-footer {
    padding: 15px 20px;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.tour-booking-form .guest-selector-confirm {
    background: #111111;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Guest selector backdrop for mobile */
.guest-selector-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.guest-selector-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Room Selector Styles (similar to Guest Selector) */
.tour-booking-form .tour-room-selector {
    position: relative;
}

.tour-booking-form .room-selector-display {
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: #ffffff;
    font-size: 14px;
    color: #495057;
    cursor: pointer !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 45px;
    user-select: none;
    position: relative;
    z-index: 1;
}

.tour-booking-form .room-selector-display:hover {
    border-color: #adb5bd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tour-booking-form .room-selector-display:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.tour-booking-form .room-display-text {
    flex: 1;
}

.tour-booking-form .room-selector-arrow {
    color: #6c757d;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.tour-booking-form .room-selector-display.active .room-selector-arrow {
    transform: rotate(180deg);
}

.tour-booking-form .room-selector-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10000 !important;
    max-height: 600px !important;
    overflow-y: auto;
    margin-top: 5px;
    padding: 20px !important;
    display: none !important;
}

/* Ensure dropdown can be shown when toggled */
.tour-booking-form .room-selector-dropdown.show {
    display: block !important;
}

.tour-booking-form .room-selector-dropdown[style*="display: block"] {
    display: block !important;
}

/* Force visibility when JavaScript shows dropdown */
.tour-booking-form .room-selector-dropdown[style*="display: block"],
.tour-booking-form .room-selector-dropdown.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.tour-booking-form .room-option {
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
}

.tour-booking-form .room-option:last-child {
    border-bottom: none;
}

.tour-booking-form .room-option:hover {
    background-color: #f8f9fa;
}

.tour-booking-form .room-option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tour-booking-form .room-name {
    font-weight: 500;
    color: #2c3e50;
}

.tour-booking-form .room-cost {
    color: #28a745;
    font-weight: 600;
    font-size: 13px;
}

.tour-booking-form .room-included {
    color: #6c757d;
    font-size: 12px;
    font-style: italic;
}

.tour-booking-form .no-rooms-available {
    padding: 20px 15px;
    text-align: center;
    color: #6c757d;
    font-style: italic;
}

/* Body class for guest selector open */
body.guest-selector-open {
    overflow: hidden;
}

/* Room Selection Button */
.room-selection-btn {
    width: 100%;
    background: #ffffff;
    color: #111111;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 15px;
    text-align: left!important;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.room-selection-btn:hover {
    background: #005a87;
}

.room-selection-text {
    flex: 1;
    text-align: left!important;
}

.room-selection-arrow {
    font-size: 12px;
    font-weight: bold;
}

.selected-rooms-summary {
    margin-top: 10px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.selected-rooms-text {
    margin: 0;
    font-size: 12px;
    color: #495057;
    font-weight: 500;
}

/* Room Selection Modal - Updated to match uploaded images */
.room-selection-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}


.room-selection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #ffffff;
}

.room-selection-title span.guest-count {
    margin: 0;
    font-size: 24px!important;
    font-weight: 700!important;
    color: #111111;
}

.guest-count {
    color: #111111;
    font-weight: 700;
}

.room-selection-close {
    background: none!important;
    border: none!important;
    font-size: 32px!important;
    color: #111111;
    cursor: pointer!important;
    padding: 0!important;
    width: 24px!important;
    height: 24px;
    display: flex!important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.room-selection-close:hover {
    color: #111111;
}

.room-selection-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.room-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.room-list .room-item {
    display: flex;
    gap: 15px;
    padding: 20px 25px 0px 25px;
    position: relative;
    transition: all 0.3s ease;
    margin-bottom: 0px!important;
    flex-direction: column!important;
}
.room-item-wrapper{
    display: flex;
    gap: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.room-item:last-child {
    border-bottom: none;
}

.room-item.sold-out,
.room-item.sold-out-hidden {
    display: none !important;
}

.sold-out-badge {
    position: absolute;
    top: 15px;
    right: 25px;
    background: #dc3545;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    z-index: 1;
    text-transform: uppercase;
}

.room-image {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    align-items: center;
    justify-content: center;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #ffffff;
}

.room-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.room-title {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    line-height: 1.3;
}

.room-info {
   
    font-size: 14px;
    color: #666666;
    line-height: 1.4;
}

.room-price {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #111111;
}

.room-price.included {
    color: #111111;
    font-weight: 700;
}

.room-price-wrapper {
    width: 30%;
    padding: 0px 10px;
    text-align: right!important;
}

.room-price-wrapper  p.room-price{
    text-align: right!important;
    justify-content: flex-end;
}
.room-upgrade-price {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
}

.room-controls {
    width: 65%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    flex-shrink: 0;
}

.room-counter {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
}

.room-counter label {
    font-size: 16px;
    font-weight: 400;
    color: #111111;
    margin: 0;
    text-align: right;
    line-height: 1.2;
    padding: 0px 10px;
}

.counter-controls {
    width: 55%;
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: flex-end;
    justify-content: space-evenly;
}

button.room-cabin-counter-btn {
    width: 28px!important;
    height: 28px!important;
    border-radius: 8px!important;
    border: 1px solid #555!important;
    background: #FFF!important;
    font-size: 16px!important;
    font-weight: 700;
    color: #111111!important;
    cursor: pointer!important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-cabin-counter-btn:hover:not(:disabled) {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.room-cabin-counter-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.cabin-count,
.guest-count {
    min-width: 24px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
}

.room-selection-footer {
    padding: 20px 25px;
    border-top: 1px solid #e9ecef;
    text-align: center;
    background: #ffffff;
}

.room-selection-confirm {
    background: #111111!important;
    color: #ffffff!important;
    border: none!important;
    padding: 12px 30px;
    border-radius: 24px!important;
    font-size: 16px!important;
    font-weight: 700!important;
    cursor: pointer!important;
    transition: all 0.3s ease;
    text-transform: capitalize!important;
    letter-spacing: 0.5px!important;
    width: 100%;
}

.room-selection-confirm:hover {
    background: #111111;
}

/* Disabled confirm button styles */
.room-selection-confirm.disabled,
.room-selection-confirm:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #dddddd !important;
    color: #111111 !important;
    padding: 12px 30px;
    border-radius: 24px!important;
}

.room-selection-confirm.disabled:hover,
.room-selection-confirm:disabled:hover {
    transform: none;
    box-shadow: none;
}

.no-rooms-message {
    text-align: center;
    color: #6c757d;
    font-style: italic;
    padding: 40px 25px;
    font-size: 14px;
}

/* Body class for room selection open */
body.room-selection-open {
    overflow: hidden;
}

/* Mobile responsive for room selection modal */
@media (max-width: 768px) {
    .room-selection-modal-overlay {
        padding: 10px;
    }
    
    .room-selection-modal {
        max-width: 100%;
        max-height: 95vh;
    }
    
    .room-selection-header {
        padding: 15px 20px;
    }
    
    .room-selection-title {
        font-size: 16px;
    }
    
    .room-item {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .room-image {
        width: 100%;
        height: 120px;
        align-self: center;
    }
    
    .room-controls {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        gap: 20px;
        width: 100%;
    }
    
    .room-counter {
        flex: 1;
    }
    
    .room-selection-footer {
        padding: 15px 20px;
    }
    
    .room-selection-confirm {
        padding: 14px 25px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .room-selection-modal-overlay {
        padding: 5px;
    }
    
    .room-selection-header {
        padding: 12px 15px;
    }
    
    .room-selection-title {
        font-size: 15px;
    }
    
    .room-item {
        padding: 12px 15px;
    }
    
    .room-title {
        font-size: 15px;
    }
    
    .room-info {
        font-size: 13px;
    }
    
    .room-price {
        font-size: 13px;
    }
    
    .room-cabin-counter-btn {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .cabin-count,
    .guest-count {
        min-width: 28px;
        font-size: 24px;
    }
}

.room-selection-modal {
    background: #ffffff;
    max-width: 540px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.room-selection-popup {
    padding: 0;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
}

.popup-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.popup-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: #e9ecef;
    color: #495057;
}

.popup-content {
    padding: 25px;
}

.popup-content p {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #495057;
    line-height: 1.5;
}

.popup-content p:last-child {
    margin-bottom: 0;
}

.room-info {
    background: #f8f9fa;
    border-radius: 8px;
}

.room-info p {
    font-size: 14px;
    color: #495057;
}

.room-info p:last-child {
    margin-bottom: 0;
}

.room-info strong {
    color: #2c3e50;
}

.room-quantity-selector {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.room-quantity-selector label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 16px;
}

.room-note {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-top: 8px;
    text-align: center;
    font-style: italic;
}

.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.quantity-controls .qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e9ecef;
    background: #ffffff;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-controls .qty-btn:hover:not(:disabled) {
    background: #007cba;
    color: #ffffff;
    border-color: #007cba;
}

.quantity-controls .qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-controls .qty-display {
    min-width: 50px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.popup-footer {
    padding: 20px 25px;
    border-top: 1px solid #e9ecef;
    text-align: center;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

.btn-confirm-rooms {
    background: #007cba;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm-rooms:hover {
    background: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 124, 186, 0.3);
}

/* Legacy Guest Selector (keeping for backward compatibility) */
.guest-selector {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.guest-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.guest-type:last-child {
    border-bottom: none;
}

.guest-type span {
    font-size: 14px;
    font-weight: 500;
    color: #333333;
}

.guest-type small {
    font-size: 12px;
    color: #666666;
    display: block;
    margin-top: 2px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #e9ecef;
    background: #ffffff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #f8f9fa;
    border-color: #007cba;
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qty-display {
    min-width: 30px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}

/* Customization Toggle */
.customization-toggle {
    display: flex;
    border-radius: 50px;
    border: 1px solid #111;
    overflow: hidden;
}

.toggle-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: #ffffff;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.toggle-btn.active {
    background: #000000;
    color: #ffffff;
}

.toggle-btn:hover {
    background: #f8f9fa;
}

.toggle-btn.active:hover {
    background: #333333;
}

.toggle-icon {
    font-size: 12px;
    font-weight: 600;
}

/* Hide toggle icon by default, only show on active button */
.toggle-btn .toggle-icon {
    display: none;
}

.toggle-btn.active .toggle-icon {
    display: inline;
}

/* Date Input with Dropdown Icon */
.date-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.date-input-wrapper .travel-date-calendar {
    width: 100%;
    padding-right: 35px; /* Make room for dropdown icon */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.date-dropdown-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #6c757d;
    pointer-events: none;
    z-index: 2;
    transition: transform 0.3s ease;
}

.date-input-wrapper:focus-within .date-dropdown-icon {
    transform: translateY(-50%) rotate(180deg);
}

/* Hide native date picker icon on webkit browsers */
.date-input-wrapper .travel-date-calendar::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: pointer;
    opacity: 0;
}

/* Responsive adjustments for date input */
@media (max-width: 768px) {
    .date-input-wrapper .travel-date-calendar {
        padding-right: 40px;
    }
    
    .date-dropdown-icon {
        right: 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .date-input-wrapper .travel-date-calendar {
        padding-right: 35px;
    }
    
    .date-dropdown-icon {
        right: 12px;
        font-size: 12px;
    }
}

/* Pricing Summary */
.tour-booking-pricing {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.pricing-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #333333;
}
.pricing-item-quantity{
    display: -webkit-inline-box!important;
    display: -ms-inline-flexbox!important;
    align-items: center;
    gap: 5px;
}

.pricing-item span:first-child {
    display: flex;
    align-items: center;
    gap: 5px;
}

.info-icon {
    font-style: normal;
    color: #007cba;
    cursor: help;
}

.pricing-message {
    text-align: left;
    color: #555555;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.tour-checkout-widget .pricing-section-title{
    padding-top: 8px;
}

/* Sharing Preference Field */
.sharing-preference-field {
    margin-top: 15px;
}

.sharing-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.sharing-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.sharing-option:hover {
    border-color: #007cba;
    background: #f8f9fa;
}

.sharing-option input[type="radio"] {
    margin: 0;
    cursor: pointer;
}

.sharing-label {
    font-size: 14px;
    color: #495057;
    cursor: pointer;
    flex: 1;
}

.sharing-option input[type="radio"]:checked + .sharing-label {
    color: #007cba;
    font-weight: 500;
}

.pricing-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 2px solid #e9ecef;
    font-weight: 700;
    font-size: 16px;
    color: #333333;
}

.total-amount {
    font-size: 18px;
    color: #111111;
}

/* Contact Form */

.contact-instruction {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin: 0 0 15px 0;
    text-align: center;
}

/* Submit Button */
.tour-booking-submit {
    width: 100%;
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.tour-booking-submit:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Disclaimer */
.tour-booking-disclaimer {
    font-size: 12px;
    color: #333333;
    text-align: center;
    margin: 15px 0 0 0;
    font-weight: 500;
}

/* Error and Success Messages */
.tour-booking-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.tour-booking-error .error-message {
    color: #721c24;
    font-size: 14px;
    margin: 0 0 5px 0;
}

.tour-booking-error .error-message:last-child {
    margin-bottom: 0;
}

.tour-booking-success {
    text-align: center;
    padding: 30px 20px;
}

.tour-booking-success h4 {
    color: #28a745;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.tour-booking-success p {
    color: #333333;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Empty State */
.tour-booking-empty-state {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    color: #6c757d;
}

.tour-booking-empty-state .empty-state-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.tour-booking-empty-state h4 {
    color: #495057;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.tour-booking-empty-state p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tour-booking-form {
        max-width: 100%;
        margin: 0;
    }
    
    .tour-booking-title {
        font-size: 20px;
    }
    
    /* Guest selector mobile improvements */
    .tour-booking-form .guest-selector-display {
        min-height: 48px;
        padding: 14px 15px;
    }
    
    .tour-booking-form .guest-selector-modal {
        position: fixed;
        top: 50%;
        left: 20px;
        right: 20px;
        transform: translateY(-50%) translateY(-10px);
        max-width: none;
        margin-top: 0;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .tour-booking-form .guest-selector-modal.active {
        transform: translateY(-50%) translateY(0);
    }
    
    .tour-booking-form .guest-counter {
        justify-content: center;
        padding: 15px 10px;
    }
    
    .tour-booking-form .guest-counter-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .tour-booking-form .guest-counter-value {
        font-size: 18px;
        min-width: 44px;
    }
    
    .tour-booking-form .guest-selector-header {
        padding: 12px 15px;
    }
    
    .tour-booking-form .guest-selector-header h4 {
        font-size: 15px;
    }
    
    .tour-booking-form .guest-selector-footer {
        padding: 12px 15px;
    }
    
    .tour-booking-form .guest-selector-confirm {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Room selector mobile improvements */
    .tour-booking-form .room-selector-display {
        min-height: 48px;
        padding: 14px 15px;
    }
    
    .tour-booking-form .room-selector-dropdown {
        max-height: 250px;
    }
    
    .tour-booking-form .room-option {
        padding: 14px 15px;
    }
    
    .tour-booking-form .room-name {
        font-size: 15px;
    }
    
    .tour-booking-form .room-cost {
        font-size: 14px;
    }
    
    /* Legacy guest selector mobile */
    .guest-type {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .quantity-selector {
        align-self: flex-end;
    }
    
    
    .toggle-btn {
        border-radius: 0;
    }
    
    .toggle-btn:first-child {
        border-radius: 8px 8px 0 0;
    }
    
    .toggle-btn:last-child {
        border-radius: 0 0 8px 8px;
    }
    
    .pricing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .pricing-item span:last-child {
        align-self: flex-end;
    }
    
    /* Room selection popup mobile */
    .room-selection-overlay {
        padding: 10px;
    }
    
    .room-selection-modal {
        max-width: 100%;
        max-height: 95vh;
    }
    
    .popup-header {
        padding: 15px 20px;
    }
    
    .popup-header h4 {
        font-size: 16px;
    }
    
    .popup-content {
        padding: 20px;
    }
    
    .room-info {
        padding: 12px;
    }
    
    .room-info p {
        font-size: 13px;
    }
    
    .quantity-controls .qty-btn {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
    
    .quantity-controls .qty-display {
        font-size: 22px;
        min-width: 60px;
    }
    
    .popup-footer {
        padding: 15px 20px;
    }
    
    .btn-confirm-rooms {
        padding: 14px 25px;
        font-size: 15px;
    }
    
    /* Room selection modal mobile */
    .room-selection-modal-overlay {
        padding: 10px;
    }
    
    .room-selection-modal {
        max-width: 100%;
        max-height: 95vh;
    }
    
    .room-selection-header {
        padding: 15px 20px;
    }
    
    .room-selection-title {
        font-size: 16px;
    }
    
    .room-selection-content {
        padding: 20px;
    }
    
    .room-item {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .room-image {
        width: 80px;
        height: auto;
        object-fit: contain;
        background-color: #f8f9fa;
    }
    
    .room-controls {
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        gap: 20px;
    }
    
    .room-counter {
        flex: 1;
    }
    
    .room-selection-footer {
        padding: 15px 20px;
    }
    
    .room-selection-confirm {
        padding: 14px 25px;
        font-size: 15px;
    }
}

/* Tour CTA Banner Responsive */
@media (max-width: 1024px) {
    .tour-cta-banner {
        flex-direction: column !important;
        text-align: left;
        padding: 40px 20px;
        min-height: auto;
    }
    
    .tour-cta-content-items {
        max-width: 100% !important;
        min-width: 100% !important;
        padding: 20px 0 30px 0;
    }
    
    .tour-cta-title {
        font-size: 36px;
    }
    
    .tour-cta-description {
        font-size: 16px;
    }
    
    .tour-cta-card-wrapper {
        width: 100%;
        margin: 0 auto;
    }
    
    .tour-cta-card {
        width: 100% !important;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .tour-cta-banner.tour-cta-card-left .tour-cta-content,
    .tour-cta-banner.tour-cta-card-right .tour-cta-content {
        text-align: left;
    }
    
    /* Reset banner positioning on tablet */
    .tour-cta-banner.tour-cta-banner-width-left,
    .tour-cta-banner.tour-cta-banner-width-right {
        align-self: stretch;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* Tablet-specific card position class support */
    .tour-cta-banner.tour-cta-card-tablet-left {
        flex-direction: row-reverse;
    }
    
    .tour-cta-banner.tour-cta-card-tablet-left .tour-cta-content {
        text-align: right;
    }
    
    .tour-cta-banner.tour-cta-card-tablet-right .tour-cta-content {
        text-align: left;
    }
    
    /* Card overlap distance controlled by Elementor responsive controls */
    
    /* TourCTA Card Responsive Styles - Tablet */
    .tour-cta-card {
        height: 450px;
    }
    
    .tour-cta-card-image-wrapper {
        height: 200px;
    }
    
    .tour-cta-card-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .tour-cta-card-meta {
        font-size: 15px;
    }
    
    .tour-cta-card-date {
        font-size: 18px;
    }
    
    .tour-cta-card-price {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .tour-cta-banner {
        min-height: auto;
        padding: 30px 15px;
        position: relative;
    }
    
    .tour-cta-content-items {
        padding: 15px 0 25px 0;
        order: 1;
    }
    
    .tour-cta-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .tour-cta-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .tour-cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .tour-cta-card-wrapper {
        order: 2;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .tour-cta-card {
        max-width: 100%;
        margin: 0;
        height: 400px;
    }
    
    .tour-cta-card-image-wrapper {
        height: 180px;
    }
    
    .tour-cta-card-content {
        padding: 20px;
    }
    
    .tour-cta-card-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .tour-cta-card-meta {
        font-size: 14px;
    }
    
    .tour-cta-card-date {
        font-size: 16px;
    }
    
    .tour-cta-card-price {
        font-size: 18px;
    }
    
    /* Mobile Card Positioning */
    /* Mobile Top Position */
    .tour-cta-banner.tour-cta-card-mobile-top .tour-cta-content {
        order: 2;
    }
    
    .tour-cta-banner.tour-cta-card-mobile-top .tour-cta-card-wrapper {
        order: 1;
        margin-bottom: 20px;
    }
    
    /* Mobile Bottom Position */
    .tour-cta-banner.tour-cta-card-mobile-bottom .tour-cta-content {
        order: 1;
    }
    
    .tour-cta-banner.tour-cta-card-mobile-bottom .tour-cta-card-wrapper {
        order: 2;
        margin-top: 20px;
    }
    
    /* Overflow Controls - Mobile */
    .tour-cta-banner.tour-cta-overflow-mobile-visible {
        overflow: visible;
    }
    .tour-cta-banner.tour-cta-overflow-mobile-hidden {
        overflow: hidden;
    }
    .tour-cta-banner.tour-cta-overflow-mobile-auto {
        overflow: auto;
    }
    .tour-cta-banner.tour-cta-overflow-mobile-scroll {
        overflow: scroll;
    }
}

@media (max-width: 480px) {
    .tour-cta-banner {
        padding: 20px 10px;
    }
    
    .tour-cta-content {
        padding: 10px 0 20px 0;
    }
    
    .tour-cta-title {
        font-size: 24px;
    }
    
    .tour-cta-description {
        font-size: 13px;
    }
    
    .tour-cta-card-image {
        height: 100%;
    }
    
    .tour-cta-card-content {
        padding: 15px;
    }
    
    .tour-cta-card-title {
        font-size: 16px;
    }
    
    .tour-cta-card-meta {
        font-size: 12px;
    }
    
    .tour-cta-card-date {
        font-size: 12px;
    }
    
    .tour-cta-card-price {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .tour-highlights-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .tour-highlights-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .tour-highlights-prev {
        left: -18px;
    }
    
    .tour-highlights-next {
        right: -18px;
    }
    
    .tour-highlights-image {
        height: 180px;
    }
    
    .tour-highlights-content {
        padding: 15px;
    }
    
    .tour-highlights-title {
        font-size: 16px;
    }
    
    .tour-highlights-description {
        font-size: 13px;
    }
    
    .tour-highlights-dots {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .tour-highlights-arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .tour-highlights-prev {
        left: -16px;
    }
    
    .tour-highlights-next {
        right: -16px;
    }
    
    .tour-highlights-image {
        height: 150px;
    }
    
    .tour-highlights-content {
        padding: 12px;
    }
    
    .tour-highlights-title {
        font-size: 15px;
    }
    
    .tour-highlights-description {
        font-size: 12px;
    }
    
    .tour-highlights-dots {
        gap: 6px;
    }
    
    .tour-highlights-dot {
        width: 8px;
        height: 8px;
    }
}

/* Enhanced Room Selection Styles - consolidated above */


.tour-booking-form .room-selection-heading {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.tour-booking-form .selected-guest-count {
    color: #007cba;
    font-weight: 700;
}

/* Room Selection Container */
.tour-booking-form .room-selection-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Room Card Styles */
.tour-booking-form .room-card {
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tour-booking-form .room-card:hover {
    border-color: #007cba;
    box-shadow: 0 4px 16px rgba(0, 124, 186, 0.1);
    transform: translateY(-2px);
}

.tour-booking-form .room-image {
    width: 20%;
    height: auto;   
    overflow: hidden;
    position: relative;
    background: #ffffff!important;
    border-radius: 0px!important;
}

.tour-booking-form .room-image img {
    width: 100%;
    height: 80px!important;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-booking-form .room-card:hover .room-image img {
    transform: scale(1.05);
}

.tour-booking-form .room-image-placeholder {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

.tour-booking-form .room-details {
    width: 50%;
    overflow: hidden;
}

.tour-booking-form .room-title {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    line-height: 1.3;
}
.tour-booking-form .room-controls-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-end;
    width: 100%;
    align-items: flex-end;
    justify-content: center;
    padding: 0px 25px 20px 25px;
    border-bottom: 1px solid #DDDDDD;

}

.tour-booking-form .room-capacity,
.tour-booking-form .room-type,
.tour-booking-form .room-price {
    display: flex;
    align-items: center;
    padding: 0px 10px!important;
    margin: 0px!important;
}

.tour-booking-form .capacity-label,
.tour-booking-form .type-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.tour-booking-form .capacity-label {
    background: #e3f2fd;
    color: #1976d2;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.tour-booking-form .type-label {
    background: #f3e5f5;
    color: #7b1fa2;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.tour-booking-form .price-amount {
    font-size: 18px;
    font-weight: 700;
    color: #28a745;
}

.tour-booking-form .price-included {
    font-size: 14px;
    font-weight: 600;
    color: #28a745;
    background: #d4edda;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Room Quantity and Guest Selection */
.tour-booking-form .room-quantity,.room-info-thankyou,
.tour-booking-form .room-guest-selection {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.tour-booking-form .room-quantity label,
.tour-booking-form .room-guest-selection label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.tour-booking-form .room-count-select,
.tour-booking-form .room-guest-select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s ease;
}

.tour-booking-form .room-count-select:focus,
.tour-booking-form .room-guest-select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.tour-booking-form .no-rooms-available {
    padding: 40px 20px;
    text-align: center;
    color: #666;
    font-style: italic;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}

/* Mobile Responsive for Enhanced Room Selection */
@media (max-width: 768px) {
    .tour-booking-form .room-selector-dropdown {
        padding: 15px !important;
        max-height: 500px !important;
    }
    
    .tour-booking-form .room-selection-heading {
        font-size: 16px;
    }
    
    .tour-booking-form .room-image {
        height: 150px;
    }
    
    .tour-booking-form .room-details {
        padding:  0px 10px;
    }
    
    .tour-booking-form .room-title {
        font-size: 18px;
    }
    
    .tour-booking-form .room-card {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .tour-booking-form .room-selector-dropdown {
        padding: 10px !important;
    }
    
    .tour-booking-form .room-details {
        padding: 0px 10px;
    }
    
    .tour-booking-form .room-title {
        font-size: 16px;
    }
    
    .tour-booking-form .room-image {
        height: 120px;
    }
}

/* Room Info Slider Widget Styles */
.room-info-slider-widget {
    position: relative;
    overflow: hidden;
}

/* Full slider overlay - positioned outside moving container */
.room-info-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}

/* Room Info Navigation */
.room-info-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    pointer-events: none;
    z-index: 10;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.room-info-arrow {
    position: relative;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #333333;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.room-info-arrow:hover {
    background: #f8f9fa;
    color: #007cba;
    transform: scale(1.1);
}

.room-info-arrow.disabled,
.room-info-arrow:disabled {
    background: #f5f5f5;
    color: #cccccc;
    cursor: not-allowed;
    opacity: 0.5;
    transform: none;
}

.room-info-arrow.disabled:hover,
.room-info-arrow:disabled:hover {
    background: #f5f5f5;
    color: #cccccc;
    transform: none;
}
.room-info-content p.room-info {
    border-radius:0px!important;
    background:#FFFFFF00!important;
 border:0px!important;
 box-shadow:none!important;
}


/* Arrow Positioning - Outside */
.room-info-widget[data-arrow-position="outside"] .room-info-arrows {
    padding: 0 60px;
}

.room-info-widget[data-arrow-position="outside"] .room-info-arrow {
    position: relative;
}

.room-info-widget[data-arrow-position="outside"] .room-info-prev {
    margin-left: -40px;
}

.room-info-widget[data-arrow-position="outside"] .room-info-next {
    margin-right: -40px;
}

/* Arrow Positioning - Inside */
.room-info-widget[data-arrow-position="inside"] .room-info-arrows {
    padding: 0 20px;
}

.room-info-widget[data-arrow-position="inside"] .room-info-arrow {
    position: relative;
}

/* Room Info Dots */
.room-info-dots {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    gap: 8px;
}

.room-info-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.room-info-dot.active {
    background: #0073aa;
    transform: scale(1.2);
}

.room-info-title {
    font-size: 28px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 15px;
}

.room-info-subtitle {
    font-size: 16px;
    color: #666666;
    margin-bottom: 30px;
}

/* Loading State */
.room-slider-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* Hide loading spinner when slider is ready */
.room-info-widget.slider-ready .room-slider-loading {
    display: none;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e9ecef;
    border-top: 4px solid #0073aa;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.room-info-slider {
    position: relative;
    display: block;
    width: 100%;
}

/* Ensure slides are properly displayed */
.room-info-slider .slick-slide {
    display: block !important;
    float: left;
    height: auto;
    min-height: 1px;
    width: auto !important;
}

.room-info-slider .slick-list {
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.room-info-slider .slick-track {
    display: flex !important;
    align-items: stretch;
    width: 100% !important;
}

.room-info-slide {
    padding: 0;
    text-align: left;
    background: #ffffff;
    margin-right: 15px!important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Hover Animations */
.room-info-slide[data-hover-animation="lift"]:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.room-info-slide[data-hover-animation="scale"]:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.room-info-slide[data-hover-animation="slide"]:hover {
    transform: translateX(8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.room-info-slide[data-hover-animation="rotate"]:hover {
    transform: rotate(1deg) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* No hover animation */
.room-info-slide[data-hover-animation="none"]:hover {
    transform: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Enhanced hover effects for better visual feedback */
.room-info-slide[data-hover-animation="lift"]:hover .room-image-wrapper {
    transform: translateY(-4px);
}

.room-info-slide[data-hover-animation="scale"]:hover .room-image-wrapper {
    transform: scale(1.02);
}

.room-info-slide[data-hover-animation="slide"]:hover .room-image-wrapper {
    transform: translateX(4px);
}

.room-info-slide[data-hover-animation="rotate"]:hover .room-image-wrapper {
    transform: rotate(0.5deg);
}

.room-image-wrapper {
    margin-bottom: 0;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    z-index: 1;
    opacity: 1 !important;
    visibility: visible !important;
}

.room-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.room-image-wrapper:hover .room-image {
    transform: scale(1.08);
}

/* Individual image hover effects */
.room-image-wrapper:hover .room-image {
    transform: scale(1.08);
}

/* Lightbox trigger styles */
.room-lightbox-trigger {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    font-size: 16px;
    z-index: 3;
    opacity: 0;
}

.room-image-wrapper:hover .room-lightbox-trigger {
    opacity: 1;
}

.room-lightbox-trigger:hover {
    background: #0073aa;
    color: white;
    transform: scale(1.1);
}

/* Hide lightbox trigger when disabled */
.room-lightbox-trigger.hidden {
    display: none;
}



/* Lightbox Overlay */
.room-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.room-image-wrapper:hover .room-lightbox-overlay {
    opacity: 1;
}

.lightbox-trigger {
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    font-size: 18px;
}

.lightbox-trigger:hover {
    background: #0073aa;
    color: white;
    transform: scale(1.1);
}

.room-content-wrapper {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #1a1a1a;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* Hide elements when disabled */
.room-title.hidden,
.room-capacity.hidden,
.room-type.hidden,
.room-price.hidden,
.room-image.hidden {
    display: none !important;
}

/* Enhanced content spacing */
.room-content-wrapper {
    gap: 12px;
}

/* Better typography hierarchy */
.room-title {
    font-family: inherit;
}

.room-capacity,
.room-type {
    font-family: inherit;
}

.room-price {
    font-family: inherit;
}

.room-details {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.room-capacity,
.room-type,
.room-capacity-type {
    font-size: 14px;
    color: #666666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.room-capacity::before {
    content: '👥';
    font-size: 16px;
}

.room-type::before {
    content: '🏠';
    font-size: 16px;
}

.room-capacity-type::before {
    content: '🏠';
    font-size: 16px;
}

.room-price {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    margin: 0;
    padding: 16px 0 0 0;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}


/* Room Info styling */
.room-info {
    margin: 0 0 6px 0;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.4;
}

/* Slick Slider Styles */
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #333333;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.slick-arrow:hover {
    background: #0073aa;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.slick-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slick-prev {
    left: -22px;
}

.slick-next {
    right: -22px;
}

/* Arrow Position Variants */
.slick-arrow.inside {
    left: 10px;
}

.slick-arrow.inside.slick-next {
    left: auto;
    right: 10px;
}

.slick-arrow.center {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.slick-arrow.center.slick-next {
    left: auto;
    right: 50%;
    transform: translateX(50%) translateY(-50%);
}

/* Arrow Layout Together */
.slick-arrows.together {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: flex;
    gap: 10px;
}

.slick-arrows.together .slick-arrow {
    position: relative;
    left: auto;
    right: auto;
    transform: none;
}

/* Hide arrows when disabled */
.slick-arrow.hidden {
    display: none !important;
}

/* Hide dots when disabled */
.slick-dots.hidden {
    display: none !important;
}

/* Enhanced arrow styles for better visibility */
.slick-arrow {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Arrow hover effects */
.slick-arrow:hover {
    transform: translateY(-50%) scale(1.1);
}

.slick-arrow.slick-prev:hover {
    transform: translateY(-50%) scale(1.1) translateX(-2px);
}

.slick-arrow.slick-next:hover {
    transform: translateY(-50%) scale(1.1) translateX(2px);
}

/* Center mode styles */
.room-info-slider.slick-center-mode .slick-slide {
    opacity: 0.5;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.room-info-slider.slick-center-mode .slick-slide.slick-center {
    opacity: 1;
    transform: scale(1);
}

/* Fade effect styles */
.room-info-slider.slick-fade .slick-slide {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-info-slider.slick-fade .slick-slide.slick-active {
    opacity: 1;
}

/* Enhanced loading spinner */
.room-slider-loading {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
}

.loading-spinner {
    background: conic-gradient(from 0deg, transparent, #0073aa, transparent);
    animation: spin 1.5s linear infinite;
}

.slick-dots {
    display: flex !important;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.slick-dots li {
    margin: 0 5px;
}

.slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #cccccc;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
    background: #0073aa;
}

/* Lightbox Styles */
.room-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.room-lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.room-lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.room-lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.room-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
}

.room-lightbox-close:hover {
    background: #0073aa;
    color: white;
    transform: scale(1.1);
}

.room-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    text-align: center;
}

.room-lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
}

.room-lightbox-content h3 {
    color: white;
    margin-top: 15px;
    font-size: 18px;
}

.room-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-lightbox-close:hover {
    color: #0073aa;
}

/* Room Info Slider Responsive Design */
@media (max-width: 1024px) {
    .room-info-title {
        font-size: 24px;
    }
    
    .room-info-slide {
        margin: 0 8px;
    }
    
    .room-image {
        height: 180px;
    }
    
    .room-overlay-title {
        font-size: 16px;
    }
    
    .room-overlay-capacity,
    .room-overlay-price {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .room-info-title {
        font-size: 20px;
    }
    
    .room-info-subtitle {
        font-size: 14px;
    }
    
    .room-info-slide {
        margin: 0 5px;
        padding: 12px;
    }
    
    .room-image {
        height: 150px;
    }
    
    .room-title {
        font-size: 16px;
    }
    
    .room-overlay-content {
        padding: 15px;
    }
    
    .room-overlay-title {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .room-overlay-capacity,
    .room-overlay-price {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .slick-arrow {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    .slick-prev {
        left: -19px;
    }
    
    .slick-next {
        right: -19px;
    }
}

@media (max-width: 480px) {
    .room-info-title {
        font-size: 18px;
    }
    
    .room-info-slide {
        margin: 0 3px;
        padding: 10px;
    }
    
    .room-image {
        height: 120px;
    }
    
    .room-title {
        font-size: 14px;
    }
    
    .room-capacity,
    .room-type {
        font-size: 12px;
    }
    
    .room-price {
        font-size: 14px;
    }
    
    .room-overlay-content {
        padding: 12px;
    }
    
    .room-overlay-title {
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    .room-overlay-capacity,
    .room-overlay-price {
        font-size: 11px;
        margin-bottom: 4px;
    }
    
    .slick-arrow {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .slick-prev {
        left: -16px;
    }
    
    .slick-next {
        right: -16px;
    }
}

@media (max-width: 360px) {
    .room-info-title {
        font-size: 16px;
    }
    
    .room-info-subtitle {
        font-size: 12px;
    }
    
    .room-info-slide {
        margin: 0 2px;
        padding: 8px;
    }
    
    .room-image {
        height: 100px;
    }
    
    .room-title {
        font-size: 13px;
    }
    
    .room-capacity,
    .room-type {
        font-size: 11px;
    }
    
    .room-price {
        font-size: 13px;
    }
    
    .room-overlay-content {
        padding: 10px;
    }
    
    .room-overlay-title {
        font-size: 13px;
    }
    
    .room-overlay-capacity,
    .room-overlay-price {
        font-size: 10px;
    }
    
    .slick-arrow {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .slick-prev {
        left: -14px;
    }
    
    .slick-next {
        right: -14px;
    }
}

/* Fix for horizontal scrolling - Room Info Slider */
.room-info-widget,
.room-info-image-wrapper{
    overflow: hidden !important;
}
/*
.room-info-slide,
.room-info-slide-clone {
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: transform .25s ease, box-shadow .25s ease;
    margin: 0 !important; 
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
}

.room-info-slide:hover,
.room-info-slide-clone:hover { 
    transform: translateY(-6px); 
    box-shadow: 0 20px 50px rgba(0,0,0,0.12); 
}
*/
/* Room Info Content 
.room-info-content {
    padding: 20px;
    background: #fff;
    position: relative;
    z-index: 2;
}

.room-info-content h3.room-info-title {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.room-info-content .room-info {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.room-info-content .room-price {
    margin: 8px 0 0 0;
    font-size: 16px;
    font-weight: 600;
    color: #0073aa;
    line-height: 1.3;
}
*/
/* Content position variations 
.room-info-slide {
    position: relative;
    display: flex;
    flex-direction: column;
}

.room-info-slide .room-info-content {
    position: relative;
    z-index: 2;
    background: #fff;
    opacity: 1 !important;
    visibility: visible !important;
}

.room-info-slide .room-info-content[style*="position: overlay"],
.room-info-slide .room-info-content[style*="position: absolute"] {
    position: absolute !important;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.room-info-slide .room-info-content[style*="position: top"],
.room-info-slide .room-info-content[style*="order: -1"] {
    order: -1;
}
*/
/* Ensure proper slider functionality 
.room-info-widget {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.room-info-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.room-info-slider-container {
    display: flex !important;
    width: auto !important;
    min-width: 100% !important;
    transition: transform 0.3s ease-in-out !important;
    transform: translateX(0px) !important;
    will-change: transform !important;
    flex-wrap: nowrap !important;
    gap: 0px !important;
    margin: 0px !important;
    padding: 0px !important;
    position: relative !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    transform-style: preserve-3d !important;
    -webkit-transform-style: preserve-3d !important;
}
*/
/* Fix for responsive behavior  
@media (max-width: 1024px) {
    .room-info-slide {
        flex: 0 0 calc(100% / 2) !important;
        max-width: calc(100% / 2) !important;
        min-width: calc(100% / 2) !important;
    }
}

@media (max-width: 768px) {
    .room-info-slide {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }
    
    .room-info-content {
        padding: 15px;
    }
    
    .room-info-content h3.room-info-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .room-info-content .room-info {
        font-size: 13px;
    }
    
    .room-info-content .room-price {
        font-size: 14px;
        margin-top: 6px;
    }
}
*/  
/* Room Modal */
.room-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.room-model-information p{
top:unset;
margin-bottom:unset;
}

.room-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.room-modal-dialog {
    position: relative;
    box-sizing: border-box;
    width: 90%;
    max-width: 470px;
    margin: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    padding: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.room-modal-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    gap: 10px;
}
/* Responsive modal adjustments */
@media (max-width: 768px) {
    .room-modal-dialog {
        width: 95%;
        max-width: 400px;
        padding: 8px;
    }
    
    .room-modal-image {
        width: 100%;
        max-width: 100%;
        height: 200px;
        object-fit: cover;
        object-position: center;
    }
    
    .room-modal-image-wrap {
        padding: 12px 24px;
    }
    
    .room-modal-prev,
    .room-modal-next {
        width: 32px!important;
        height: 32px!important;
        font-size: 16px!important;
    }
    
    .room-modal-prev { left: 20px!important; }
    .room-modal-next { right: 20px!important; }
}

@media (max-width: 480px) {
    .room-modal-dialog {
        width: 98%;
        max-width: 350px;
        padding: 6px;
    }
    
    .room-modal-image {
        height: 180px;
        object-fit: cover;
        object-position: center;
    }
    
    .room-modal-image-wrap {
        padding: 8px 16px;
    }
    
    .room-modal-prev,
    .room-modal-next {
        width: 28px!important;
        height: 28px!important;
        font-size: 14px!important;
    }
    
    .room-modal-title {
        font-size: 18px!important;
        margin: 6px 8px 0 8px!important;
    }
    
    .room-modal-content {
        padding: 2px 8px 10px 8px;
    }
    
    .room-modal-row {
        padding: 8px 12px;
        gap: 12px;
    }
    
    .room-features-list li {
        font-size: 13px;
        padding-left: 16px;
        margin-bottom: 4px;
    }
}

.room-modal-close {
    position: absolute!important;
    top: 8px!important;
    right: 10px!important   ;
    width: 36px;
    height: 36px;
    border: none!important;
    border-radius: 50%!important;
    background: transparent!important;
    color: #111111!important; 
    cursor: pointer;
    font-size: 20px!important;
    line-height: 36px!important;
}

.room-modal-title { margin: 8px 10px 0 10px; font-size: 20px; font-weight: 700; }

.room-modal-image-wrap {
    padding: 16px 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-modal-image {
    width: 450px;
    max-width: 100%;
    height: 260px;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
}

.room-modal-prev,
.room-modal-next {
    position: absolute!important;
    top: 50%!important;
    transform: translateY(-50%)!important;
    width: 36px!important;
    height: 36px!important;
    border-radius: 50%!important;
    border: none!important;
    background: rgba(0,0,0,0.55)!important;
    color: #fff!important;
    cursor: pointer!important;
    display: flex!important;
    align-items: center!important;
    justify-content: center!important;
    z-index: 10!important;
}

.room-modal-prev { left: 20px!important; }
.room-modal-next { right: 20px!important; }

.room-modal-content { padding: 4px 12px 14px 12px; }

.room-modal-row {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 10px 16px;
    margin-bottom: 8px;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: space-between;
}

.room-modal-left {
    flex: 1;
    min-width: 0;
}

.room-modal-right {
    flex-shrink: 0;
    text-align: right;
}

.room-modal-list { margin: 10px 0 6px 18px; }

.room-modal-description { 
    font-size: 14px; 
    color: #111827; 
    line-height: 1.6; 
    border-top: 1px solid #e5e7eb;
}

.room-features-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
}

.room-features-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
}

.room-features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #6b7280;
    font-weight: bold;
    font-size: 16px;
}



.room-modal-price {
    margin: 8px 0 6px 0;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

body.room-modal-open {
    overflow: hidden;
}

/* Tour Archive Widget Styles */
.tour-archive-widget {
    position: relative;
}

.tour-grid {
    display: grid !important;
    gap: 30px !important;
    margin-bottom: 30px !important;
    width: 100% !important;
}

/* Grid columns - Elementor responsive controls will handle this */
.tour-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Responsive behavior is now handled by Elementor responsive controls */



/* Sorting Filter Styles */
.tour-sorting-filter {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.tour-sorting-filter label{
   width: 100%!important;
}
.sorting-filter-container {
    grid-column: 1 / -1;
    margin-bottom: 20px;
}

/* Position-based styling */
.sorting-top-left .sorting-filter-container {
    justify-content: flex-start;
}

.sorting-top-center .sorting-filter-container {
    justify-content: center;
}

.sorting-top-right .sorting-filter-container {
    justify-content: flex-end;
}

.sorting-above-grid {
    margin-bottom: 20px;
}

.sorting-below-grid {
    margin-top: 20px;
}

/* Layout-based styling */
.sorting-wrapper.horizontal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sorting-wrapper.vertical {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.sorting-wrapper.dropdown {
    display: flex;
    align-items: center;
}

.sorting-wrapper label {
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}

.sorting-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    min-width: 150px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sorting-select:hover {
    border-color: #007cba;
}

.sorting-select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.2);
}



.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.tour-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tour-card:hover .tour-card-image img {
    transform: scale(1.1);
}

.tour-card-button {
    display: inline-block;
    background: #007cba;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #007cba;
}

.tour-card-button:hover {
    background: #005a87;
    border-color: #005a87;
    color: #fff;
}

/* Pagination Styles */
.tour-pagination {
    text-align: center;
    margin-top: 30px;
}

.load-more-btn {
    background: #007cba;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #005a87;
    transform: translateY(-2px);
}

.pagination-numbers {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.page-link {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.page-link:hover,
.page-link.current {
    background: #007cba;
    color: #fff;
    border-color: #007cba;
}

/* Loading and Error States */
.tour-grid-loading,
.tour-grid-error {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.tour-grid-error {
    color: #d32f2f;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tour-grid {
        gap: 20px;
    }
    
    .tour-card-content {
        padding: 15px;
    }
}

@media (max-width: 767px) {
    .tour-grid {
        gap: 15px;
    }
    
    .tour-card-content {
        padding: 12px;
    }
    
    .tour-card-title {
        font-size: 16px;
    }
    
    .tour-sorting-filter {
        flex-direction: column;
        align-items: stretch;
    }
    
    .sorting-wrapper.horizontal {
        flex-direction: column;
        align-items: stretch;
    }
    
    .sorting-wrapper.vertical {
        align-items: stretch;
    }
    
    .sorting-select {
        width: 100%;
        min-width: auto;
    }
}

/* ==========================================================================
   Additional Elementor Widget Styles
   ========================================================================== */

.tour-label.guests-more {
    background: linear-gradient(112.83deg, rgba(255, 255, 255, 1.00) 0%, rgba(255, 255, 255, 0.00) 100%);
    border-radius: 8px;
    color: #111111;
    padding: 8px 20px;
    white-space: nowrap;
}

/* Tour Card Labels Container */
.tour-card-labels {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

/* Image Wrapper */
.tour-card-image-wrapper {
    position: relative;
    overflow: hidden;
}

/* Image Zoom Effects */
.tour-card.image-zoom-enabled .tour-card-image img {
    transition: transform 0.3s ease;
}

.tour-card.image-zoom-enabled:hover .tour-card-image img {
    transform: scale(1.05);
}

.tour-card.image-zoom-disabled .tour-card-image img {
    transition: none;
}

.tour-card.image-zoom-disabled:hover .tour-card-image img {
    transform: none;
}

/* Hover Animation Classes */
.tour-card.hover-lift:hover {
    transform: translateY(-8px);
}

.tour-card.hover-glow:hover {
    box-shadow: 0 8px 30px rgba(0, 124, 186, 0.3);
}

.tour-card.hover-scale:hover {
    transform: scale(1.02);
}

/* Date Styles */
.tour-card-date.no-upcoming {
    color: #111111;
}



.review-count {
    color: #6c757d;
    font-size: 12px;
}

/* Card Footer */
.tour-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}







/* Pagination Styles */
.tour-pagination {
    text-align: center;
    margin-top: 40px;
}



.pagination-numbers {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}



/* Loading and Error States */
.tour-grid-loading,
.tour-grid-error,
.tour-grid-no-posts {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.tour-grid-loading {
    font-size: 16px;
    font-weight: 500;
}

.tour-grid-error {
    color: #dc3545;
    font-weight: 500;
}

.tour-grid-no-posts {
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tour-card-content {
        padding: 16px;
    }
    
    .tour-card-title {
        font-size: 16px;
    }
    
    .tour-card-excerpt {
        font-size: 13px;
    }
    
    .tour-card-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .tour-card-button {
        text-align: center;
    }
    
    .tour-grid {
        gap: 20px;
    }
    
    .tour-label {
        top: 8px;
        left: 8px;
        padding: 3px 8px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .tour-card-content {
        padding: 12px;
    }
    
    .tour-card-title {
        font-size: 15px;
    }
    
    .tour-card-meta {
        gap: 8px;
    }
    
    .tour-type,
    .tour-guests {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .tour-card-price {
        text-align: center;
    }
    
    .price-amount {
        font-size: 16px;
    }
}
/* Tablet-specific card position overrides */
@media (min-width: 769px) and (max-width: 1024px) {
    .tour-cta-banner.tour-cta-card-tablet-left {
        flex-direction: row-reverse !important;
    }
    
    .tour-cta-banner.tour-cta-card-tablet-left .tour-cta-content {
        text-align: right !important;
    }
    
    .tour-cta-banner.tour-cta-card-tablet-right {
        flex-direction: row !important;
    }
    
    .tour-cta-banner.tour-cta-card-tablet-right .tour-cta-content {
        text-align: left !important;
    }
    
    /* Tablet Top/Bottom positioning */
    .tour-cta-banner.tour-cta-card-tablet-top {
        flex-direction: column !important;
    }
    
    .tour-cta-banner.tour-cta-card-tablet-top .tour-cta-content {
        order: 2 !important;
    }
    
    .tour-cta-banner.tour-cta-card-tablet-top .tour-cta-card-wrapper {
        order: 1 !important;
        margin-bottom: 20px;
    }
    
    .tour-cta-banner.tour-cta-card-tablet-bottom {
        flex-direction: column !important;
    }
    
    .tour-cta-banner.tour-cta-card-tablet-bottom .tour-cta-content {
        order: 1 !important;
    }
    
    .tour-cta-banner.tour-cta-card-tablet-bottom .tour-cta-card-wrapper {
        order: 2 !important;
        margin-top: 20px;
    }
}


/* ==========================================================================
   Tour Breadcrumbs Widget
   ========================================================================== */

   .tour-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-family: inherit;
    line-height: 1.4;
}

.tour-breadcrumbs .location-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #495057;
    margin-right: 0.5rem;
    flex-shrink: 0;
    position: relative;
    overflow: visible;
    min-width: 1rem;
    min-height: 1rem;
}

.tour-breadcrumbs .location-icon i,
.tour-breadcrumbs .location-icon svg {
    font-size: 1rem;
    width: 1rem;
    height: 1rem;
    display: block !important;
    position: relative !important;
    z-index: 1 !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: inherit !important;
}

.tour-breadcrumbs .location-icon svg {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    stroke: currentColor;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}

/* Ensure FontAwesome icons display properly */
.tour-breadcrumbs .location-icon i.fas,
.tour-breadcrumbs .location-icon i.far,
.tour-breadcrumbs .location-icon i.fab {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-style: normal !important;
    font-weight: normal !important;
    line-height: 1 !important;
    text-rendering: auto !important;
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
}

/* Override any conflicting Elementor styles */
.elementor-widget-tour-breadcrumbs .location-icon i {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
}

.tour-breadcrumbs .breadcrumb-item {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1;
}

.tour-breadcrumbs .breadcrumb-text {
    color: #495057;
    font-weight: 500;
}

.tour-breadcrumbs .separator {
    color: #adb5bd;
    font-size: 0.75rem;
    margin: 0 0.5rem;
    font-weight: 400;
}

.tour-breadcrumbs .destination {
    color: #007bff;
    font-weight: 600;
}

.tour-breadcrumbs .tour-type {
    color: #28a745;
    font-weight: 600;
}

.tour-breadcrumbs .min-guests {
    color: #dc3545;
    font-weight: 600;
}

.tour-breadcrumbs-empty {
    background: #f8f9fa;
    border: 1px dashed #dee2e6;
    color: #6c757d;
    font-style: italic;
    text-align: center;
}

/* Hover Effects */
.tour-breadcrumbs:hover {
    background: #e9ecef;
    border-color: #dee2e6;
    transition: all 0.3s ease;
}

.tour-breadcrumbs:hover .breadcrumb-text {
    color: #343a40;
}

.tour-breadcrumbs:hover .location-icon {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tour-breadcrumbs {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        padding: 0.75rem 1rem;
    }
    
    .tour-breadcrumbs .breadcrumb-item {
        margin-bottom: 0.25rem;
    }
    
    .tour-breadcrumbs .separator {
        display: none;
    }
}

@media (max-width: 576px) {
    .tour-breadcrumbs {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .tour-breadcrumbs .location-icon i,
    .tour-breadcrumbs .location-icon svg {
        font-size: 0.875rem;
        width: 0.875rem;
        height: 0.875rem;
    }
}

/* Tour Breadcrumbs - Icon via FontAwesome CSS Content */
.tour-breadcrumbs .breadcrumb-item:first-child .breadcrumb-text.destination::before {
    content: "\f3c5"; /* fa-map-marker-alt */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1rem;
    line-height: 1;
    vertical-align: middle;
    color: #495057;
}

/* Tour Archive Header */
.tour-archive-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 0;
}

.tour-results-title-container {
    flex: 1;
}

.tour-results-title {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.tour-sorting-filter-container {
    flex-shrink: 0;
    margin-left: 2rem;
}

.tour-sorting-filter-container .tour-sorting-filter {
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tour-archive-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .tour-sorting-filter-container {
        margin-left: 0;
        width: 100%;
    }
    
    .tour-results-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tour-results-title {
        font-size: 1.25rem;
    }
}

/* Room Info Slider Header */
.room-info-header {
    margin-bottom: 2rem;
}

.room-info-header-title {
    margin: 0 0 1rem 0;
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.room-info-header-description {
    margin: 0;
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive header adjustments */
@media (max-width: 768px) {
    .room-info-header-title {
        font-size: 1.75rem;
    }
    
    .room-info-header-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .room-info-header-title {
        font-size: 1.5rem;
    }
    
    .room-info-header-description {
        font-size: 0.85rem;
    }
}

/* Tour Booking Form Field Icons */
.tour-booking-form .input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.tour-booking-form .input-with-icon .field-icon {
    position: absolute;
    left: 15px;
    color: #6b7280;
    pointer-events: none;
    z-index: 2;
    font-size: 16px;
}

.tour-booking-form .input-with-icon input,
.tour-booking-form .input-with-icon select,
.tour-booking-form .input-with-icon .guest-selector-display,
.tour-booking-form .input-with-icon .room-selection-btn {
    padding-left: 45px;
}

.tour-booking-form .input-with-icon .guest-selector-display {
    padding-left: 45px;
}

.tour-booking-form .input-with-icon .room-selection-btn {
    padding-left: 45px;
}

/* Responsive adjustments for field icons */
@media (max-width: 768px) {
    .tour-booking-form .input-with-icon .field-icon {
        left: 12px;
        font-size: 14px;
    }
    
    .tour-booking-form .input-with-icon input,
    .tour-booking-form .input-with-icon select,
    .tour-booking-form .input-with-icon .guest-selector-display,
    .tour-booking-form .input-with-icon .room-selection-btn {
        padding-left: 40px;
    }
}

@media (max-width: 480px) {
    .tour-booking-form .input-with-icon .field-icon {
        left: 10px;
        font-size: 12px;
    }
    
    .tour-booking-form .input-with-icon input,
    .tour-booking-form .input-with-icon select,
    .tour-booking-form .input-with-icon .guest-selector-display,
    .tour-booking-form .input-with-icon .room-selection-btn {
        padding-left: 35px;
    }
}

/* Room Selection Modal - Remove borders and status badges */
.room-selection-modal .room-item {
    border: none !important;
    box-shadow: none !important;
}

.room-selection-modal .room-status-badge {
    display: none !important;
}

/* Room Allocation Loading States */
.room-selection-modal .room-list.loading {
    opacity: 0.6;
    pointer-events: none;
}

.allocation-loading {
    background: #f0f8ff;
    border: 1px solid #007cba;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
    color: #007cba;
    font-weight: 500;
}

.allocation-warning {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
    color: #856404;
    font-weight: 500;
}

.allocation-error {
    background: #f8d7da;
    border: 1px solid #dc3545;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
    color: #721c24;
    font-weight: 500;
}

/* ==========================================================================
   Room Selection Loading States
   ========================================================================== */

.room-selection-modal .room-list.loading {
    position: relative;
    opacity: 0.6;
    pointer-events: none;
}

.availability-loading,
.allocation-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 250px;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007cba;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.loading-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.loading-subtext {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Performance optimization: Reduce animations on mobile */
@media (max-width: 768px) {
    .loading-spinner {
        width: 30px;
        height: 30px;
        border-width: 3px;
    }
    
    .availability-loading,
    .allocation-loading {
        padding: 20px;
        min-width: 200px;
    }
    
    .loading-text {
        font-size: 14px;
    }
    
    .loading-subtext {
        font-size: 12px;
    }
}

/* ==========================================================================
   Tour Scroll Animation Widget
   ========================================================================== */

.elementor-widget-tour_scroll_animation .dpx-scroll-animation-empty {
    padding: 40px 20px;
    text-align: center;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    color: #6c757d;
    font-size: 16px;
    font-weight: 500;
}

.elementor-widget-tour_scroll_animation .dpx-scroll-animation-loading {
    padding: 40px 20px;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

.elementor-widget-tour_scroll_animation .dpx-scroll-animation-loading::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #dee2e6;
    border-top: 2px solid #007cba;
    border-radius: 50%;
    animation: dpx-scroll-spin 1s linear infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes dpx-scroll-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.elementor-widget-tour_scroll_animation .dpx-scroll-animation-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ff6b35 0%, #4ecdc4 50%, #ffffff 100%);
}

.elementor-widget-tour_scroll_animation .dpx-scroll-content {
    overflow: hidden;
    width: 100%;
    height: 100%;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.elementor-widget-tour_scroll_animation .dpx-scroll-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.elementor-widget-tour_scroll_animation .dpx-scroll-images-group {
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    gap: 2rem;
    transition: opacity 0.3s ease;
    overflow: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.elementor-widget-tour_scroll_animation .dpx-scroll-images-group::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.elementor-widget-tour_scroll_animation .dpx-scroll-images-group[data-loading="true"] {
    opacity: 0.5;
}

.elementor-widget-tour_scroll_animation .dpx-scroll-images-group[data-loading="true"]::after {
    content: 'Loading animations...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
    z-index: 10;
}

.elementor-widget-tour_scroll_animation .dpx-scroll-image-item {
    position: relative;
    aspect-ratio: 1/1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    /* Optimize for performance */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.elementor-widget-tour_scroll_animation .dpx-scroll-image-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(78, 205, 196, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

/* removed hover styles for scroll widget */

.elementor-widget-tour_scroll_animation .dpx-scroll-image-title {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

/* Enhanced title animations */
.elementor-widget-tour_scroll_animation .dpx-scroll-image-title.fade-in {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
    transition: all 0.6s ease;
}

.elementor-widget-tour_scroll_animation .dpx-scroll-image-title.slide-up {
    opacity: 0;
    transform: translateX(-50%) translateY(50px);
    transition: all 0.6s ease;
}

.elementor-widget-tour_scroll_animation .dpx-scroll-image-title.slide-down {
    opacity: 0;
    transform: translateX(-50%) translateY(-50px);
    transition: all 0.6s ease;
}

.elementor-widget-tour_scroll_animation .dpx-scroll-image-title.scale {
    opacity: 0;
    transform: translateX(-50%) scale(0.8);
    transition: all 0.6s ease;
}

.elementor-widget-tour_scroll_animation .dpx-scroll-image-title.animate-in {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .elementor-widget-tour_scroll_animation .dpx-scroll-images-group {
        gap: 1.5rem;
    }
    
    .elementor-widget-tour_scroll_animation .dpx-scroll-image-title {
        font-size: 14px;
        bottom: -1.5rem;
    }
}

@media (max-width: 768px) {
    .elementor-widget-tour_scroll_animation .dpx-scroll-images-group {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .elementor-widget-tour_scroll_animation .dpx-scroll-image-item {
        width: 60% !important;
        max-width: 200px;
    }
    
    .elementor-widget-tour_scroll_animation .dpx-scroll-image-title {
        position: static;
        transform: none;
        margin-top: 1rem;
        white-space: normal;
        text-align: center;
        font-size: 14px;
        color: #333;
        text-shadow: none;
    }
    
    /* removed hover styles for scroll widget (tablet) */
}

@media (max-width: 480px) {
    .elementor-widget-tour_scroll_animation .dpx-scroll-image-item {
        width: 80% !important;
        max-width: 150px;
    }
    
    .elementor-widget-tour_scroll_animation .dpx-scroll-image-title {
        font-size: 12px;
        margin-top: 0.5rem;
    }
    
    .elementor-widget-tour_scroll_animation .dpx-scroll-images-group {
        gap: 1.5rem;
    }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    .elementor-widget-tour_scroll_animation .dpx-scroll-image-item {
        transition: none;
    }
    
    /* removed hover styles for scroll widget (mobile) */
    
    .elementor-widget-tour_scroll_animation .dpx-scroll-image-title {
        transition: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .elementor-widget-tour_scroll_animation .dpx-scroll-image-item {
        border: 2px solid #000;
    }
    
    .elementor-widget-tour_scroll_animation .dpx-scroll-image-title {
        color: #000;
        text-shadow: none;
        background: rgba(255, 255, 255, 0.9);
        padding: 4px 8px;
        border-radius: 4px;
    }
}

/* Print styles */
@media print {
    .elementor-widget-tour_scroll_animation .dpx-scroll-animation-wrapper {
        background: none !important;
        height: auto !important;
    }
    
    .elementor-widget-tour_scroll_animation .dpx-scroll-images-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .elementor-widget-tour_scroll_animation .dpx-scroll-image-item {
        width: 100% !important;
        max-width: none;
        height: 200px;
        break-inside: avoid;
    }
    
    .elementor-widget-tour_scroll_animation .dpx-scroll-image-title {
        position: static;
        transform: none;
        margin-top: 0.5rem;
        color: #000;
        text-shadow: none;
    }
}

/* ==========================================================================
   Tour Scroll Animation Widget - Exact CodePen Implementation
   ========================================================================== */

.elementor-widget-tour_scroll_animation .dpx-smooth-wrapper {
    /* Basic structure - overflow controlled by Elementor control */
    position: relative;
    display: block;
    /* Default fallback values - will be overridden by Elementor controls */
    width: 100%;
    height: 100vh;
    background: #0e100f;
    overflow: hidden;
    /* Prevent double scroll bars */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.elementor-widget-tour_scroll_animation .dpx-smooth-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.elementor-widget-tour_scroll_animation .dpx-smooth-content {
    /* Basic structure - overflow controlled by Elementor control */
    position: relative;
    display: block;
    /* Default fallback values - will be overridden by Elementor controls */
    width: 100%;
    height: 200vh;
    overflow: visible;
}

.elementor-widget-tour_scroll_animation .dpx-img-group {
    display: flex;
    align-items: flex-start;        /* Changed to flex-start for titles below */
    justify-content: center;
    position: relative;
    width: 100%;
    gap: 20px;
    transform: translate(-50%, -50%);
    will-change: transform;
    backface-visibility: hidden;
}

.elementor-widget-tour_scroll_animation .dpx-img-group.horizontal {
    flex-direction: row;
}

.elementor-widget-tour_scroll_animation .dpx-img-group.vertical {
    flex-direction: column;
}

.elementor-widget-tour_scroll_animation .dpx-scroll-item-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(33.33% - 13.33px); /* 100/3% minus gap compensation */
    margin: 0 10px;                 /* 10px margin on each side = 20px gap */
}

.elementor-widget-tour_scroll_animation .dpx-scroll-item {
    position: relative;
    width: 100%;                    /* Full width of wrapper */
    height: 200px;                  /* Fixed height for images */
    aspect-ratio: 1/1;              /* Maintain square aspect ratio */
    background-repeat: no-repeat;
    background-size: cover;         /* Cover full container */
    background-position: center;    /* Center the image */
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
}

.elementor-widget-tour_scroll_animation .dpx-scroll-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: var(--dpx-overlay-opacity, 0);
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: 20px;
    /* New scroll-based overlay animation - gradually reveals from bottom to top */
    clip-path: polygon(0 calc(100% - var(--overlay-progress, 0) * 100%), 100% calc(100% - var(--overlay-progress, 0) * 100%), 100% 100%, 0% 100%);
}

.elementor-widget-tour_scroll_animation .dpx-scroll-item.scrolled::before,
.elementor-widget-tour_scroll_animation .dpx-scroll-item.overlay-active::before {
    opacity: 1;
}

/* Overlay for titles when moving */
.elementor-widget-tour_scroll_animation .dpx-scroll-item-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: var(--dpx-overlay-opacity, 0);
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
    border-radius: 4px;
}

.elementor-widget-tour_scroll_animation .dpx-scroll-item-title.overlay-active::before {
    opacity: 1;
}

.elementor-widget-tour_scroll_animation .dpx-scroll-item-title {
    position: relative;             /* Changed from absolute to relative */
    color: #fffce1;
    margin-top: 15px;               /* Space between image and title */
    text-align: center;
    display: block;
    font-size: 16px;
    font-weight: 600;
    opacity: 1;                     /* Visible by default - will be controlled by JavaScript */
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
    backface-visibility: hidden;
    transform: translateY(0);       /* At rest */
    z-index: 0;
    width: 100%;                    /* Full width of wrapper */
    /* Scroll-based opacity animation - opacity will be controlled by JavaScript */
}

/* Hide title only while scrolling/moving */
.elementor-widget-tour_scroll_animation .dpx-scroll-item-wrapper.title-hidden .dpx-scroll-item-title {
    opacity: 0;
    transform: translateY(10px);
}

/* Gradient overlay effect for titles */
.elementor-widget-tour_scroll_animation .dpx-scroll-item-title.gradient-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-color, #ffffff);
    opacity: var(--gradient-opacity, 0.9);
    z-index: 1;
    transition: opacity 0.3s ease;
}

/* Gradient directions */
.elementor-widget-tour_scroll_animation .dpx-scroll-item-title.gradient-overlay[style*="--gradient-direction: top"]::before {
    background: linear-gradient(to bottom, var(--gradient-color, #ffffff) 0%, transparent 100%);
}

.elementor-widget-tour_scroll_animation .dpx-scroll-item-title.gradient-overlay[style*="--gradient-direction: bottom"]::before {
    background: linear-gradient(to top, var(--gradient-color, #ffffff) 0%, transparent 100%);
}

.elementor-widget-tour_scroll_animation .dpx-scroll-item-title.gradient-overlay[style*="--gradient-direction: left"]::before {
    background: linear-gradient(to right, var(--gradient-color, #ffffff) 0%, transparent 100%);
}

.elementor-widget-tour_scroll_animation .dpx-scroll-item-title.gradient-overlay[style*="--gradient-direction: right"]::before {
    background: linear-gradient(to left, var(--gradient-color, #ffffff) 0%, transparent 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .elementor-widget-tour_scroll_animation .dpx-img-group {
        width: 90%;
        flex-direction: column;
        gap: 30px;
    }
    
    .elementor-widget-tour_scroll_animation .dpx-scroll-item-wrapper {
        width: 100%;
        margin: 0;
    }
    
    .elementor-widget-tour_scroll_animation .dpx-scroll-item {
        width: 100%;
        height: 150px;
        margin: 0;
    }
    
    .elementor-widget-tour_scroll_animation .dpx-scroll-item-title {
        position: relative;
        margin-top: 10px;
        font-size: 14px;
        opacity: 1;
        color: #fffce1;
    }
}

@media (max-width: 480px) {
    .elementor-widget-tour_scroll_animation .dpx-img-group {
        width: 95%;
        gap: 20px;
    }
    
    .elementor-widget-tour_scroll_animation .dpx-scroll-item-wrapper {
        width: 100%;
        margin: 0;
    }
    
    .elementor-widget-tour_scroll_animation .dpx-scroll-item {
        width: 100%;
        height: 120px;
        margin: 0;
    }
    
    .elementor-widget-tour_scroll_animation .dpx-scroll-item-title {
        font-size: 12px;
        margin-top: 8px;
        opacity: 1;
    }
}

/* Performance optimizations for smooth scrolling */
.elementor-widget-tour_scroll_animation .dpx-img-group,
.elementor-widget-tour_scroll_animation .dpx-scroll-item,
.elementor-widget-tour_scroll_animation .dpx-scroll-item-title {
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
}

/* Smooth scrolling container - only apply contain to content, not wrapper */
.elementor-widget-tour_scroll_animation .dpx-smooth-content {
    contain: layout style paint;
}

/* Hide scroll bars on the widget container to prevent double scroll bars */
.elementor-widget-tour_scroll_animation {
    overflow: hidden !important;
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE and Edge */
}

.elementor-widget-tour_scroll_animation::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
}

/* Hide scroll bars on all child elements */
.elementor-widget-tour_scroll_animation * {
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE and Edge */
}

.elementor-widget-tour_scroll_animation *::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Opera */
}

/* Hide scroll bars on the wrapper */
.elementor-widget-tour_scroll_animation .dpx-scroll-animation-wrapper {
    overflow: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.elementor-widget-tour_scroll_animation .dpx-scroll-animation-wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Smooth scroll body styles when active */
body.smooth-scroll-active {
    overflow: hidden;
    height: 100vh;
    /* Prevent double scroll bars */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

body.smooth-scroll-active::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Prevent double scroll bars on html element when smooth scroll is active */
html.smooth-scroll-active {
    overflow: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

html.smooth-scroll-active::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Individual item smooth movement */
.elementor-widget-tour_scroll_animation .dpx-scroll-item[data-speed] {
    transition: transform 0.1s ease-out;
}

/* removed hover effects */

/* Smooth scroll performance */
.elementor-widget-tour_scroll_animation * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Tour FAQ Widget Styles */
.tour-faq-wrapper {
    font-family: inherit;
}

.tour-faq-title {
    margin: 0 0 20px 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.tour-faq-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tour-faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.tour-faq-item:last-child {
    margin-bottom: 0;
}

.tour-faq-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.tour-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.tour-faq-question:hover {
    background: #e9ecef;
}

.tour-faq-question:focus {
    outline: 2px solid #0073aa;
    outline-offset: -2px;
}

.tour-faq-question-text {
    flex: 1;
    margin: 0 10px;
}

.tour-faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.tour-faq-item.active .tour-faq-icon {
    transform: rotate(180deg);
}

.tour-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
}

.tour-faq-item.active .tour-faq-answer {
    max-height: 1000px;
}

.tour-faq-answer-content {
    padding: 20px;
    line-height: 1.6;
}

.tour-faq-separator {
    height: 1px;
    background: #e0e0e0;
    margin: 0;
}

/* Hover Animations */
.tour-faq-question:hover[data-hover-animation="grow"] {
    transform: scale(1.02);
}

.tour-faq-question:hover[data-hover-animation="shrink"] {
    transform: scale(0.98);
}

.tour-faq-question:hover[data-hover-animation="pulse"] {
    animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tour-faq-title {
        font-size: 22px;
    }
    
    .tour-faq-question {
        padding: 14px 18px;
        font-size: 15px;
    }
    
    .tour-faq-answer-content {
        padding: 18px;
    }
}

@media (max-width: 768px) {
    .tour-faq-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .tour-faq-question {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .tour-faq-answer-content {
        padding: 15px;
    }
    
    .tour-faq-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .tour-faq-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .tour-faq-question {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .tour-faq-answer-content {
        padding: 12px;
        font-size: 14px;
    }
    
    .tour-faq-icon {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 360px) {
    .tour-faq-title {
        font-size: 16px;
    }
    
    .tour-faq-question {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .tour-faq-answer-content {
        padding: 10px;
        font-size: 13px;
    }
}

/* Accessibility */
.tour-faq-question[aria-expanded="true"] {
    background: #e3f2fd;
}

/* Print styles */
@media print {
    .tour-faq-answer {
        max-height: none !important;
        overflow: visible !important;
    }
    
    .tour-faq-item.active .tour-faq-answer {
        max-height: none !important;
    }
}

/* ==========================================================================
   Tour Category Filter Widget
   ========================================================================== */

.tour-category-filter-widget {
    text-align: center;
    padding: 2rem 0;
}

.category-filter-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.category-filter-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.category-filter-container {
    position: relative;
}

.category-filter-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 12px 40px 12px 16px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    position: relative;
}



.category-filter-select option {
    padding: 8px 12px;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-filter-title {
        font-size: 1.5rem;
    }
    
    .category-filter-subtitle {
        font-size: 1rem;
    }
    
    .category-filter-select {
        min-width: 100%;
        max-width: 300px;
    }
}

/* Category Filter Dropdown Icon */
.category-filter-dropdown-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #555555;
    font-size: 12px;
    pointer-events: none;
    z-index: 1;
}

.category-filter-container .input-with-icon {
    position: relative;
    flex: 1;
    min-width: 200px;
}
.custom-dropdown-arrow{
    padding: 10px;
    background-repeat: no-repeat;
    background-position: center;
}
