/* Форма поиска */
#tv-search { background:#f9f9f9; padding:30px; border-radius:8px; margin-bottom:30px; }
.tv-form-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:20px; }
#tv-form label { display:block; font-weight:500; margin-bottom:5px; }
#tv-form select, #tv-form input { padding:10px; border:1px solid #ddd; border-radius:4px; width:100%; font-size:14px; }
.tv-submit-btn { background:#ff6b00; color:#fff; border:0; padding:14px 40px; border-radius:4px; cursor:pointer; font-size:16px; font-weight:600; width:100%; }
.tv-submit-btn:hover { background:#ff8c42; }

/* Прогресс */
#tv-progress { background:#fff3cd; padding:15px; border-radius:6px; margin:20px 0; font-weight:500; }

/* Сетка отелей */
.tv-hotels-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(280px, 1fr)); gap:20px; }
.tv-hotel-card { border:1px solid #ddd; border-radius:8px; overflow:hidden; background:#fff; transition:box-shadow 0.2s; }
.tv-hotel-card:hover { box-shadow:0 4px 12px rgba(0,0,0,0.1); }
.tv-hotel-img { width:100%; height:180px; object-fit:cover; }
.tv-hotel-body { padding:15px; }
.tv-hotel-title { font-size:18px; margin:0 0 10px; }
.tv-hotel-price { font-size:20px; font-weight:bold; color:#e53935; margin:10px 0; }
.tv-show-tour { background:#ff6b00; color:#fff; border:0; padding:8px 16px; border-radius:4px; cursor:pointer; width:100%; }
.tv-show-tour:hover { background:#ff8c42; }

/* Страница тура */
.tv-tour-page { background:#fff; padding:20px; border-radius:8px; }

/* Шапка */
.tv-tour-header { display:flex; justify-content:space-between; align-items:center; border-bottom:2px solid #eee; margin-bottom:20px; padding-bottom:15px; }
.tv-hotel-name { font-size:28px; margin:0; font-weight:600; }
.tv-hotel-region { color:#666; margin:5px 0 0; }
.tv-tour-price-box { text-align:right; }
.tv-price { font-size:28px; font-weight:bold; color:#e53935; display:block; margin-bottom:10px; }
.tv-book-btn { background:#ff6b00; color:#fff; border:0; padding:12px 24px; border-radius:4px; cursor:pointer; font-size:16px; }
.tv-book-btn:hover { background:#ff8c42; }

/* Галерея */
.tv-tour-gallery { margin-bottom:30px; }
.tv-main-photo { width:100%; max-height:450px; object-fit:cover; border-radius:8px; }

/* Контент */
.tv-tour-content { display:flex; gap:30px; }
.tv-left { flex:2; }
.tv-right { flex:1; }

.tv-block { margin-bottom:30px; background:#fafafa; padding:20px; border-radius:8px; }
.tv-block h2 { font-size:22px; margin:0 0 15px; border-bottom:2px solid #ff6b00; padding-bottom:8px; }

.tv-flight { border:1px solid #e0e0e0; padding:15px; margin-bottom:15px; border-radius:6px; background:#fff; }
.tv-flight h3 { margin:0 0 10px; font-size:18px; color:#333; }
.tv-flight p { margin:5px 0; }

.tv-included, .tv-addpayments { list-style:none; padding:0; }
.tv-included li, .tv-addpayments li { padding:8px 0; border-bottom:1px solid #eee; }
.tv-included li:before { content:"✓ "; color:#4caf50; font-weight:bold; margin-right:8px; }

/* Правая колонка */
.tv-aside-box { border:1px solid #ddd; padding:20px; border-radius:8px; margin-bottom:20px; background:#fff; box-shadow:0 2px 8px rgba(0,0,0,0.05); }
.tv-aside-box h3 { margin:0 0 15px; font-size:18px; }
.tv-aside-price { font-size:26px; font-weight:bold; color:#e53935; margin:10px 0; }
.tv-fuel, .tv-visa { font-size:14px; color:#666; margin:5px 0; }

/* Адаптив */
@media (max-width:768px){
    .tv-form-row { grid-template-columns:1fr; }
    .tv-tour-header { flex-direction:column; align-items:flex-start; }
    .tv-tour-price-box { margin-top:15px; text-align:left; }
    .tv-tour-content { flex-direction:column; }
}