/* === БАЗОВЫЕ СТИЛИ === */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #f5f7fa; color: #333; line-height: 1.6; }
html { scroll-behavior: smooth; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* === ELBRUS BANNER === */
.elbrus-banner {
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-top: 60px;
}
.elbrus-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* === NAVIGATION === */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 99999;
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo { color: orangered; font-size: 1.5rem; font-weight: 700; text-decoration: none; }
.nav-menu { display: flex; gap: 30px; list-style: none; }
.nav-menu a { color: #fff; text-decoration: none; font-weight: 500; }
.nav-menu a:hover { color: orangered; }

/* === HEADER === */
header {
    position: relative;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url('https://picsum.photos/1600/600?grayscale');
    background-size: cover;
    background-position: center;
    margin-top: 60px;
}
header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 90px 20px 50px;
}
.hero-content h1 {
    font-size: 3rem;
    color: #ff5500;
    font-weight: 800;
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
    margin-bottom: 12px;
}
.hero-content p {
    font-size: 1.25rem;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

/* === MAIN CONTENT === */
main { padding: 60px 0 80px; }
section {
    background: #ffffff;
    border-radius: 14px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}
section h2 {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 3px solid orangered;
    display: inline-block;
}

/* === TOURS GRID === */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.tour-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    position: relative;
}
.tour-card:hover { transform: translateY(-7px); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 20px; }
.card-body h3 { margin: 0 0 10px 0; font-size: 1.2rem; }
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}
.price { font-weight: bold; font-size: 1.1rem; color: #2c5e3b; }
.btn-book {
    background: orangered;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}
.btn-book:hover { background: #cc4400; }
.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: orangered;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 10;
}

/* === YANDEX MAP === */
.map-container {
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
}

/* === BOOKING PAGE === */
.booking-header {
    color: white;
    padding: 80px 20px 60px;
    text-align: center;
    margin-top: 60px;
}
.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 50px auto;
    max-width: 1200px;
}
.booking-form-section, .contact-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}
.btn-submit {
    width: 100%;
    padding: 16px;
    background: orangered;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
}
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
}

/* === FOOTER === */
footer {
    background: #1a1a1a;
    color: #999;
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
}

/* === ADMIN === */
.admin-wrap { max-width: 1200px; margin: 100px auto 40px; padding: 0 20px; }
.admin-header { display: flex; justify-content: space-between; margin-bottom: 30px; }
.admin-section { background: white; padding: 30px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.06); }
.btn { display: inline-block; padding: 8px 16px; border-radius: 6px; text-decoration: none; font-weight: 500; }
.btn-p { background: orangered; color: white; }
.btn-s { background: #2c5e3b; color: white; }
.btn-d { background: #dc3545; color: white; }

/* === MOBILE === */
@media (max-width: 768px) {
    .elbrus-banner { height: 250px; margin-top: 50px; }
    .hero-content h1 { font-size: 2rem; }
    .nav-menu { gap: 15px; flex-wrap: wrap; justify-content: center; }
    .tours-grid { grid-template-columns: 1fr; }
    .booking-wrapper { grid-template-columns: 1fr; }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: #f5f7fa; color: #333; line-height: 1.6; }
html { scroll-behavior: smooth; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* NAVIGATION */
nav { position: fixed; top: 0; left: 0; right: 0; background: rgba(15, 15, 15, 0.95); backdrop-filter: blur(10px); padding: 15px 0; z-index: 99999; }
nav .container { display: flex; justify-content: space-between; align-items: center; }
.logo { color: orangered; font-size: 1.5rem; font-weight: 700; text-decoration: none; }
.nav-menu { display: flex; gap: 30px; list-style: none; }
.nav-menu a { color: #fff; text-decoration: none; font-weight: 500; }
.nav-menu a:hover { color: orangered; }

/* HEADER WITH ELBRUS */
header { position: relative; min-height: 520px; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; background-image: url('/static/elbrus.jpg'); background-size: cover; background-position: center; margin-top: 60px; }
header::before { content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.35); z-index: 1; }
.hero-content { position: relative; z-index: 2; padding: 90px 20px 50px; }
.hero-content h1 { font-size: 3rem; color: #ff5500; font-weight: 800; text-shadow: 0 3px 10px rgba(0,0,0,0.6); margin-bottom: 12px; }
.hero-content p { font-size: 1.25rem; color: #ffffff; text-shadow: 0 2px 6px rgba(0,0,0,0.5); }

/* MAIN CONTENT */
main { padding: 60px 0 80px; }
section { background: #ffffff; border-radius: 14px; padding: 40px; margin-bottom: 40px; box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06); }
section h2 { font-size: 1.75rem; color: #1a1a1a; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 3px solid orangered; display: inline-block; }

/* TOURS */
.tours-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 25px; margin-top: 30px; }
.tour-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.08); transition: transform 0.3s; position: relative; }
.tour-card:hover { transform: translateY(-7px); }
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 20px; }
.card-body h3 { margin: 0 0 10px 0; font-size: 1.2rem; }
.card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #f0f0f0; padding-top: 15px; }
.price { font-weight: bold; font-size: 1.1rem; color: #2c5e3b; }
.btn-book { background: orangered; color: white; padding: 8px 16px; border-radius: 6px; text-decoration: none; font-weight: 500; }
.btn-book:hover { background: #cc4400; }
.featured-badge { position: absolute; top: 15px; right: 15px; background: orangered; color: white; padding: 8px 15px; border-radius: 20px; font-weight: 600; z-index: 10; }

/* DATE FILTER */
.date-filter { background: #f8f9fa; padding: 20px; border-radius: 12px; margin-bottom: 25px; display: flex; gap: 15px; flex-wrap: wrap; align-items: flex-end; }
.date-filter label { display: block; margin-bottom: 5px; font-weight: 500; }
.date-filter input { padding: 10px; border: 2px solid #e0e0e0; border-radius: 6px; font-size: 1rem; }

/* MAP */
.map-container { margin: 20px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.1); border-radius: 12px; overflow: hidden; }

/* BOOKING */
.booking-header { color: white; padding: 80px 20px 60px; text-align: center; margin-top: 60px; background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/static/elbrus.jpg'); background-size: cover; background-position: center; }
.booking-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin: 50px auto; max-width: 1200px; }
.booking-form-section, .contact-card { background: white; padding: 40px; border-radius: 16px; box-shadow: 0 6px 24px rgba(0,0,0,0.06); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid #e0e0e0; border-radius: 8px; font-size: 1rem; }
.btn-submit { width: 100%; padding: 16px; background: orangered; color: white; border: none; border-radius: 8px; font-size: 1.1rem; font-weight: 600; cursor: pointer; }
.contact-item { display: flex; gap: 15px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #f5f5f5; }

/* FOOTER */
footer { background: #1a1a1a; color: #999; text-align: center; padding: 30px 0; margin-top: 50px; }

/* FLOATING BUTTONS */
.floating-buttons { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 999999; }
.float-btn { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; box-shadow: 0 4px 15px rgba(0,0,0,0.3); transition: transform 0.3s; }
.float-btn:hover { transform: scale(1.1); }
.float-btn.whatsapp { background: #25D366; }
.float-btn.telegram { background: #0088cc; }

/* ADMIN */
.admin-wrap { max-width: 1200px; margin: 100px auto 40px; padding: 0 20px; }
.admin-header { display: flex; justify-content: space-between; margin-bottom: 30px; }
.admin-section { background: white; padding: 30px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.06); }
.admin-login { max-width: 400px; margin: 150px auto; background: white; padding: 40px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.06); }
.btn { display: inline-block; padding: 8px 16px; border-radius: 6px; text-decoration: none; font-weight: 500; }
.btn-p { background: orangered; color: white; }
.btn-s { background: #2c5e3b; color: white; }
.btn-d { background: #dc3545; color: white; }
table { width: 100%; border-collapse: collapse; }
table th, table td { padding: 12px; text-align: left; border-bottom: 1px solid #f0f0f0; }
table th { background: #f8f9fa; font-weight: 600; }

/* TOUR PAGE */
.tour-header { position: relative; margin-top: 60px; }
.tour-hero-img { width: 100%; height: 400px; object-fit: cover; }
.tour-header-content { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); padding: 40px; color: white; }
.tour-header-content h1 { font-size: 3rem; margin: 0 0 10px 0; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.tour-header-content p { font-size: 1.2rem; opacity: 0.9; }
.tour-section { background: white; padding: 40px; margin: 30px 0; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.06); }
.tour-section h2 { color: #1a1a1a; font-size: 1.8rem; margin-bottom: 25px; padding-bottom: 10px; border-bottom: 3px solid orangered; display: inline-block; }
.tour-days { display: grid; gap: 20px; }
.day { background: #f8f9fa; padding: 20px; border-radius: 8px; border-left: 4px solid orangered; }
.day h3 { color: #2c5e3b; margin: 0 0 10px 0; font-size: 1.2rem; }
.tour-booking { background: linear-gradient(135deg, #2c5e3b, #4a7c59); padding: 50px; border-radius: 12px; text-align: center; color: white; margin-bottom: 50px; }
.tour-price { font-size: 3.5rem; font-weight: bold; display: block; }
.btn-book-large { display: inline-block; background: orangered; color: white; padding: 18px 50px; border-radius: 8px; text-decoration: none; font-size: 1.2rem; font-weight: 600; transition: all 0.3s; box-shadow: 0 4px 15px rgba(238, 77, 45, 0.4); }
.btn-book-large:hover { background: #cc4400; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(238, 77, 45, 0.6); }

/* MOBILE */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2rem; }
    .nav-menu { gap: 15px; flex-wrap: wrap; justify-content: center; }
    .tours-grid { grid-template-columns: 1fr; }
    .booking-wrapper { grid-template-columns: 1fr; }
    .floating-buttons { bottom: 20px; right: 20px; }
    .float-btn { width: 50px; height: 50px; }
    .tour-header-content h1 { font-size: 2rem; }
    .tour-price { font-size: 2.5rem; }
}
/* Отзывы с Яндекс.Карт */
.reviews-section {
    margin: 40px 0;
    padding: 40px;
    background: white;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.reviews-section h2 {
    font-size: 1.75rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 14px;
    border-bottom: 3px solid orangered;
    display: inline-block;
}

/* Кнопка Telegram бота */
.float-btn.telegram-bot {
    background: #0088cc;
}

.float-btn.telegram-bot:hover {
    background: #0099e6;
}
.float-btn.telegram-bot {
    background: #0088cc;
}

.reviews-section {
    margin: 40px 0;
}

.reviews-section h2 {
    font-size: 1.75rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    padding-bottom: 10px;
    border-bottom: 3px solid orangered;
    display: inline-block;
}
/* === ОТЗЫВЫ НА ВСЮ ШИРИНУ === */
.reviews-full-width {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    padding: 60px 40px;
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.reviews-full-width h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.reviews-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-widget-container {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    overflow: hidden;
}

.reviews-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-review-leave {
    display: inline-block;
    background: linear-gradient(135deg, #ff5500 0%, #ff7733 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 85, 0, 0.3);
}

.btn-review-leave:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 85, 0, 0.4);
    background: linear-gradient(135deg, #ff7733 0%, #ff5500 100%);
}

/* Адаптив для отзывов */
@media (max-width: 768px) {
    .reviews-full-width {
        padding: 40px 20px;
    }
    
    .reviews-full-width h2 {
        font-size: 1.8rem;
    }
    
    .reviews-widget-container {
        padding: 20px;
    }
    
    .btn-review-leave {
        padding: 14px 30px;
        font-size: 1rem;
    }
}
/* === ГАЛЕРЕЯ ФОТО ТУРА === */
.tour-gallery {
    background: white;
    padding: 40px;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.tour-gallery h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid orangered;
    display: inline-block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
    cursor: pointer;
}

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

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .tour-gallery {
        padding: 25px;
    }
}
/* === ГАЛЕРЕЯ ФОТО ТУРА === */
.tour-gallery {
    background: white;
    padding: 40px;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.tour-gallery h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid orangered;
    display: inline-block;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}
.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
    cursor: pointer;
}
.gallery-img:hover {
    transform: scale(1.05);
}

/* === ОТЗЫВЫ НА ВСЮ ШИРИНУ === */
.reviews-full-width {
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    padding: 60px 40px;
    margin: 40px 0;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.reviews-full-width h2 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}
.reviews-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.reviews-widget-container {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
    overflow: hidden;
}
.reviews-cta { text-align: center; margin-top: 30px; }
.btn-review-leave {
    display: inline-block;
    background: linear-gradient(135deg, #ff5500 0%, #ff7733 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 85, 0, 0.3);
}
.btn-review-leave:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 85, 0, 0.4);
}
.float-btn.telegram-bot { background: #0088cc; }

/* === ГАЛЕРЕЯ ФОТО ТУРА === */
.tour-gallery {
    background: white;
    padding: 40px;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.tour-gallery h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid orangered;
    display: inline-block;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}
.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}
.gallery-img:hover {
    transform: scale(1.05);
}
/* === ГАЛЕРЕЯ ФОТО ТУРА === */
.tour-gallery {
    background: white;
    padding: 40px;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.tour-gallery h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid orangered;
    display: inline-block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
    cursor: pointer;
}

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

/* Адаптив для галереи */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    .tour-gallery {
        padding: 25px;
    }
}



/* === MOBILE ADAPT === */
@media (max-width: 768px) {
  nav .container { flex-direction: column; gap: 8px; }
  .nav-menu { flex-direction: column; gap: 6px; background: #1a1a1a; padding: 10px; width: 100%; }
  .tours-grid { grid-template-columns: 1fr !important; }
  .date-filter { flex-direction: column !important; }
  .date-filter > div { width: 100% !important; min-width: 0 !important; }
  .booking-wrapper { grid-template-columns: 1fr !important; }
  header h1, .hero-content h1 { font-size: 1.8rem !important; }
  .tour-header-content h1 { font-size: 1.6rem !important; }
  .admin-section table { font-size: 0.8rem; display: block; overflow-x: auto; white-space: nowrap; }
  .gallery-grid { grid-template-columns: 1fr 1fr !important; }
  .container { padding: 0 12px; }
  .floating-buttons { bottom: 12px; right: 12px; }
}


/* === TOUR BANNER CENTER === */
.tour-header{position:relative;min-height:420px;overflow:hidden;display:block;}
.tour-header .tour-hero-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;}
.tour-header::after{content:"";position:absolute;inset:0;background:linear-gradient(rgba(0,0,0,.30),rgba(0,0,0,.55));z-index:1;}
.tour-header .tour-header-content{position:relative;z-index:2;min-height:420px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;color:#fff;padding:24px;box-sizing:border-box;}
.tour-header .tour-header-content h1{color:#ff5500;text-shadow:0 2px 12px rgba(0,0,0,.75);margin:0 0 8px;}
.tour-header .tour-header-content p{color:#fff;text-shadow:0 1px 7px rgba(0,0,0,.75);}
.tour-banner-desc{max-width:760px;font-size:1.05rem;line-height:1.5;margin:6px 0 10px;}


/* === CATEGORY ACCORDION === */
.tours-accordion details{border:1px solid #eee;border-radius:12px;margin:14px 0;background:#fff;overflow:hidden;box-shadow:0 1px 4px rgba(0,0,0,.04);}
.tours-accordion summary{list-style:none;cursor:pointer;padding:16px 20px;font-size:1.25rem;font-weight:700;display:flex;align-items:center;justify-content:space-between;user-select:none;background:#fafafa;}
.tours-accordion summary::-webkit-details-marker{display:none;}
.tours-accordion summary::after{content:"\25B8";font-size:1.3rem;color:#ff5500;transition:transform .25s ease;}
.tours-accordion details[open] summary::after{transform:rotate(90deg);}
.tours-accordion summary:hover{background:#f3f3f3;}
.tours-accordion summary .cat-count{font-size:.9rem;font-weight:500;color:#888;margin-left:10px;}
.tours-accordion .cat-body{padding:6px 16px 18px;}
.tours-accordion details.featured-block{border-color:#ff5500;}
.tours-accordion details.featured-block summary{background:#fff3ec;color:#ff5500;}
@media (max-width:768px){.tours-accordion summary{font-size:1.05rem;padding:14px 16px;}}


/* === PROGRAM RENDER === */
.tour-days .day{padding:7px 2px;border-bottom:1px dashed #eee;}
.tour-days .day:last-child{border-bottom:none;}
.tour-days .day strong{display:block;color:#ff5500;font-size:1.12rem;margin:12px 0 4px;}


/* === SCHEDULE === */
.sch-teaser{margin:18px 0 8px;}
.sch-teaser a{display:block;text-align:center;background:linear-gradient(90deg,#ff5500,#ff7a2e);color:#fff;padding:16px 18px;border-radius:12px;text-decoration:none;font-weight:700;font-size:1.1rem;box-shadow:0 4px 14px rgba(255,85,0,.25);}
.sch-teaser a:hover{filter:brightness(1.05);}
.sch-wrap{padding:24px 0 60px;}
.sch-section{margin:26px 0;}
.sch-section h2{color:#ff5500;border-bottom:2px solid #ffe2d3;padding-bottom:8px;margin-bottom:14px;}
.sch-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:14px;}
.sch-card{background:#fff;border:1px solid #eee;border-radius:12px;padding:16px;box-shadow:0 1px 5px rgba(0,0,0,.05);display:flex;flex-direction:column;gap:6px;}
.sch-dates{color:#ff5500;font-weight:700;font-size:1.05rem;}
.sch-prog{font-weight:600;color:#222;line-height:1.35;}
.sch-days{color:#888;font-size:.9rem;}
.sch-price{margin-top:auto;font-size:1.2rem;font-weight:800;color:#1a1a1a;padding-top:8px;}
.sch-note{color:#999;font-size:.85rem;margin-top:24px;text-align:center;}
.sch-info{background:#f7f9fc;border-radius:12px;padding:18px 20px;margin-top:20px;}
.sch-info h3{margin:0 0 6px;color:#2e436b;}
@media (max-width:768px){.sch-grid{grid-template-columns:1fr;}}


/* === TOUR GALLERY TAB === */
.tour-gallery{margin:18px 0;}
.tour-gallery details{border:1px solid #eee;border-radius:12px;background:#fff;overflow:hidden;}
.tour-gallery summary{list-style:none;cursor:pointer;padding:14px 18px;font-size:1.15rem;font-weight:700;color:#ff5500;display:flex;align-items:center;justify-content:space-between;user-select:none;background:#fff7f2;}
.tour-gallery summary::-webkit-details-marker{display:none;}
.tour-gallery summary::after{content:"\25B8";font-size:1.2rem;transition:transform .25s;}
.tour-gallery details[open] summary::after{transform:rotate(90deg);}
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(110px,1fr));gap:8px;padding:12px;}
.gl{display:block;}
.gl img{width:100%;height:110px;object-fit:cover;border-radius:8px;cursor:zoom-in;display:block;transition:transform .15s;}
.gl img:hover{transform:scale(1.04);}
.lb{position:fixed;inset:0;background:rgba(0,0,0,.92);display:none;align-items:center;justify-content:center;z-index:9999;cursor:zoom-out;padding:20px;box-sizing:border-box;}
.lb.on{display:flex;}
.lb img{max-width:92vw;max-height:92vh;border-radius:8px;box-shadow:0 10px 40px rgba(0,0,0,.6);}


/* === REVIEWS === */
.rv{border-bottom:1px solid #eee;padding:12px 0;}
.rv:last-of-type{border-bottom:none;}
.rv-h{display:flex;flex-wrap:wrap;gap:8px;align-items:baseline;margin-bottom:4px;}
.rv-stars{color:#ffb400;letter-spacing:1px;}
.rv-date{color:#999;font-size:.8rem;margin-left:auto;}
.rv p{margin:0;color:#333;line-height:1.5;}
.rv-avg{font-weight:700;color:#222;margin:0 0 10px;}
.rv-form{background:#fafafa;border-radius:12px;padding:16px;margin-top:10px;}
.rv-note{color:#999;font-size:.8rem;margin:8px 0 0;}
.star-rating{display:inline-flex;flex-direction:row-reverse;justify-content:flex-end;gap:2px;}
.star-rating input{display:none;}
.star-rating label{font-size:1.9rem;color:#ddd;cursor:pointer;transition:color .1s;}
.star-rating input:checked ~ label,.star-rating label:hover,.star-rating label:hover ~ label{color:#ffb400;}
