/**
 * Стили каталога туров
 *
 * @package VertikalTour
 */

/* Container */
.vt-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumbs */
.vt-breadcrumbs {
    padding: 15px 0;
    font-size: 14px;
    color: #666;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.vt-breadcrumbs::-webkit-scrollbar {
    display: none;
}

.vt-breadcrumbs a {
    color: var(--vt-primary);
    text-decoration: none;
}

.vt-breadcrumbs a:hover {
    text-decoration: underline;
}

.vt-breadcrumbs__sep {
    margin: 0 8px;
    color: #999;
}

/* Breadcrumbs mobile */
@media (max-width: 768px) {
    .vt-breadcrumbs {
        padding: 12px 0;
        font-size: 12px;
    }

    .vt-breadcrumbs__sep {
        margin: 0 6px;
    }
}

@media (max-width: 480px) {
    .vt-breadcrumbs {
        padding: 10px 0;
        font-size: 11px;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .vt-breadcrumbs__sep {
        margin: 0 4px;
    }
}

/* Catalog */
.vt-catalog {
    padding: 20px 0 60px;
}

.vt-catalog__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.vt-catalog__subtitle {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px;
}

.vt-catalog__empty {
    padding: 40px;
    text-align: center;
    color: #666;
    background: #f5f5f5;
    border-radius: 8px;
}

/* Grids */
.vt-regions-grid,
.vt-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.vt-tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

/* Region/City Cards */
.vt-region-card,
.vt-city-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.vt-region-card:hover,
.vt-city-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.vt-region-card__image,
.vt-city-card__image {
    height: 180px;
    overflow: hidden;
}

.vt-region-card__image img,
.vt-city-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vt-region-card__content,
.vt-city-card__content {
    padding: 16px;
}

.vt-region-card__title,
.vt-city-card__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
}

.vt-region-card__count,
.vt-city-card__count {
    font-size: 14px;
    color: #666;
}

/* Tour Card */
.vt-tour-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.vt-tour-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.vt-tour-card:hover .vt-tour-card__image img {
    transform: scale(1.08);
}

.vt-tour-card:hover .vt-tour-card__btn {
    background: var(--vt-primary);
    color: #fff;
}

.vt-tour-card:hover .vt-tour-card__btn svg {
    transform: translateX(4px);
}

.vt-tour-card__image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.vt-tour-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vt-tour-card__image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.vt-tour-card__image-placeholder svg {
    width: 64px;
    height: 64px;
    color: #c0c7cf;
}

/* Город (слева сверху) */
.vt-tour-card__city {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    z-index: 2;
}

.vt-tour-card__city svg {
    color: var(--vt-primary);
    flex-shrink: 0;
}

.vt-tour-card__city--has-more {
    cursor: pointer;
}

.vt-tour-card__city-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 18px;
    padding: 0 5px;
    margin-left: 2px;
    background: var(--vt-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 10px;
}

.vt-tour-card__city-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 4px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    z-index: 10;
}

.vt-tour-card__city--has-more:hover .vt-tour-card__city-dropdown {
    display: block;
}

/* Бейджи (справа сверху) */
.vt-tour-card__badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    z-index: 2;
}

.vt-tour-card__badge {
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    backdrop-filter: blur(8px);
}

.vt-tour-card__badge--school {
    background: rgba(59, 130, 246, 0.9);
    color: #fff;
}

.vt-tour-card__badge--excursion {
    background: rgba(16, 185, 129, 0.9);
    color: #fff;
}

.vt-tour-card__meta-bottom {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vt-tour-card__duration {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
}

.vt-tour-card__duration svg {
    opacity: 0.9;
}

.vt-tour-card__transport {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    display:none;
}

.vt-tour-card__transport-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.vt-tour-card__transport-icon svg {
    opacity: 0.9;
}

.vt-tour-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.vt-tour-card__title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.35;
    color: #1f2937;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vt-tour-card__excerpt {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vt-tour-card__season-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 2;
}

.vt-tour-card__season-badge svg {
    flex-shrink: 0;
    opacity: 0.9;
}

.vt-tour-card__nearest {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #475569;
}

.vt-tour-card__nearest svg {
    color: var(--vt-primary);
    flex-shrink: 0;
}

/* Четверти с выпадающим списком */
.vt-tour-card__nearest--quarter {
    position: relative;
    flex-wrap: wrap;
}

.vt-tour-card__nearest--has-more {
    cursor: pointer;
}

.vt-tour-card__quarter-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 20px;
    padding: 0 6px;
    margin-left: 4px;
    background: var(--vt-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 10px;
}

.vt-tour-card__quarter-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    padding: 8px 12px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.vt-tour-card__quarter-item {
    display: block;
    padding: 6px 0;
    font-size: 12px;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}

.vt-tour-card__quarter-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.vt-tour-card__nearest--has-more:hover .vt-tour-card__quarter-dropdown {
    display: block;
}

/* Разрешаем выход dropdown за пределы карточки */
.vt-tour-card:has(.vt-tour-card__nearest--has-more) {
    overflow: visible;
}

.vt-tour-card:has(.vt-tour-card__nearest--has-more) .vt-tour-card__content {
    overflow: visible;
}

.vt-tour-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.vt-tour-card__price-block {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.vt-tour-card__price-label {
    font-size: 13px;
    color: #9ca3af;
}

.vt-tour-card__price {
    font-size: 18px;
    font-weight: 600;
    color: var(--vt-primary);
}

.vt-tour-card__price--request {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

.vt-tour-card__btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--vt-primary-light);
    color: var(--vt-primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.vt-tour-card__btn svg {
    transition: transform 0.2s ease;
}

/* Empty state */
.vt-catalog__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 60px 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 16px;
}

/* Grid responsive */
@media (max-width: 768px) {
    .vt-tour-card__image {
        height: 240px;
    }

    .vt-tour-card__content {
        padding: 16px;
    }

    .vt-tour-card__title {
        font-size: 16px;
    }

    .vt-tour-card__price {
        font-size: 18px;
    }

    .vt-tour-card__btn {
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* Hero sections */
.vt-region-hero,
.vt-city-hero {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.vt-region-hero img,
.vt-city-hero img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.vt-region-description,
.vt-city-description {
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Tour Page */
.vt-tour {
    padding: 20px 0 60px;
}

.vt-tour__layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.vt-tour__title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 16px;
}

.vt-tour__meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 15px;
    color: #666;
}

.vt-tour__season {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f59e0b;
}

.vt-tour__season svg {
    flex-shrink: 0;
    color: #f59e0b;
}

.vt-tour__featured-image {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.vt-tour__featured-image img {
    width: 100%;
    height: auto;
}

/* ===== GALLERY SLIDER ===== */
.vt-gallery-slider {
    margin-bottom: 30px;
    max-width: 100%;
    width: 100%;
}

.vt-gallery-slider__main {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
}

.vt-gallery-slider__slides {
    position: relative;
    aspect-ratio: 16/9;
}

.vt-gallery-slider__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.vt-gallery-slider__slide.is-active {
    opacity: 1;
    z-index: 1;
}

.vt-gallery-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vt-gallery-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    max-width: 44px;
    max-height: 44px;
    flex-shrink: 0;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    padding: 0;
    overflow: visible;
}

.vt-gallery-slider__nav svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.vt-gallery-slider__nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.05);
}

.vt-gallery-slider__nav--prev {
    left: 16px;
}

.vt-gallery-slider__nav--next {
    right: 16px;
}

.vt-gallery-slider__counter {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 10;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.vt-gallery-slider__thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding: 4px 0;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Скрыть скроллбар в Chrome/Safari */
.vt-gallery-slider__thumbs::-webkit-scrollbar {
    display: none;
}

.vt-gallery-slider__thumb {
    flex-shrink: 0;
    width: 72px;
    height: 54px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    padding: 0;
    background: none;
    opacity: 0.6;
    transition: all 0.2s;
}

.vt-gallery-slider__thumb:hover {
    opacity: 0.9;
}

.vt-gallery-slider__thumb.is-active {
    border-color: var(--vt-primary);
    opacity: 1;
}

.vt-gallery-slider__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery slide clickable */
.vt-gallery-slider__slide {
    cursor: zoom-in;
}

/* ===== LIGHTBOX ===== */
.vt-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.vt-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.vt-lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    max-width: 44px;
    max-height: 44px;
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    line-height: 1;
    transition: background 0.2s;
    z-index: 10;
}

.vt-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.vt-lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vt-lightbox__slides {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vt-lightbox__slide {
    display: none;
    max-width: 90vw;
    max-height: 85vh;
}

.vt-lightbox__slide.is-active {
    display: block;
}

.vt-lightbox__slide img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.vt-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s;
    z-index: 10;
}

.vt-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.vt-lightbox__nav--prev {
    left: 20px;
}

.vt-lightbox__nav--next {
    right: 20px;
}

.vt-lightbox__nav svg {
    width: 28px;
    height: 28px;
}

.vt-lightbox__counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
}

/* Lightbox responsive */
@media (max-width: 768px) {
    .vt-lightbox__nav {
        width: 40px;
        height: 40px;
    }

    .vt-lightbox__nav--prev {
        left: 10px;
    }

    .vt-lightbox__nav--next {
        right: 10px;
    }

    .vt-lightbox__close {
        top: 10px;
        right: 10px;
    }
}

/* Gallery responsive */
@media (max-width: 768px) {
    .vt-gallery-slider__slides {
        aspect-ratio: auto;
        min-height: 260px;
    }

    .vt-gallery-slider__nav {
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }

    .vt-gallery-slider__nav--prev {
        left: 8px;
    }

    .vt-gallery-slider__nav--next {
        right: 8px;
    }

    .vt-gallery-slider__thumb {
        width: 60px;
        height: 45px;
    }
}

.vt-tour__content {
    line-height: 1.7;
}

/* ===== BOOKING CARD - STEP FORM ===== */
.vt-booking-card {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.vt-booking-card__prices {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.vt-booking-card__price-main {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.vt-booking-card__price-per-day {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

/* Steps */
.vt-step {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.vt-step:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.vt-step--disabled {
    opacity: 0.5;
    pointer-events: none;
}

.vt-step__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.vt-step__number {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e0e0;
    color: #666;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.vt-step--active .vt-step__number {
    background: var(--vt-primary);
    color: #fff;
}

.vt-step--completed .vt-step__number {
    background: var(--vt-primary);
    color: #fff;
}

.vt-step--completed .vt-step__number::after {
    content: "✓";
}

.vt-step--completed .vt-step__number span {
    display: none;
}

.vt-step__title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.vt-step__content {
    padding-left: 40px;
}

/* Date Select */
.vt-date-select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.vt-date-select:focus {
    outline: none;
    border-color: var(--vt-primary);
}

/* Participants */
.vt-participants {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vt-participant-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vt-participant-row__label {
    font-size: 15px;
    color: #333;
}

.vt-participant-row__sublabel {
    font-size: 13px;
    color: #888;
    margin-top: 2px;
}

/* Counter - Fixed */
.vt-counter {
    display: flex;
    align-items: center;
    gap: 4px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 4px;
}

.vt-counter__btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 6px;
    background: #f5f5f5;
    font-size: 20px;
    font-weight: 400;
    color: #333;
    cursor: pointer;
    transition: all 0.15s;
    line-height: 1;
}

.vt-counter__btn:hover {
    background: #e8e8e8;
}

.vt-counter__btn:active {
    background: #ddd;
}

.vt-counter__btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.vt-counter__value {
    width: 44px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    border: none;
    background: transparent;
}

/* Children ages */
.vt-children-ages {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed #e0e0e0;
}

.vt-children-ages__title {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.vt-children-ages__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vt-children-ages__select {
    padding: 10px 12px;
    font-size: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    min-width: 100px;
}

.vt-children-ages__select:focus {
    outline: none;
    border-color: var(--vt-primary);
}

/* Contact Form */
.vt-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vt-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.vt-form-group__label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.vt-form-group__label span {
    color: #e53935;
}

.vt-form-input {
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    transition: border-color 0.15s;
}

.vt-form-input:focus {
    outline: none;
    border-color: var(--vt-primary);
}

.vt-form-input::placeholder {
    color: #aaa;
}

.vt-form-textarea {
    resize: vertical;
    min-height: 80px;
}

/* Summary */
.vt-booking-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.vt-booking-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.vt-booking-summary__row--total {
    border-top: 1px solid #e0e0e0;
    margin-top: 8px;
    padding-top: 16px;
    font-size: 18px;
    font-weight: 700;
}

.vt-booking-summary__row--total .vt-booking-summary__value {
    color: var(--vt-primary);
}

/* Buttons */
.vt-booking-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vt-btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.vt-btn--primary {
    background: var(--vt-primary);
    color: #fff;
}

.vt-btn--primary:hover:not(:disabled) {
    background: var(--vt-primary-dark);
}

.vt-btn--secondary {
    background: #f5f5f5;
    color: #333;
}

.vt-btn--secondary:hover:not(:disabled) {
    background: #e8e8e8;
}

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

/* Price info */
.vt-price-info {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #888;
}

.vt-price-info__row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
}

/* No dates */
.vt-no-dates {
    padding: 16px;
    text-align: center;
    background: #f5f5f5;
    border-radius: 10px;
    color: #666;
    font-size: 14px;
}

/* Success message */
.vt-success {
    text-align: center;
    padding: 32px 20px;
}

.vt-success__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--vt-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
}

.vt-success__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.vt-success__text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 900px) {
    .vt-tour__layout {
        grid-template-columns: 1fr;
    }

    .vt-booking-card {
        position: static;
    }
}

@media (max-width: 600px) {
    .vt-catalog__title,
    .vt-tour__title {
        font-size: 24px;
    }

    .vt-regions-grid,
    .vt-cities-grid,
    .vt-tours-grid {
        grid-template-columns: 1fr;
    }

    .vt-step__content {
        padding-left: 0;
        margin-top: 12px;
    }

    .vt-participant-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .vt-counter {
        width: 100%;
        justify-content: space-between;
    }

    .vt-counter__value {
        flex: 1;
    }
}

/* ===== QUIZ BOOKING FORM ===== */
.vt-quiz {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.vt-quiz__progress {
    height: 4px;
    background: #e0e0e0;
}

.vt-quiz__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--vt-primary), #4a9fd4);
    transition: width 0.3s ease;
}

.vt-quiz__step {
    padding: 24px;
}

.vt-quiz__header {
    margin-bottom: 20px;
}

.vt-quiz__back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: none;
    background: none;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 12px;
}

.vt-quiz__back:hover {
    color: #333;
}

.vt-quiz__step-num {
    display: block;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.vt-quiz__title {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
}

.vt-quiz__body {
    /* content area */
}

.vt-quiz__empty {
    padding: 32px 16px;
    text-align: center;
    color: #888;
    background: #f8f9fa;
    border-radius: 12px;
}

/* Date options */
.vt-dates-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 6px;
}

/* Кастомный скроллбар */
.vt-dates-list::-webkit-scrollbar {
    width: 6px;
}

.vt-dates-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.vt-dates-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.vt-dates-list::-webkit-scrollbar-thumb:hover {
    background: var(--vt-primary);
}

.vt-date-option {
    display: block;
    cursor: pointer;
}

.vt-date-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.vt-date-option__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.2s;
}

.vt-date-option:hover .vt-date-option__content {
    border-color: var(--vt-primary);
    background: var(--vt-primary-light);
}

.vt-date-option input:checked + .vt-date-option__content {
    border-color: var(--vt-primary);
    background: var(--vt-primary-light);
}

.vt-date-option--disabled {
    opacity: 0.5;
    pointer-events: none;
}

.vt-date-option__date {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

.vt-date-option__info {
    text-align: right;
}

.vt-date-option__price {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--vt-primary);
}

.vt-date-option__spots {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

/* Quiz selected info */
.vt-quiz__selected {
    padding: 12px 16px;
    background: var(--vt-primary-light);
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--vt-primary-dark);
}

/* Participants list */
.vt-participants-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vt-participant {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.vt-participant__info {
    flex: 1;
}

.vt-participant__name {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
}

.vt-participant__price {
    font-size: 13px;
    color: #888;
    margin-top: 2px;
}

/* Quiz total */
.vt-quiz__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    margin-top: 16px;
    border-top: 1px solid #eee;
    font-size: 16px;
}

.vt-quiz__total-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--vt-primary);
}

/* Quiz buttons */
.vt-quiz__btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    margin-top: 16px;
}

.vt-quiz__btn--primary {
    background: var(--vt-primary);
    color: #fff;
}

.vt-quiz__btn--primary:hover:not(:disabled) {
    background: var(--vt-primary-dark);
}

.vt-quiz__btn--secondary {
    background: #f0f0f0;
    color: #333;
}

.vt-quiz__btn--secondary:hover:not(:disabled) {
    background: #e0e0e0;
}

.vt-quiz__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Quiz actions */
.vt-quiz__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

/* Quiz summary */
.vt-quiz__summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.vt-quiz__summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
}

.vt-quiz__summary-row--total {
    border-top: 1px solid #e0e0e0;
    margin-top: 8px;
    padding-top: 12px;
    font-weight: 600;
    font-size: 16px;
}

.vt-quiz__summary-row--total span:last-child {
    color: var(--vt-primary);
}

/* Form labels in quiz */
.vt-form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 6px;
}

.vt-form-label span {
    color: #e53935;
}

/* Quiz success */
.vt-quiz__success {
    text-align: center;
    padding: 40px 20px;
}

.vt-quiz__success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: var(--vt-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
}

.vt-quiz__success-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 8px;
}

.vt-quiz__success-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 24px;
}

/* Responsive quiz */
@media (max-width: 900px) {
    .vt-quiz {
        position: static;
    }
}

@media (max-width: 600px) {
    .vt-quiz__step {
        padding: 20px 16px;
    }

    .vt-quiz__title {
        font-size: 18px;
    }

    .vt-date-option__content {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .vt-date-option__info {
        text-align: left;
    }

    .vt-participant {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .vt-counter {
        width: 100%;
        justify-content: space-between;
    }
}

/* ===== PROGRAM SECTION (Frontend) ===== */
.vt-program {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e0e0e0;
}

.vt-program__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.vt-program__title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.vt-program__download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--vt-primary);
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.vt-program__download:hover {
    background: var(--vt-primary-dark);
    color: #fff;
}

.vt-program__download svg {
    flex-shrink: 0;
}

.vt-program__days {
    position: relative;
}

/* Вертикальная линия между днями */
.vt-program__days::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(180deg, var(--vt-primary) 0%, var(--vt-primary-light) 100%);
    border-radius: 2px;
}

.vt-program__day {
    position: relative;
    margin-bottom: 32px;
    padding-left: 56px;
}

.vt-program__day:last-child {
    margin-bottom: 0;
}

.vt-program__day-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.vt-program__day-num {
    position: absolute;
    left: 0;
    width: 42px;
    height: 42px;
    background: var(--vt-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(23, 116, 187, 0.3);
}

.vt-program__day-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.vt-program__day-body {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

/* Мета-строка (место встречи + локации) */
.vt-program__meta-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

/* Место встречи */
.vt-program__meeting {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--vt-primary);
}

.vt-program__meeting svg {
    flex-shrink: 0;
}

.vt-program__meeting span {
    font-weight: 500;
}

/* Локации */
.vt-program__locations {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.vt-program__locations-label {
    font-size: 13px;
    font-weight: 500;
    color: #666;
}

.vt-program__locations-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.vt-program__location-tag {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    background: rgba(23, 116, 187, 0.1);
    border-radius: 12px;
    font-size: 12px;
    color: var(--vt-primary);
}

/* Описание дня - нормализация контента из WYSIWYG */
.vt-program__day-content {
    font-size: 15px !important;
    line-height: 1.7 !important;
    color: #333 !important;
}

/* Сброс всех вложенных элементов к единому стилю */
.vt-program__day-content * {
    font-size: inherit !important;
    line-height: inherit !important;
    font-family: inherit !important;
}

.vt-program__day-content p {
    margin: 0 0 12px;
}

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

/* Списки без левого отступа */
.vt-program__day-content ul,
.vt-program__day-content ol {
    margin: 0 0 12px !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    padding: 0 !important;
    list-style-position: inside;
}

.vt-program__day-content li {
    margin-bottom: 6px;
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-indent: 0 !important;
}

/* Заголовки - размер фиксированный */
.vt-program__day-content h3,
.vt-program__day-content h4 {
    margin: 16px 0 8px;
    color: #1a1a1a;
}

.vt-program__day-content h3 {
    font-size: 17px !important;
}

.vt-program__day-content h4 {
    font-size: 15px !important;
}

/* Жирный текст сохраняем */
.vt-program__day-content strong,
.vt-program__day-content b {
    font-weight: 600 !important;
    color: #1a1a1a;
}

/* ===== EXPANDABLE TEXT ===== */
.vt-expandable {
    position: relative;
}

.vt-expandable__content {
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.vt-expandable__content.is-collapsed {
    max-height: 120px;
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.vt-expandable__toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    padding: 0 !important;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: var(--vt-primary) !important;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.vt-expandable__toggle:hover,
.vt-expandable__toggle:focus,
.vt-expandable__toggle:active {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--vt-primary) !important;
    outline: none !important;
    text-decoration: none;
}

.vt-expandable__toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.vt-expandable__toggle.is-expanded svg {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
    .vt-program__days::before {
        left: 16px;
    }

    .vt-program__day {
        padding-left: 48px;
    }

    .vt-program__day-num {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .vt-program__day-title {
        font-size: 18px;
    }

    .vt-program__day-body {
        padding: 16px;
    }

    .vt-program__title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .vt-tour__meta {
        flex-direction: column;
        gap: 8px;
        font-size: 14px;
    }

    .vt-program__days::before {
        display: none;
    }

    .vt-program__day {
        padding-left: 0;
    }

    .vt-program__day-num {
        position: relative;
        left: auto;
        flex-shrink: 0;
        min-width: 36px;
        width: 36px;
        height: 36px;
        font-size: 14px;
        margin-right: 12px;
    }

    .vt-program__day-header {
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .vt-program__day-title {
        font-size: 16px;
        flex: 1;
    }
}

/* ===== INCLUSIONS (Что включено) ===== */
.vt-inclusions {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid #e5e7eb;
}

.vt-inclusions__main-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
}

.vt-inclusions__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.vt-inclusions__card {
    padding: 24px 0;
}

.vt-inclusions__card:first-child {
    padding-top: 0;
}

.vt-inclusions__card:last-child {
    padding-bottom: 0;
}

.vt-inclusions__card + .vt-inclusions__card {
    border-top: 1px solid #e5e7eb;
}

.vt-inclusions__title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #1a1a1a;
}

.vt-inclusions__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vt-inclusions__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.vt-inclusions__item.is-hidden {
    display: none;
}

.vt-inclusions__list.is-expanded .vt-inclusions__item.is-hidden {
    display: flex;
}

.vt-inclusions__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.vt-inclusions__card--yes .vt-inclusions__icon {
    color: #22c55e;
}

.vt-inclusions__card--no .vt-inclusions__icon {
    color: #ef4444;
}

.vt-inclusions__toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    padding: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--vt-primary) !important;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

.vt-inclusions__toggle:hover,
.vt-inclusions__toggle:focus {
    background: none !important;
    outline: none !important;
}

.vt-inclusions__toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s;
}

.vt-inclusions__toggle.is-expanded svg {
    transform: rotate(180deg);
}


/* ===== ACCOMMODATION (Проживание) ===== */
.vt-accommodation-section {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid #e5e7eb;
}

.vt-accommodation-section__title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
}

.vt-accommodation-section__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.vt-accommodation-section__name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.vt-accommodation-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    background: #f3f4f6;
    color: #4b5563;
}

.vt-accommodation-section__badge svg {
    flex-shrink: 0;
}

.vt-accommodation-section__badge--economy {
    background: #f3f4f6;
    color: #4b5563;
}

.vt-accommodation-section__badge--standard {
    background: #dbeafe;
    color: #1d4ed8;
}

.vt-accommodation-section__badge--comfort {
    background: #d1fae5;
    color: #047857;
}

.vt-accommodation-section__badge--luxury {
    background: #fef3c7;
    color: #b45309;
}

.vt-accommodation-section__badge--premium {
    background: #ede9fe;
    color: #6d28d9;
}

.vt-accommodation-section__badge--meal {
    background: #fef3c7;
    color: #b45309;
}

.vt-accommodation-section__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.vt-accommodation-section__gallery-item {
    display: block;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    cursor: zoom-in;
}

.vt-accommodation-section__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.vt-accommodation-section__gallery-item:hover img {
    transform: scale(1.05);
}

.vt-accommodation-section__rooms-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.vt-accommodation-section__rooms-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vt-accommodation-section__rooms-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #374151;
}

.vt-accommodation-section__rooms-list svg {
    width: 18px;
    height: 18px;
    color: #6b7280;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .vt-accommodation-section__gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .vt-accommodation-section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

.vt-accommodation-section__desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.vt-accommodation-section__gallery-item.has-more {
    position: relative;
}

.vt-accommodation-section__gallery-more {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    border-radius: 8px;
}

/* ===== MEALS (Питание) ===== */
.vt-meals-section {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid #e5e7eb;
}

.vt-meals-section__title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
}

.vt-meals-section__header {
    margin-bottom: 16px;
}

.vt-meals-section__type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 24px;
    background: #f3f4f6;
    color: #374151;
}

.vt-meals-section__type svg {
    flex-shrink: 0;
}

.vt-meals-section__type--none {
    background: #f3f4f6;
    color: #6b7280;
}

.vt-meals-section__type--breakfast {
    background: #fef3c7;
    color: #b45309;
}

.vt-meals-section__type--half_board {
    background: #dbeafe;
    color: #1d4ed8;
}

.vt-meals-section__type--full_board {
    background: #d1fae5;
    color: #047857;
}

.vt-meals-section__type--all_inc {
    background: #ede9fe;
    color: #6d28d9;
}

.vt-meals-section__desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.vt-meals-section__gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.vt-meals-section__gallery-item {
    display: block;
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    cursor: zoom-in;
}

.vt-meals-section__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.vt-meals-section__gallery-item:hover img {
    transform: scale(1.05);
}

.vt-meals-section__gallery-item.has-more {
    position: relative;
}

.vt-meals-section__gallery-more {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    border-radius: 8px;
}

.vt-meals-section__features-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.vt-meals-section__features-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vt-meals-section__features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #374151;
}

.vt-meals-section__features-list svg {
    width: 18px;
    height: 18px;
    color: #22c55e;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .vt-meals-section__gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== IMPORTANT INFO (Важная информация) ===== */
.vt-important-info-section {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid #e5e7eb;
}

.vt-important-info-section__title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
}

.vt-important-info-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.vt-important-info-section__card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 20px;
}

.vt-important-info-section__card--warning {
    background: #fef2f2;
}

.vt-important-info-section__card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.vt-important-info-section__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.vt-important-info-section__icon--bag {
    color: #3b82f6;
}

.vt-important-info-section__icon--person {
    color: #8b5cf6;
}

.vt-important-info-section__icon--warning {
    color: #ef4444;
}

.vt-important-info-section__card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.vt-important-info-section__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vt-important-info-section__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.vt-important-info-section__list svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #22c55e;
}

.vt-important-info-section__card--warning .vt-important-info-section__list svg {
    color: #ef4444;
}

.vt-important-info-section__additional {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 20px;
    background: #eff6ff;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.vt-important-info-section__additional svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #3b82f6;
    margin-top: 2px;
}

.vt-important-info-section__additional p {
    margin: 0;
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .vt-important-info-section__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== GUIDE (Гид) ===== */
.vt-guide-section {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid #e5e7eb;
}

.vt-guide-section__title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
}

.vt-guide-section__card {
    display: flex;
    gap: 24px;
    background: #f9fafb;
    border-radius: 16px;
    padding: 24px;
}

.vt-guide-section__photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vt-guide-section__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vt-guide-section__info {
    flex: 1;
    min-width: 0;
}

.vt-guide-section__name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.vt-guide-section__experience {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.vt-guide-section__experience svg {
    width: 16px;
    height: 16px;
    color: var(--vt-primary);
}

.vt-guide-section__desc {
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.vt-guide-section__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vt-guide-section__spec {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #fff;
    border-radius: 20px;
    font-size: 13px;
    color: #374151;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.vt-guide-section__spec svg {
    width: 14px;
    height: 14px;
    color: #22c55e;
}

@media (max-width: 640px) {
    .vt-guide-section__card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .vt-guide-section__specs {
        justify-content: center;
    }
}

/* ===== FAQ (Часто задаваемые вопросы) ===== */
.vt-faq-section {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid #e5e7eb;
}

.vt-faq-section__title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px 0;
}

.vt-faq-section__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vt-faq-section__item {
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    transition: background 0.2s;
}

.vt-faq-section__item:hover {
    background: #f3f4f6;
}

.vt-faq-section__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a !important;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.vt-faq-section__question:hover,
.vt-faq-section__question:focus,
.vt-faq-section__question:active {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    color: var(--vt-primary) !important;
}

.vt-faq-section__question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #9ca3af;
    transition: transform 0.3s;
}

.vt-faq-section__item.is-open .vt-faq-section__question svg {
    transform: rotate(180deg);
    color: var(--vt-primary);
}

.vt-faq-section__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.vt-faq-section__item.is-open .vt-faq-section__answer {
    max-height: 500px;
}

.vt-faq-section__answer p {
    padding: 12px 20px 20px;
    margin: 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
}

/* ========================================
   Дополнительные места (экскурсии)
======================================== */
.vt-extras {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.vt-extras__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.vt-extras__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--vt-primary);
}

.vt-extras__counter {
    font-size: 12px;
    color: #6b7280;
}

.vt-extras__counter span {
    font-weight: 600;
    color: var(--vt-primary);
}

.vt-extras__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 4px;
}

.vt-extras__list::-webkit-scrollbar {
    width: 4px;
}

.vt-extras__list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.vt-extras__list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

.vt-extras__item {
    display: block;
    cursor: pointer;
}

.vt-extras__item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.vt-extras__item-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.2s;
}

.vt-extras__item:hover .vt-extras__item-content {
    border-color: #e5e7eb;
    background: #fff;
}

.vt-extras__item input:checked + .vt-extras__item-content {
    border-color: var(--vt-primary);
    background: var(--vt-primary-light);
}

.vt-extras__item input:disabled + .vt-extras__item-content {
    opacity: 0.5;
    cursor: not-allowed;
}

.vt-extras__item-check {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.vt-extras__item-check svg {
    width: 14px;
    height: 14px;
    opacity: 0;
    color: #fff;
    transition: opacity 0.2s;
}

.vt-extras__item input:checked + .vt-extras__item-content .vt-extras__item-check {
    background: var(--vt-primary);
    border-color: var(--vt-primary);
}

.vt-extras__item input:checked + .vt-extras__item-content .vt-extras__item-check svg {
    opacity: 1;
}

.vt-extras__item-name {
    flex: 1;
    font-size: 13px;
    color: #374151;
    line-height: 1.3;
}

.vt-extras__item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    font-size: 11px;
    font-weight: 600;
    color: var(--vt-primary);
    white-space: nowrap;
}

.vt-extras__item-price-row {
    display: block;
}

.vt-extras__item-price--free {
    color: #10b981;
    font-size: 13px;
}

/* ========================================
   Секция доп. мест (на странице тура)
======================================== */
.vt-extras-section {
    margin-top: 48px;
    margin-bottom: 48px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}

.vt-extras-section__title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}

.vt-extras-section__desc {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

.vt-extras-section__grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vt-extras-section__card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.vt-extras-section__card-icon {
    width: 32px;
    height: 32px;
    background: var(--vt-primary-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vt-extras-section__card-icon svg {
    width: 18px;
    height: 18px;
    color: var(--vt-primary);
}

.vt-extras-section__card-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.vt-extras-section__card-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.vt-extras-section__card-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vt-extras-section__price {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
}

.vt-extras-section__price-label {
    color: #6b7280;
}

.vt-extras-section__price-value {
    font-weight: 600;
    color: var(--vt-primary);
}

.vt-extras-section__price--free {
    font-weight: 600;
    color: #10b981;
}

/* ===== CATALOG LAYOUT ===== */
.vt-catalog__layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

.vt-catalog__sidebar {
    position: sticky;
    top: 100px;
}

.vt-catalog__content {
    min-width: 0;
}

.vt-catalog__count {
    margin: 0 0 20px;
    font-size: 14px;
    color: #666;
}

.vt-catalog__count strong {
    color: #1a1a1a;
}

/* Tours grid 3 columns */
.vt-tours-grid--3cols {
    grid-template-columns: repeat(3, 1fr);
}

/* ===== CATALOG FILTERS (sidebar) ===== */
.vt-filters {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.vt-filters__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vt-filters__row {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vt-filters__field {
    width: 100%;
}

.vt-filters__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.vt-filters__select {
    width: 100%;
    height: auto;
    min-height: 48px;
    padding: 12px 40px 12px 14px;
    font-size: 14px;
    font-family: inherit;
    line-height: 1.5;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    color: #1a1a1a;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.vt-filters__select:hover {
    border-color: #ccc;
}

.vt-filters__select:focus {
    outline: none;
    border-color: var(--vt-primary);
    box-shadow: 0 0 0 3px rgba(23, 116, 187, 0.1);
}

.vt-filters__select:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.vt-filters__reset {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.vt-filters__reset:hover {
    color: #e53935;
    border-color: #e53935;
    background: #fff5f5;
}

.vt-filters__reset svg {
    flex-shrink: 0;
}

/* Responsive catalog */
@media (max-width: 1024px) {
    .vt-catalog__layout {
        grid-template-columns: 240px 1fr;
        gap: 24px;
    }

    .vt-tours-grid--3cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vt-catalog__layout {
        grid-template-columns: 1fr;
    }

    .vt-catalog__sidebar {
        position: static;
    }

    .vt-tours-grid--3cols {
        grid-template-columns: 1fr;
    }
}

/* ===== DURATION SLIDER (Range) ===== */
.vt-filters__field--duration {
    margin-top: 8px;
}

/* Duration Filter - поля ввода */
.vt-duration-filter {
    padding: 0;
}

.vt-duration-filter__inputs {
    display: flex;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.vt-duration-filter__group {
    flex: 1;
    padding: 12px 16px;
}

.vt-duration-filter__group:first-child {
    border-right: 1px solid #e0e0e0;
}

.vt-duration-filter__label {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
}

.vt-duration-filter__input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 0;
    outline: none;
    -moz-appearance: textfield;
}

.vt-duration-filter__input::-webkit-outer-spin-button,
.vt-duration-filter__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ===== MOBILE FILTERS ===== */

/* Кнопка открытия фильтров (только мобильные) */
.vt-filters-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.vt-filters-toggle:hover {
    border-color: var(--vt-primary);
    color: var(--vt-primary);
}

.vt-filters-toggle__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: var(--vt-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 11px;
}

/* Оверлей */
.vt-filters-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s;
}

.vt-filters-overlay.is-active {
    display: block;
    opacity: 1;
}

/* Заголовок панели фильтров (скрыт на десктопе) */
.vt-filters__header {
    display: none;
}

/* Футер с кнопками (скрыт на десктопе) */
.vt-filters__footer {
    display: none;
}

/* Десктоп кнопка сброса */
.vt-filters__field--desktop {
    display: block;
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 768px) {
    /* Показываем кнопку открытия */
    .vt-filters-toggle {
        display: flex;
    }

    /* Скрываем десктоп кнопку сброса */
    .vt-filters__field--desktop {
        display: none;
    }

    /* Панель фильтров - выезжает слева */
    .vt-filters {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        max-width: 360px;
        padding: 0;
        margin: 0;
        background: #fff;
        border-radius: 0;
        z-index: 9999;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .vt-filters.is-open {
        transform: translateX(0);
    }

    /* Заголовок мобильной панели */
    .vt-filters__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        background: #f8f9fa;
        border-bottom: 1px solid #e0e0e0;
        flex-shrink: 0;
    }

    .vt-filters__title {
        font-size: 18px;
        font-weight: 700;
        color: #1a1a1a;
    }

    .vt-filters__close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        background: none;
        border: none;
        border-radius: 8px;
        color: #666;
        cursor: pointer;
        transition: all 0.2s;
    }

    .vt-filters__close:hover {
        background: #e0e0e0;
        color: #1a1a1a;
    }

    /* Форма фильтров */
    .vt-filters__form {
        flex: 1;
        overflow-y: auto;
        padding: 20px;
        padding-bottom: 100px;
    }

    /* Футер с кнопками */
    .vt-filters__footer {
        display: flex;
        align-items: center;
        gap: 12px;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 16px 20px;
        background: #fff;
        border-top: 1px solid #e0e0e0;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    }

    .vt-filters__footer-reset {
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 500;
        color: #666;
        background: none;
        border: none;
        text-decoration: none;
        white-space: nowrap;
    }

    .vt-filters__footer-reset:hover {
        color: #e53935;
    }

    .vt-filters__apply {
        flex: 1;
        padding: 14px 24px;
        font-size: 15px;
        font-weight: 600;
        color: #fff;
        background: var(--vt-primary);
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: background 0.2s;
    }

    .vt-filters__apply:hover {
        background: var(--vt-primary-dark);
    }

    /* Скрываем сайдбар на мобильных */
    .vt-catalog__sidebar {
        display: block;
    }
}

/* ===== MOBILE BOOKING BOTTOM SHEET ===== */
/* Фиксированная кнопка бронирования внизу на мобильной */
.vt-booking-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 12px 16px;
    z-index: 900;
    border-top: 1px solid #e5e7eb;
}

.vt-booking-bottom-bar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.vt-booking-bottom-bar__price {
    display: flex;
    flex-direction: column;
}

.vt-booking-bottom-bar__price-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 2px;
}

.vt-booking-bottom-bar__price-value {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.vt-booking-bottom-bar__btn {
    flex: 1;
    max-width: 200px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #1774bb 0%, #0d5a94 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vt-booking-bottom-bar__btn:active {
    transform: scale(0.98);
}

.vt-booking-bottom-bar__btn--full {
    max-width: none;
    width: 100%;
}

/* Bottom Sheet Modal */
.vt-booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
}

.vt-booking-modal.is-active {
    pointer-events: all;
}

.vt-booking-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vt-booking-modal.is-active .vt-booking-modal__overlay {
    opacity: 1;
}

.vt-booking-modal__sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 24px 24px 0 0;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.vt-booking-modal.is-active .vt-booking-modal__sheet {
    transform: translateY(0);
}

.vt-booking-modal__header {
    flex-shrink: 0;
    padding: 16px 20px 12px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vt-booking-modal__handle {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #d1d5db;
    border-radius: 2px;
}

.vt-booking-modal__title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.vt-booking-modal__close {
    width: 40px;
    height: 40px;
    min-width: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    cursor: pointer;
    color: #1a1a1a;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.vt-booking-modal__close svg {
    width: 24px;
    height: 24px;
}

.vt-booking-modal__close:active {
    background: #f9fafb;
    transform: scale(0.95);
}

.vt-booking-modal__body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
}

/* Скрыть сайдбар на мобильной */
@media (max-width: 768px) {
    .vt-tour__sidebar {
        display: none;
    }

    .vt-tour__main {
        width: 100%;
    }

    .vt-booking-bottom-bar {
        display: block;
    }

    .vt-booking-modal {
        display: block;
    }
}

/* ===== Событийные экскурсии ===== */
.vt-event-excursions {
    padding: 20px 0 60px;
}

.vt-event-excursions__title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 28px;
}

.vt-event-excursions__empty {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
}

.vt-event-excursions__empty p {
    font-size: 16px;
    margin-top: 16px;
}

/* Табы */
.vt-event-tabs {
    display: flex;
    gap: 4px;
    background: #f1f3f7;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 32px;
}

.vt-event-tabs__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

.vt-event-tabs__btn:hover {
    color: #1a1a2e;
    background: transparent;
}

.vt-event-tabs__btn.is-active,
.vt-event-tabs__btn.is-active:hover {
    background: #fff;
    color: #1a1a2e;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.vt-event-tabs__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 12px;
    background: #e5e7eb;
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
}

.vt-event-tabs__btn.is-active .vt-event-tabs__count {
    background: #3b82f6;
    color: #fff;
}

/* Контент табов */
.vt-event-tab-content {
    display: none;
}

.vt-event-tab-content.is-active {
    display: block;
}

@media (max-width: 768px) {
    .vt-event-excursions__title {
        font-size: 24px;
    }

    .vt-event-tabs__btn {
        padding: 12px 14px;
        font-size: 14px;
    }
}
