/* ==========================================
   NEXT TRIP - MASTER STYLESHEET
   ========================================== */

.rt-wrap { font-family: var(--rt-font), sans-serif; box-sizing: border-box; line-height: 1.6; color: var(--rt-text-dark);}
.rt-wrap * { box-sizing: inherit; }

/* ------------------------------------- */
/* SAAS SEARCH BAR */
/* ------------------------------------- */
.rt-top-search-wrap { max-width: 700px; margin: 0 auto 40px auto; background: var(--rt-bg-main); border-radius: 50px; box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08); display: flex; align-items: center; padding: 8px 10px; border: 1px solid var(--rt-border); position: relative; transition: all 0.3s ease;}
.rt-master-search-wrap .rt-top-search-wrap { max-width: 100%; }
.rt-top-search-wrap:focus-within { box-shadow: 0 15px 50px -10px rgba(0, 0, 0, 0.15); border-color: var(--rt-primary); }
.rt-ts-block { padding: 5px 20px; display: flex; align-items: center; gap: 16px; flex: 1; }
.rt-ts-icon { color: var(--rt-primary); display: flex; align-items: center; background: var(--rt-bg-soft); padding: 12px; border-radius: 50%; }
.rt-ts-icon svg { stroke: currentColor; width: 20px !important; height: 20px !important; }
.rt-ts-content { display: flex; flex-direction: column; width: 100%; position: relative;}
.rt-ts-content strong { font-size: 11px; color: var(--rt-text-dark); margin-bottom: 4px; line-height: 1; font-weight: 800; text-transform: uppercase; letter-spacing: 1px;}
.rt-ts-content input { border: none !important; padding: 0 30px 0 0 !important; outline: none !important; font-size: 16px !important; font-weight: 600 !important; color: var(--rt-text-dark) !important; width: 100% !important; background: transparent !important; font-family: inherit !important; margin:0 !important; line-height:1 !important; box-shadow: none !important; min-height: 0 !important; border-radius: 0 !important;}
.rt-ts-content input:focus { border: none !important; outline: none !important; box-shadow: none !important; }
.rt-ts-content input::placeholder { color: var(--rt-text-gray) !important; font-weight: 400 !important; }
.rt-ts-btn { background: var(--rt-primary) !important; color: #fff !important; border: none !important; padding: 16px 36px !important; border-radius: 50px !important; font-weight: 700 !important; font-size: 15px !important; cursor: pointer !important; transition: 0.2s !important; white-space: nowrap !important; box-shadow: none !important; margin: 0 !important; line-height: 1.5 !important;}
.rt-ts-btn:hover { background: var(--rt-primary-hover) !important; }

/* STYLISH RED CLEAR BUTTON */
.rt-clear-btn { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; background: rgba(239, 68, 68, 0.1); color: var(--rt-error); border-radius: 50%; display: none; align-items: center; justify-content: center; cursor: pointer; transition: 0.2s; z-index: 10; }
.rt-clear-btn:hover { background: var(--rt-error); color: #fff; }
.rt-clear-btn svg { width: 12px !important; height: 12px !important; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }

.rt-autocomplete-drop { position: absolute; top: calc(100% + 20px); left: 0; background: var(--rt-bg-main); width: 100%; min-width: 300px; box-shadow: 0 15px 40px rgba(0,0,0,0.12); border-radius: 16px; z-index: 100; display: none; overflow: hidden; border: 1px solid var(--rt-border);}
.rt-ac-item { padding: 12px 20px; cursor: pointer; border-bottom: 1px solid var(--rt-border); transition: 0.2s; display: flex; align-items: center; gap: 12px; }
.rt-ac-item:last-child { border-bottom: none; }
.rt-ac-item:hover { background: var(--rt-bg-soft); }
.rt-ac-img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.rt-ac-icon-box { width: 44px; height: 44px; border-radius: 8px; background: var(--rt-bg-soft); display: flex; align-items: center; justify-content: center; color: var(--rt-primary); flex-shrink: 0;}
.rt-ac-icon-box svg { width: 20px !important; height: 20px !important; }
.rt-ac-text { display: flex; flex-direction: column; }
.rt-ac-title { font-weight: 600; color: var(--rt-text-dark); font-size: 15px; line-height: 1.2; }
.rt-ac-sub { font-size: 12px; color: var(--rt-text-gray); margin-top: 4px; }

/* ------------------------------------- */
/* SAAS SIDEBAR */
/* ------------------------------------- */
.rt-sidebar { width: 280px; flex-shrink: 0; }
.rt-sidebar-block { background: var(--rt-bg-soft); padding: 20px; border-radius: 12px; border: 1px solid var(--rt-border); margin-bottom: 20px; transition: 0.3s; }
.rt-sidebar-block h4 { font-size: 16px; font-weight: 700; margin: 0; color: var(--rt-text-dark); display: flex; justify-content: space-between; align-items: center; cursor: pointer; user-select: none;}
.rt-sidebar-block h4 svg { width: 16px !important; height: 16px !important; stroke: var(--rt-text-gray); transition: transform 0.3s ease; }
.rt-sidebar-block.rt-collapsed h4 svg { transform: rotate(180deg); }
.rt-sidebar-block.rt-collapsed .rt-sb-content { display: none; }
.rt-sb-content { margin-top: 20px; }

.rt-filter-list { display: flex; flex-direction: column; }
.rt-filter-list .rt-custom-cb:nth-child(n+6) { display: none; }
.rt-filter-list.rt-expanded .rt-custom-cb:nth-child(n+6) { display: flex; animation: rtFadeIn 0.3s ease; }

.rt-custom-cb { display: flex; align-items: center; cursor: pointer; font-size: 14px; color: var(--rt-text-dark); font-weight: 500; margin-bottom: 14px; user-select: none; transition: 0.2s;}
.rt-custom-cb:hover { color: var(--rt-primary); }
.rt-custom-cb input { position: absolute !important; opacity: 0 !important; cursor: pointer !important; height: 0 !important; width: 0 !important; margin: 0 !important; padding: 0 !important;}
.rt-cb-mark { height: 20px; width: 20px; background-color: var(--rt-bg-main); border: 1px solid var(--rt-border); border-radius: 4px; margin-right: 12px; display: flex; align-items: center; justify-content: center; transition: 0.2s;}
.rt-custom-cb:hover input ~ .rt-cb-mark { border-color: var(--rt-primary); }
.rt-custom-cb input:checked ~ .rt-cb-mark { background-color: var(--rt-primary); border-color: var(--rt-primary); }
.rt-cb-mark::after { content: ""; display: none; width: 4px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); margin-bottom: 2px;}
.rt-custom-cb input:checked ~ .rt-cb-mark::after { display: block; }

.rt-see-more { color: var(--rt-primary); font-size: 13px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 4px; margin-top: 5px; user-select: none; }
.rt-see-more:hover { color: var(--rt-primary-hover); }
.rt-see-more svg { width: 12px !important; height: 12px !important; }

/* Price UI - FULL WIDTH DUAL SLIDER WITH PERFECT CENTERING */
.rt-dual-slider-wrap { position: relative; width: 100%; height: 6px; background: var(--rt-border); border-radius: 4px; margin-top: 15px; margin-bottom: 25px; }
.rt-slider-track { position: absolute; height: 100%; background: var(--rt-primary); border-radius: 4px; top: 0; bottom: 0; z-index: 1;}
.rt-price-slider-min, .rt-price-slider-max { position: absolute !important; top: -6px; left: 0; width: 100% !important; height: 18px !important; outline: none !important; z-index: 2; -webkit-appearance: none; pointer-events: none; background: transparent !important; margin: 0 !important; border: none !important;}
.rt-price-slider-min::-webkit-slider-thumb, .rt-price-slider-max::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--rt-primary); cursor: pointer; pointer-events: auto; position: relative; border: 2px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.3);}
.rt-price-slider-min::-moz-range-thumb, .rt-price-slider-max::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--rt-primary); cursor: pointer; pointer-events: auto; border: 2px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.3); border: none;}

.rt-price-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 15px; }
.rt-price-input-box { border: 1px solid var(--rt-border); border-radius: 8px; padding: 8px 10px; display: flex; flex-direction: column; background: var(--rt-bg-main); overflow: hidden;}
.rt-price-input-box label { font-size: 13px; color: var(--rt-text-gray); font-weight: 600; margin-bottom: 4px; line-height: 1.2; }
.rt-price-input-box input { border: none !important; width: 100% !important; min-width: 0 !important; outline: none !important; padding: 0 !important; font-size: 16px !important; font-weight: 600 !important; color: var(--rt-text-dark) !important; background: transparent !important; font-family: inherit !important; box-shadow: none !important; margin: 0 !important; min-height: 0 !important; border-radius: 0 !important; text-align: left !important;}
.rt-price-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 20px;}
.rt-price-clear { color: var(--rt-text-gray); font-size: 14px; font-weight: 600; text-decoration: none; transition:0.2s;}
.rt-price-clear:hover { color: var(--rt-text-dark); }
.rt-price-apply { background: var(--rt-bg-main) !important; color: var(--rt-primary) !important; border: 1px solid var(--rt-primary) !important; padding: 8px 24px !important; border-radius: 50px !important; font-weight: 600 !important; font-size: 14px !important; cursor: pointer !important; transition: 0.2s !important; box-shadow: none !important; line-height: 1.5 !important; margin: 0 !important;}
.rt-price-apply:hover { background: var(--rt-primary) !important; color: #fff !important;}

/* ------------------------------------- */
/* GRID LAYOUT & CARDS */
/* ------------------------------------- */
.rt-grid-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; color: var(--rt-text-gray); font-size: 15px; }
.rt-grid-sort { display: flex; align-items: center; gap: 8px; }
.rt-col-btn { width: 34px; height: 34px; border-radius: 6px; border: 1px solid var(--rt-border); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--rt-text-gray); background: var(--rt-bg-main); transition: 0.2s; }
.rt-col-btn svg { width: 18px !important; height: 18px !important; stroke: currentColor; fill: none; }
.rt-col-btn:hover { border-color: var(--rt-border); color: var(--rt-text-dark); }
.rt-col-btn.active { border-color: var(--rt-primary); color: var(--rt-primary); background: var(--rt-bg-soft); }

.rt-grid { display: grid; gap: 16px; transition: 0.3s ease;} 
.rt-grid[data-cols="2"] { grid-template-columns: repeat(2, 1fr); }
.rt-grid[data-cols="3"] { grid-template-columns: repeat(3, 1fr); }
.rt-grid[data-cols="4"] { grid-template-columns: repeat(4, 1fr); }

.rt-card { background: var(--rt-bg-main); border: 1px solid var(--rt-border); border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; transition: transform 0.2s ease, box-shadow 0.2s ease; cursor: pointer; }
.rt-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.06); }
.rt-card-img { width: 100%; aspect-ratio: 4/3; position: relative; overflow: hidden; }

.rt-carousel { position: relative; width: 100%; height: 100%; overflow: hidden; display: flex;}
.rt-carousel-track { display: flex; width: 100%; height: 100%; transition: transform 0.3s ease-in-out; }
.rt-carousel-track img { width: 100%; height: 100%; object-fit: cover; flex-shrink: 0; }
.rt-car-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.4); color: #fff; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 14px; opacity: 0; transition: 0.2s; z-index: 10; border: none; }
.rt-card:hover .rt-car-arrow { opacity: 1; }
.rt-car-arrow:hover { background: rgba(0,0,0,0.7); }
.rt-car-prev { left: 10px; }
.rt-car-next { right: 10px; }

/* DESIGN EDIT: FORCED BLACK & WHITE BADGE */
.rt-badge { position: absolute; top: 12px; left: 12px; background: #000000 !important; color: #ffffff !important; padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; z-index: 10; backdrop-filter: blur(4px);}

.rt-card-dots { position: absolute; bottom: 12px; left: 0; width: 100%; display: flex; justify-content: center; gap: 5px; z-index: 10;}
.rt-card-dots span { width: 6px; height: 6px; background: rgba(255,255,255,0.5); border-radius: 50%; display: block; cursor: pointer; transition: 0.2s;}
.rt-card-dots span.active { background: #fff; transform: scale(1.2);}

.rt-card-body { padding: 16px; display: flex; flex-direction: column; flex-grow: 1; }
.rt-card-title { font-size: 15px; font-weight: 700; margin: 0 0 6px 0; color: var(--rt-text-dark); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.rt-card-meta { font-size: 13px; color: var(--rt-text-gray); margin-bottom: 12px; }

/* DESIGN EDIT: FORCED BLACK PRICING */
.rt-card-price { font-size: 13px; color: var(--rt-text-gray); margin-top: auto; white-space: nowrap; }
.rt-card-price strong { font-weight: 700; color: #000000 !important; font-size: 15px; }

/* Pagination Styles */
.rt-pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 40px; width: 100%; grid-column: 1/-1;}
.rt-page-btn { display: flex; align-items: center; justify-content: center; width: 40px !important; height: 40px !important; border-radius: 8px !important; border: 1px solid var(--rt-border) !important; background: var(--rt-bg-main) !important; color: var(--rt-text-dark) !important; font-weight: 600 !important; font-size: 15px !important; cursor: pointer !important; transition: 0.2s !important; user-select: none !important; text-decoration: none !important; padding: 0 !important; box-shadow: none !important; line-height: 1 !important;}
.rt-page-btn:hover { background: var(--rt-primary-hover) !important; color: #fff !important; border-color: var(--rt-primary-hover) !important; }
.rt-page-btn.active { background: var(--rt-primary) !important; color: #fff !important; border-color: var(--rt-primary) !important; }
.rt-page-btn[disabled] { opacity: 0.5; cursor: not-allowed; pointer-events: none;}

@keyframes rtFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ------------------------------------- */
/* SINGLE TOUR PAGE */
/* ------------------------------------- */
.rt-gallery-wrap { display: grid; grid-template-columns: 50% 25% 25%; grid-template-rows: 192px 192px; gap: 10px; border-radius: 16px; overflow: hidden; margin-bottom: 20px; position: relative;}
.rt-gal-hero { grid-row: span 2; width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: opacity 0.2s;}
.rt-gal-thumb { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: opacity 0.2s;}
.rt-gal-hero:hover, .rt-gal-thumb:hover, .rt-gal-overlay-box:hover { opacity: 0.9; }
.rt-gal-overlay-box { position: relative; cursor: pointer; }
.rt-gal-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; flex-direction: column; font-size: 16px;}
.rt-lightbox { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 999999; align-items: center; justify-content: center; backdrop-filter: blur(5px);}
.rt-lightbox.active { display: flex; }
.rt-lb-close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 40px; cursor: pointer; opacity: 0.7; transition: 0.2s; line-height: 1;}
.rt-lb-close:hover { opacity: 1; }
.rt-lb-prev, .rt-lb-next { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 30px; background: rgba(255,255,255,0.1); width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; user-select: none; z-index: 10;}
.rt-lb-prev:hover, .rt-lb-next:hover { background: rgba(255,255,255,0.2); }
.rt-lb-prev { left: 30px; }
.rt-lb-next { right: 30px; }
.rt-lb-counter { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 15px; font-weight: 600; background: rgba(0,0,0,0.5); padding: 5px 15px; border-radius: 20px; letter-spacing: 2px;}

/* --- NEW PREMIUM LIGHTBOX SLIDER --- */
.rt-lb-track-wrap { width: 85%; height: 85vh; overflow: hidden; position: relative; display: flex; align-items: center; }
.rt-lb-track { display: flex; height: 100%; width: 100%; transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); will-change: transform; }
.rt-lb-slide-img { width: 100%; height: 100%; object-fit: contain; flex-shrink: 0; user-select: none; }

.rt-quick-info { display: flex; flex-wrap: wrap; gap: 20px; margin: 20px 0 25px 0; }
.rt-info-item { display: flex; align-items: center; gap: 15px; }
.rt-icon-box { width: 48px; height: 48px; border: 1px solid var(--rt-border); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--rt-primary); }
.rt-info-text strong { display: block; font-size: 15px; color: var(--rt-text-dark); font-weight: 700; margin-bottom: 2px; line-height: 1.2;}
.rt-info-text span { font-size: 14px; color: var(--rt-text-gray); }
.rt-page-nav { display: flex; gap: 25px; border-bottom: 1px solid var(--rt-border); margin-bottom: 20px; position: sticky; top: 0; background: var(--rt-bg-main); z-index: 100; padding: 10px 0 0 0; overflow-x: auto; white-space: nowrap; -webkit-overflow-scrolling: touch; -ms-overflow-style: none; scrollbar-width: none;}
.rt-page-nav::-webkit-scrollbar { display: none; }
.rt-page-nav a { text-decoration: none; color: var(--rt-text-gray); font-weight: 600; font-size: 14px; padding-bottom: 15px; border-bottom: 2px solid transparent; transition: 0.2s; flex-shrink: 0;}
.rt-page-nav a:hover, .rt-page-nav a.active { color: var(--rt-text-dark); border-bottom-color: var(--rt-text-dark); }
.rt-layout { display: flex; gap: 30px; align-items: flex-start; position: relative;}
.rt-grid-container { flex: 1; min-width: 0; } 
.rt-single-section { margin-bottom: 35px; padding-top: 15px; scroll-margin-top: 80px;}
.rt-single-section h2 { font-size: 22px; font-weight: 700; margin-bottom: 15px; border-bottom: 1px solid var(--rt-border); padding-bottom: 10px;}
.rt-single-section ul li svg { width: 18px !important; height: 18px !important; }

.rt-timeline { list-style: none; padding: 0; margin: 0 0 0 16px; position: relative; }
.rt-timeline::before { content: ''; position: absolute; top: 0; bottom: 0; left: 15px; width: 2px; background: var(--rt-border); z-index: 1;}
.rt-timeline-item { position: relative; padding-left: 50px; margin-bottom: 15px; }

.rt-timeline-circle { position: absolute; left: 0; top: 15px; width: 32px; height: 32px; border-radius: 50%; background: var(--rt-bg-main); border: 2px solid var(--rt-border); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: var(--rt-text-dark); z-index: 2; box-shadow: 0 0 0 6px var(--rt-bg-main);}

.rt-timeline-content { border: 1px solid var(--rt-border); border-radius: 12px; padding: 20px; background: var(--rt-bg-main); box-shadow: 0 2px 10px rgba(0,0,0,0.02);}
.rt-timeline-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; gap: 15px;}
.rt-timeline-title { font-size: 16px; font-weight: 700; margin: 0; color: var(--rt-text-dark); }
.rt-timeline-time { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--rt-text-gray); white-space: nowrap; flex-shrink: 0;}
.rt-timeline-time svg { width: 14px !important; height: 14px !important; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none;}

.rt-timeline-desc { color: var(--rt-text-dark); font-size: 15px; margin: 0 0 15px 0; line-height: 1.6;}

.rt-btn-map { display: inline-flex; align-items: center; gap: 6px; background: var(--rt-text-dark); color: #fff !important; padding: 8px 14px; border-radius: 6px; font-size: 13px; text-decoration: none; font-weight: 600; transition: 0.2s;}
.rt-btn-map:hover { background: var(--rt-primary-hover); color: #fff !important;}
.rt-btn-map svg { width: 14px !important; height: 14px !important; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round;}
.rt-sidebar-wrap { width: 360px; flex-shrink: 0; position: sticky; top: 40px; }
.rt-widget { background: var(--rt-bg-main); border: 1px solid var(--rt-border); border-radius: 16px; padding: 20px; box-shadow: 0 12px 35px rgba(0,0,0,0.06); }
.rt-price-box { background: var(--rt-bg-soft); padding: 15px; border-radius: 12px; margin-bottom: 20px; border: 1px solid var(--rt-border); }
.rt-price-box h3 { margin: 0; font-size: 26px; font-weight: 600; color: var(--rt-text-dark); display: flex; align-items: baseline; gap: 8px;}
.rt-widget-lbl { display: block; font-size: 16px; font-weight: 700; margin-bottom: 12px;}
.rt-input-wrap { position: relative; margin-bottom: 15px; }
.rt-dropdown-trigger { display: flex; align-items: center; justify-content: space-between; border: 1px solid var(--rt-border); border-radius: 8px; padding: 14px 16px; background: var(--rt-bg-main); cursor: pointer; font-size: 15px; font-weight: 500; color: var(--rt-text-dark); transition: border-color 0.2s;}
.rt-dropdown-trigger:hover { border-color: var(--rt-text-gray); }
.rt-dropdown-trigger svg { width: 16px !important; height: 16px !important; stroke: var(--rt-text-gray); flex-shrink: 0;}

/* RESTORED: Clickable Date/Time Picker CSS reset */
.rt-dropdown-trigger input[type="date"], .rt-dropdown-trigger input[type="time"], .rt-dropdown-trigger input[type="text"][readonly] { border: none !important; outline: none !important; font-family: inherit !important; font-size: 15px !important; font-weight: 500 !important; color: var(--rt-text-dark) !important; width: 100% !important; background: transparent !important; margin-left: 10px !important; cursor: pointer !important; -webkit-appearance: none !important; appearance: none !important; box-shadow: none !important; padding: 0 !important; }

/* FORTIFIED TRAVELERS PANEL */
.rt-wrap .rt-travelers-panel { display: none; position: absolute; top: calc(100% + 8px); left: 0; width: 100%; background: var(--rt-bg-main) !important; border: 1px solid var(--rt-border) !important; border-radius: 12px !important; padding: 15px !important; box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important; z-index: 100; }
.rt-wrap .rt-travelers-panel.active { display: block; animation: rtFadeIn 0.2s ease; }
.rt-wrap .rt-traveler-row { display: flex !important; justify-content: space-between !important; align-items: center !important; margin-bottom: 20px !important; background: transparent !important; border: none !important;}
.rt-wrap .rt-traveler-row h4 { margin: 0 0 4px 0 !important; font-size: 15px !important; color: var(--rt-text-dark) !important; font-weight: 600 !important; line-height: 1.2 !important; border: none !important;}
.rt-wrap .rt-traveler-row p { margin: 0 !important; font-size: 12px !important; color: var(--rt-text-gray) !important; line-height: 1.2 !important; border: none !important;}
.rt-wrap .rt-counter-ui { display: flex !important; align-items: center !important; gap: 15px !important; border: none !important;}

/* RESTORED: SVG COUNTER BUTTONS */
.rt-wrap .rt-counter-btn { width: 32px !important; height: 32px !important; border-radius: 50% !important; border: 1px solid var(--rt-border) !important; background: var(--rt-bg-main) !important; display: flex !important; align-items: center !important; justify-content: center !important; cursor: pointer !important; color: var(--rt-text-dark) !important; transition: 0.2s !important; padding: 0 !important; box-shadow: none !important; min-height: 0 !important; line-height: 1 !important;}
.rt-wrap .rt-counter-btn:hover { background: var(--rt-text-dark) !important; color: #fff !important; border-color: var(--rt-text-dark) !important; }
.rt-wrap .rt-counter-btn svg { width: 16px !important; height: 16px !important; stroke: var(--rt-text-dark) !important; stroke-width: 2 !important; stroke-linecap: round !important; stroke-linejoin: round !important; transition: 0.2s !important; fill: none !important; margin:0 !important; padding:0 !important;}
.rt-wrap .rt-counter-btn:hover svg { stroke: #fff !important; }

.rt-wrap .rt-counter-val { font-size: 16px !important; font-weight: 700 !important; width: 20px !important; text-align: center !important; color: var(--rt-text-dark) !important; background: transparent !important; border: none !important;}

.rt-wrap .rt-btn-apply { width: 100% !important; background: var(--rt-primary) !important; color: #fff !important; padding: 12px !important; border-radius: 8px !important; border: none !important; font-weight: 700 !important; font-size: 15px !important; cursor: pointer !important; transition: 0.2s !important; line-height: 1.5 !important; margin: 0 !important; box-shadow: none !important;}
.rt-wrap .rt-btn-apply:hover { background: var(--rt-primary-hover) !important; color: #fff !important;}

.rt-btn-book { width: 100%; padding: 12px; background: var(--rt-text-dark); color: #fff; border-radius: 8px; border: none; font-size: 16px; font-weight: 700; cursor: pointer; transition: 0.2s; margin-top: 5px; }
.rt-btn-book:hover { background: var(--rt-primary); }

.rt-modern-input-wrap { position: relative; margin-bottom: 15px; }
.rt-input-icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--rt-text-gray); display: flex; align-items: center; justify-content: center; pointer-events: none; transition: 0.3s; z-index: 5; }
.rt-input-icon svg { width: 18px !important; height: 18px !important; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.rt-widget input.rt-modern-input, .rt-widget textarea.rt-modern-input { width: 100% !important; border: 1px solid var(--rt-border) !important; border-radius: 8px !important; padding: 14px 15px 14px 15px !important; font-family: inherit !important; font-size: 14px !important; background: var(--rt-bg-soft) !important; color: var(--rt-text-dark) !important; outline: none !important; transition: all 0.3s ease !important; box-sizing: border-box !important; margin: 0 !important; box-shadow: none !important; height: auto !important; line-height: 1.5 !important; }
.rt-widget input.rt-modern-input:focus, .rt-widget textarea.rt-modern-input:focus { background: var(--rt-bg-main) !important; border-color: var(--rt-primary) !important; box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15) !important; }
.rt-widget textarea.rt-modern-input { min-height: 100px !important; resize: none !important; }

.rt-step3-header { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 600; margin-bottom: 20px; color: var(--rt-text-dark); }
.rt-modern-summary { background: var(--rt-bg-soft); padding: 20px; margin-bottom: 20px; border-radius: 12px; font-size: 14px; border: 1px solid var(--rt-border); line-height: 1.6; position: relative; overflow: hidden; }
.rt-modern-summary::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--rt-primary); border-radius: 4px 0 0 4px; }

.rt-step { display: none; animation: rtFadeIn 0.3s ease; }
.rt-step.active { display: block; }

/* --- PAYMENT SELECTION OPTIONS --- */
.rt-payment-selection { margin: 25px 0 20px 0; border-top: 1px dashed var(--rt-border); padding-top: 20px; }
.rt-pay-options { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.rt-pay-option { cursor: pointer; display: block; }
.rt-pay-option input { position: absolute; opacity: 0; cursor: pointer; height: 0; width: 0; }
.rt-pay-box { border: 2px solid var(--rt-border); border-radius: 12px; padding: 15px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; background: var(--rt-bg-main); transition: all 0.2s ease; color: var(--rt-text-gray); }
.rt-pay-box svg { width: 28px !important; height: 28px !important; stroke: currentColor; }
.rt-pay-box span { font-size: 14px; font-weight: 600; }
.rt-pay-option:hover .rt-pay-box { border-color: var(--rt-primary-hover); color: var(--rt-primary-hover); }
.rt-pay-option input:checked ~ .rt-pay-box { border-color: var(--rt-primary); background: var(--rt-bg-soft); color: var(--rt-primary); box-shadow: 0 4px 15px rgba(0,0,0,0.05); }

.rt-trust-badges { display: flex; justify-content: space-between; align-items: center; background: var(--rt-bg-soft); border-radius: 12px; padding: 25px 40px; margin-top: 35px; text-align: center; flex-wrap: wrap; gap: 20px; border: 1px solid var(--rt-border);}
.rt-trust-item { flex: 1; min-width: 180px; display: flex; flex-direction: column; align-items: center; gap: 15px;}
.rt-trust-item svg { color: #000000 !important; stroke: #000000 !important; width: 36px !important; height: 36px !important; }
.rt-trust-item strong { display: block; font-size: 15px; color: var(--rt-text-dark); font-weight: 600;}

/* --- MOBILE RESPONSIVE TWEAKS --- */
@media (max-width: 767px) {
    .rt-wrap { margin-top: 15px !important; }
    .rt-single-section { margin-bottom: 25px !important; padding-top: 10px !important; }
    
    /* FIX: Solid 2-row layout for mobile image gallery to remove the phantom gap */
    .rt-gallery-wrap { margin-bottom: 15px !important; grid-template-rows: 120px 120px !important; gap: 5px !important; }
    .rt-quick-info { margin: 10px 0 20px 0 !important; }
    
    /* FIX: Mobile overlay text scaling and spacing */
    .rt-gal-overlay { font-size: 13px !important; padding: 5px !important; text-align: center !important; line-height: 1.3 !important; }
    .rt-gal-overlay span { margin-bottom: 2px !important; }
    
    .rt-layout { gap: 20px !important; flex-direction: column; }
    
    /* SEARCH BAR FIX - 2 ROWS, NO BLACK BORDER, COMPACT & MODERN */
    .rt-top-search-wrap {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-bottom: 25px;
        gap: 10px;
    }
    .rt-top-search-wrap:focus-within {
        box-shadow: none;
        border-color: transparent;
    }
    .rt-ts-block {
        width: 100%;
        border-radius: 12px;
        border: 1px solid var(--rt-border);
        background: var(--rt-bg-main);
        padding: 10px 15px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.04);
        gap: 12px;
    }
    .rt-ts-content input, .rt-ts-content input:focus {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
    .rt-ts-btn {
        width: 100%;
        border-radius: 12px !important;
        padding: 14px !important;
        margin: 0 !important;
    }

    /* FILTER SIDEBAR - REDUCED SPACING FOR FAST SCROLLING */
    .rt-sidebar { width: 100%; display: flex; flex-direction: column; gap: 10px; }
    .rt-sidebar-block {
        padding: 12px 15px;
        margin-bottom: 0;
        border-radius: 10px;
    }
    .rt-sidebar-block h4 { font-size: 15px; }
    .rt-sb-content { margin-top: 12px; }
    .rt-custom-cb { margin-bottom: 10px; font-size: 13px; }
    .rt-see-more { margin-top: 0; }
    .rt-price-slider { margin-bottom: 15px !important; }
    .rt-dual-slider-wrap { margin-top: 10px; margin-bottom: 20px; }
    .rt-price-inputs { gap: 8px; margin-bottom: 10px; }
    .rt-price-input-box { padding: 6px 10px; border-radius: 6px; }
    .rt-price-input-box label { font-size: 10px; margin-bottom: 2px; }
    .rt-price-input-box input { font-size: 13px !important; }
    .rt-price-actions { margin-top: 12px; }
    .rt-price-apply { padding: 6px 20px !important; font-size: 13px !important; }
    
    /* FIX: Hide the Layout Switcher and Force 1 Column on Mobile */
    .rt-grid-sort { display: none !important; }
    .rt-grid[data-cols] { grid-template-columns: 1fr !important; }
    
    .rt-sidebar-wrap { width: 100%; position: static;}
}

@media (max-width: 992px) and (min-width: 768px) {
    .rt-layout { flex-direction: column; gap: 20px;}
    .rt-sidebar-wrap { width: 100%; position: static;}
    .rt-sidebar { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .rt-gallery-wrap { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 80px 80px; height: auto; margin-bottom: 20px;}
    .rt-gal-hero { grid-column: span 2; grid-row: 1; }
}

/* --- TOUR TIME SLOT SELECTION --- */
.rt-slot-option input:checked ~ .rt-slot-box { border-color: var(--rt-primary) !important; background: var(--rt-bg-soft) !important; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.rt-slot-option input:checked ~ .rt-slot-box span { color: var(--rt-primary) !important; }
.rt-slot-option:hover .rt-slot-box { border-color: var(--rt-primary-hover); }

/* --- CUSTOM DATE PICKER CALENDAR --- */
.rt-cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; font-weight: 700; color: var(--rt-text-dark); font-size: 15px; }
.rt-cal-nav { cursor: pointer; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 6px; background: var(--rt-bg-soft); transition: 0.2s; }
.rt-cal-nav:hover { background: var(--rt-border); }
.rt-cal-nav svg { stroke: var(--rt-text-dark); }
.rt-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; text-align: center; }
.rt-cal-day-name { font-size: 12px; font-weight: 600; color: var(--rt-text-gray); margin-bottom: 8px; }
.rt-cal-date { cursor: pointer; padding: 8px 0; font-size: 14px; font-weight: 500; border-radius: 6px; transition: 0.2s; color: var(--rt-text-dark); border: 1px solid transparent; user-select: none;}
.rt-cal-date:hover { border-color: var(--rt-primary); color: var(--rt-primary); }
.rt-cal-date.active { background: var(--rt-primary); color: #fff; font-weight: 700; border-color: var(--rt-primary); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.rt-cal-date.disabled { color: #cbd5e1; pointer-events: none; cursor: not-allowed; }