/* ==========================================
   RONSTECH TOURS - 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-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; height: 20px; }
.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 !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::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; }

.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-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; height: 16px; 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); }

/* Price UI */
.rt-price-slider { width: 100% !important; accent-color: var(--rt-primary) !important; margin-bottom: 20px !important; cursor: pointer !important; border: none !important; padding: 0 !important; box-shadow: none !important; background: transparent !important;}
.rt-price-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
.rt-price-input-box { border: 1px solid var(--rt-border); border-radius: 8px; padding: 8px 12px; display: flex; flex-direction: column; background: var(--rt-bg-main);}
.rt-price-input-box label { font-size: 11px; color: var(--rt-text-gray); font-weight: 600; margin-bottom: 4px; }
.rt-price-input-box div { display: flex; align-items: center; gap: 4px; font-size: 14px; color: var(--rt-text-dark); font-weight: 500;}
.rt-price-input-box input { border: none !important; width: 100% !important; outline: none !important; padding: 0 !important; font-size: 14px !important; font-weight: 500 !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; height: 18px; 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; }

.rt-badge { position: absolute; top: 12px; left: 12px; background: rgba(17,17,17,0.85); color: #fff; 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; }
.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: var(--rt-text-dark); 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;}
.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-img { max-width: 85%; max-height: 85vh; object-fit: contain; user-select: none; }
.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;}
.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; 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-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; }

/* UPGRADED: Timeline Numbers are now completely dark */
.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; height: 14px; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none;}

/* UPGRADED: Timeline Descriptions are now completely dark and legible */
.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; height: 14px; 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 { stroke: var(--rt-text-gray); flex-shrink: 0;}
.rt-dropdown-trigger input[type="date"], .rt-dropdown-trigger select { border: none; outline: none; font-family: inherit; font-size: 15px; font-weight: 500; color: var(--rt-text-dark); width: 100%; background: transparent; margin-left: 10px; cursor: pointer; -webkit-appearance: none; appearance: none;}

/* FORTIFIED TRAVELERS PANEL - MAXIMUM SPECIFICITY */
.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;}

/* Shield the + / - 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;}
.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;}

/* Shield the Apply Button (Mapped to Global Primary Color) */
.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-info-box { background: var(--rt-bg-soft); border: 1px solid var(--rt-border); padding: 15px; border-radius: 8px; margin-top: 20px; font-size: 13px; color: var(--rt-success); display: flex; align-items: flex-start; gap: 10px;}
.rt-info-box svg { flex-shrink: 0; margin-top: 2px; }
.rt-info-box.blue { background: var(--rt-bg-soft); border: 1px solid var(--rt-border); color: var(--rt-primary); margin-top: 10px;}
.rt-info-box strong { display: block; font-size: 14px; margin-bottom: 2px;}

.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); width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; pointer-events: none; transition: 0.3s; z-index: 5; }
.rt-input-icon svg { width: 100%; height: 100%; 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 46px !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-modern-input-wrap:focus-within .rt-input-icon { color: var(--rt-primary); transform: scale(1.1) translateY(-45%); }
.rt-widget textarea.rt-modern-input { padding-top: 14px !important; 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; }
.rt-slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 10px; margin-bottom: 20px; }
.rt-slot-card { background: var(--rt-bg-main); border: 1px solid var(--rt-border); border-radius: 8px; padding: 12px 10px; text-align: center; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--rt-text-dark); transition: 0.2s; user-select: none; }
.rt-slot-card:hover { border-color: var(--rt-text-gray); }
.rt-slot-card.active { background: var(--rt-text-dark); color: #fff; border-color: var(--rt-text-dark); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.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: var(--rt-success); width: 36px; height: 36px; }
.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; }
    .rt-gallery-wrap { margin-bottom: 15px !important; grid-template-rows: 140px 70px 70px !important; gap: 5px !important; }
    .rt-quick-info { margin: 15px 0 20px 0 !important; gap: 15px !important; }
    .rt-trust-badges { margin-top: 25px !important; padding: 20px 15px !important; gap: 15px !important; }
    .rt-related-wrap { margin-top: 30px !important; padding-top: 20px !important; border-top: 1px solid var(--rt-border); }
    .rt-related-title { margin-bottom: 20px !important; font-size: 20px !important; }
    .rt-layout { gap: 25px !important; flex-direction: column; }
    .rt-timeline { margin-left: 0 !important; }
    .rt-timeline-item { padding-left: 44px !important; }
    .rt-timeline-content { padding: 15px !important; }
    
    .rt-top-search-wrap { border-radius: 20px; padding: 15px; background: transparent; box-shadow: none; border: none; margin-bottom: 20px; }
    .rt-ts-block { padding: 15px; background: var(--rt-bg-main); border-radius: 12px; width: 100%; border: 1px solid var(--rt-border); box-shadow: 0 4px 15px rgba(0,0,0,0.05);}
    .rt-ts-btn { width: 100%; border-radius: 12px; padding: 16px; margin-top: 10px;}
    
    .rt-grid[data-cols] { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
    .rt-sidebar-wrap { width: 100%; position: static;}
    .rt-sidebar { width: 100%; }
}

@media (max-width: 992px) and (min-width: 768px) {
    .rt-layout { flex-direction: column; gap: 20px;}
    .rt-page-nav { display: none !important; }
    .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; }
    .rt-lb-prev { left: 10px; } .rt-lb-next { right: 10px; }
    .rt-single-section { margin-bottom: 25px; }
    .rt-trust-badges { margin-top: 25px; padding: 15px; }
    .rt-grid[data-cols] { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
    .rt-car-arrow { opacity: 1; } 
}