            /* Стили для страницы Экскурсии */
            .excursions-header {
                text-align: center;
                margin-bottom: 3rem;
                padding-top: 2rem;
            }
            
            .excursions-header h2 {
                color: #2a5298;
                font-size: 2.8rem;
                margin-bottom: 1rem;
                font-weight: 700;
                text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            }
            
            .excursions-header .subtitle {
                font-size: 1.2rem;
                color: #555;
                max-width: 800px;
                margin: 0 auto;
                line-height: 1.6;
            }
            
            .excursions-intro {
                max-width: 800px;
                margin: 0 auto 3rem;
                text-align: center;
                font-size: 1.1rem;
                line-height: 1.7;
                color: #555;
            }
            
            /* НОВЫЙ СТИЛЬ ФИЛЬТРОВ (из кода 2) */
            .excursion-filters {
                background: white;
                border-radius: 12px;
                padding: 2rem;
                margin-bottom: 2rem;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
                border: 1px solid #e2e8f0;
            }
            
            .filter-title {
                color: #2a5298;
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
                text-align: center;
                border-bottom: 2px solid #ff6600;
                padding-bottom: 10px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
            }
            
            .filter-title i {
                color: #ff6600;
            }
            
            .filters-container {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 2rem;
                margin-bottom: 2rem;
            }
            
            .filter-group {
                background: #f8fafc;
                padding: 1.5rem;
                border-radius: 10px;
                border-left: 4px solid #2a5298;
            }
            
            .filter-group-title {
                color: #2a5298;
                font-size: 1.1rem;
                font-weight: 600;
                margin-bottom: 1rem;
                display: flex;
                align-items: center;
                gap: 8px;
            }
            
            .filter-group-title i {
                color: #ff6600;
                font-size: 1rem;
            }
            
            .filter-options {
                display: flex;
                flex-wrap: wrap;
                gap: 0.5rem;
            }
            
            .filter-option {
                padding: 0.5rem 1rem;
                background: white;
                border: 2px solid #e2e8f0;
                border-radius: 6px;
                color: #555;
                font-size: 0.9rem;
                cursor: pointer;
                transition: all 0.3s ease;
            }
            
            .filter-option:hover {
                border-color: #2a5298;
                background: #f0f4ff;
            }
            
            .filter-option.active {
                background: #2a5298;
                color: white;
                border-color: #2a5298;
            }
            
            /* Price Filter (из кода 2) */
            .price-filter {
                background: #f8fafc;
                padding: 1.5rem;
                border-radius: 10px;
                margin-bottom: 1.5rem;
                border-left: 4px solid #ff6600;
            }
            
            .price-slider-container {
                margin-top: 1rem;
            }
            
            .price-slider {
                width: 100%;
                height: 8px;
                -webkit-appearance: none;
                background: #e2e8f0;
                border-radius: 4px;
                outline: none;
            }
            
            .price-slider::-webkit-slider-thumb {
                -webkit-appearance: none;
                width: 24px;
                height: 24px;
                border-radius: 50%;
                background: #ff6600;
                cursor: pointer;
                border: 3px solid white;
                box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            }
            
            .price-slider::-moz-range-thumb {
                width: 24px;
                height: 24px;
                border-radius: 50%;
                background: #ff6600;
                cursor: pointer;
                border: 3px solid white;
                box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            }
            
            .price-value {
                color: #ff6600;
                font-weight: 700;
                font-size: 1.2rem;
            }
            
            .reset-filters {
                background: #e2e8f0;
                color: #555;
                border: none;
                padding: 0.8rem 1.5rem;
                border-radius: 6px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                display: flex;
                align-items: center;
                gap: 8px;
                margin: 0 auto;
            }
            
            .reset-filters:hover {
                background: #cbd5e1;
                color: #2a5298;
            }
            
            .reset-filters i {
                transition: transform 0.3s ease;
            }
            
            .reset-filters:hover i {
                transform: rotate(180deg);
            }
            
            /* Контейнер поиска */
            .search-container {
                max-width: 800px;
                margin: 0 auto 2rem;
                position: relative;
            }
            
            .search-box {
                width: 100%;
                padding: 1rem 1.5rem;
                padding-right: 3.5rem;
                font-size: 1.1rem;
                border: 2px solid #e2e8f0;
                border-radius: 8px;
                background-color: #f8fafc;
                color: #2a5298;
                transition: all 0.3s ease;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            }
            
            .search-box:focus {
                outline: none;
                border-color: #2a5298;
                background-color: white;
                box-shadow: 0 4px 15px rgba(42, 82, 152, 0.1);
            }
            
            .search-box::placeholder {
                color: #94a3b8;
            }
            
            .search-icon {
                position: absolute;
                right: 1.2rem;
                top: 50%;
                transform: translateY(-50%);
                color: #94a3b8;
                font-size: 1.2rem;
                pointer-events: none;
            }
            
            /* Скрытие поиска и фильтров */
            .search-filters-container.hidden {
                display: none;
            }
            
            .search-results-info {
                text-align: center;
                margin-bottom: 1.5rem;
                color: #2a5298;
                font-size: 1.1rem;
                font-weight: 600;
                display: none;
            }
            
            .search-results-info.show {
                display: block;
            }
            
            .search-no-results {
                text-align: center;
                padding: 3rem;
                color: #94a3b8;
                font-size: 1.2rem;
                display: none;
            }
            
            .search-no-results.show {
                display: block;
            }
            
            /* Полоска с кнопкой фильтра */
            .filter-toggle-bar {
                display: flex;
                justify-content: flex-end;
                align-items: center;
                padding: 0.8rem 1rem;
                background: #f8fafc;
                border-radius: 8px;
                margin-bottom: 1.5rem;
                border: 1px solid #e2e8f0;
                position: relative;
            }
            
            .filter-toggle-bar::before {
                content: '';
                position: absolute;
                left: 1rem;
                top: 50%;
                transform: translateY(-50%);
                width: calc(100% - 120px);
                height: 2px;
                background: linear-gradient(90deg, #2a5298, #ff6600);
                border-radius: 1px;
            }
            
            .filter-toggle-btn {
                padding: 0.6rem 1.2rem;
                background-color: #2a5298;
                color: white;
                border: none;
                border-radius: 6px;
                cursor: pointer;
                font-weight: 600;
                display: flex;
                align-items: center;
                gap: 0.5rem;
                transition: all 0.3s ease;
                z-index: 1;
            }
            
            .filter-toggle-btn:hover {
                background-color: #1e3c72;
                transform: translateY(-2px);
                box-shadow: 0 4px 12px rgba(42, 82, 152, 0.3);
            }
            
            .filter-toggle-btn i {
                transition: transform 0.3s ease;
            }
            
            .filter-toggle-btn.active i {
                transform: rotate(180deg);
            }
            
            /* Стили для карточек-флипов */
            .flip-card-container {
                display: grid;
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                gap: 2rem;
                margin-bottom: 3rem;
            }
            
            .flip-card {
                background-color: transparent;
                width: 100%;
                height: 420px;
                perspective: 1000px;
                border-radius: 12px;
                cursor: pointer;
            }
            
            .flip-card-inner {
                position: relative;
                width: 100%;
                height: 100%;
                text-align: center;
                transition: transform 0.8s;
                transform-style: preserve-3d;
                border-radius: 12px;
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            }
            
            .flip-card:hover .flip-card-inner {
                transform: rotateY(180deg);
            }
            
            .flip-card.flipped .flip-card-inner {
                transform: rotateY(180deg);
            }
            
            .flip-card.hidden {
                display: none;
            }
            
            .flip-card-front, .flip-card-back {
                position: absolute;
                width: 100%;
                height: 100%;
                -webkit-backface-visibility: hidden;
                backface-visibility: hidden;
                border-radius: 12px;
                overflow: hidden;
            }
            
            .flip-card-front {
                background-color: #fff;
                color: #333;
                display: flex;
                flex-direction: column;
            }
            
            .flip-card-front img {
                width: 100%;
                height: 220px;
                object-fit: cover;
            }
            
            .flip-card-front h3 {
                color: #2a5298;
                font-size: 1.5rem;
                margin: 1rem 0 0.5rem;
                padding: 0 1rem;
            }
            
            /* Три кружка для категорий на флип-картах - ИЗМЕНЕНИЕ РАЗМЕРА ДЛЯ СЛОВ */
            .excursion-categories {
                position: absolute;
                top: 15px;
                left: 15px;
                display: flex;
                gap: 8px;
                z-index: 2;
            }
            
            .category-circle {
                width: auto; /* Изменено с 36px */
                height: 36px;
                padding: 0 10px; /* Добавлено для слов */
                border-radius: 50px; /* Изменено для овальной формы */
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-weight: 600;
                font-size: 0.7rem; /* Уменьшен размер шрифта для слов */
                box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
                transition: all 0.3s ease;
                position: relative;
                white-space: nowrap; /* Предотвращает перенос текста */
            }
            
            .category-circle:hover {
                transform: scale(1.1);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
            }
            
            .category-circle.type {
                background: linear-gradient(135deg, #FF6600, #FF8C00);
            }
            
            .category-circle.transport {
                background: linear-gradient(135deg, #2a5298, #1e3c72);
            }
            
            .category-circle.duration {
                background: linear-gradient(135deg, #00B894, #00A085);
            }
            
            /* НОВЫЙ СТИЛЬ ДЛЯ КРУЖКА ОРГАНИЗАТОРА (если нужно будет показывать) */
            .category-circle.organizer {
                background: linear-gradient(135deg, #9B59B6, #8E44AD);
            }
            
            .category-circle .tooltip {
                position: absolute;
                bottom: 100%;
                left: 50%;
                transform: translateX(-50%);
                background: rgba(0, 0, 0, 0.85);
                color: white;
                padding: 6px 10px;
                border-radius: 6px;
                font-size: 0.75rem;
                white-space: nowrap;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                margin-bottom: 8px;
                pointer-events: none;
                z-index: 10;
            }
            
            .category-circle .tooltip::after {
                content: '';
                position: absolute;
                top: 100%;
                left: 50%;
                transform: translateX(-50%);
                border-width: 5px;
                border-style: solid;
                border-color: rgba(0, 0, 0, 0.85) transparent transparent transparent;
            }
            
            .category-circle:hover .tooltip {
                opacity: 1;
                visibility: visible;
            }
            
            .flip-card-front .description {
                padding: 0 1.2rem;
                font-size: 0.95rem;
                line-height: 1.4;
                color: #555;
                margin-bottom: 0.5rem;
                flex-grow: 1;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }
            
            .flip-card-front .description-line {
                margin-bottom: 0.3rem;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            
            .flip-card-front .description-line:last-child {
                margin-bottom: 0;
            }
            
            .flip-card-back {
                background: linear-gradient(135deg, #2a5298, #1e3c72);
                color: white;
                transform: rotateY(180deg);
                padding: 2rem 1.5rem;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
            }
            
            .flip-card-back h3 {
                font-size: 1.5rem;
                margin-bottom: 1rem;
                color: #fff;
            }
            
            .flip-card-back p {
                font-size: 0.95rem;
                line-height: 1.6;
                margin-bottom: 1.5rem;
                flex-grow: 1;
                overflow-y: auto;
                max-height: 180px;
                padding-right: 5px;
            }
            
            .flip-card-back p::-webkit-scrollbar {
                width: 4px;
            }
            
            .flip-card-back p::-webkit-scrollbar-track {
                background: rgba(255, 255, 255, 0.1);
                border-radius: 10px;
            }
            
            .flip-card-back p::-webkit-scrollbar-thumb {
                background: rgba(255, 255, 255, 0.3);
                border-radius: 10px;
            }
            
            .details-btn-flip {
                background-color: #ff6600;
                color: white;
                border: none;
                padding: 0.8rem 1.5rem;
                border-radius: 6px;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.3s ease;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
                text-decoration: none;
                font-size: 0.95rem;
                margin-top: auto;
            }
            
            .details-btn-flip:hover {
                background-color: #e55a00;
                transform: translateY(-2px);
            }
            
            .flip-card-meta {
                display: flex;
                justify-content: space-between;
                padding: 0.8rem 1.5rem 1rem;
                color: #666;
                font-size: 0.9rem;
                border-top: 1px solid #eee;
                margin-top: auto;
            }
            
            .meta-item {
                display: flex;
                align-items: center;
                gap: 5px;
            }
            
            .meta-item i {
                color: #ff6600;
            }
            
            /* Стили для статистики экскурсий */
            .excursions-stats {
                background: linear-gradient(135deg, #2a5298, #1e3c72);
                color: white;
                border-radius: 12px;
                padding: 2rem;
                margin-bottom: 2.5rem;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 1.5rem;
                text-align: center;
            }
            
            .stat-item {
                padding: 1rem;
            }
            
            .stat-value {
                font-size: 2.5rem;
                font-weight: 700;
                margin-bottom: 0.5rem;
                display: block;
                color: #ffffff;
            }
            
            .stat-label {
                font-size: 1rem;
                opacity: 0.9;
                color: #ffffff;
            }
            
            /* Стили для фотогалереи */
            .gallery-section {
                margin: 40px 0;
                background: white;
                border-radius: 12px;
                padding: 2rem;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            }
            
            .gallery-main-image-container {
                position: relative;
                width: 100%;
                height: 500px;
                margin-bottom: 20px;
                overflow: hidden;
                border-radius: 10px;
            }
            
            .gallery-main-image {
                width: 100%;
                height: 100%;
                object-fit: cover;
                cursor: pointer;
                transition: transform 0.3s ease;
            }
            
            .gallery-main-image:hover {
                transform: scale(1.01);
            }
            
            /* Оранжевый кружок на главном изображении */
            .gallery-badge {
                position: absolute;
                top: 20px;
                left: 20px;
                background: #ff6600;
                color: white;
                padding: 0.8rem 1.5rem;
                border-radius: 30px;
                font-weight: 600;
                font-size: 1rem;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                z-index: 2;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                max-width: 220px;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
                line-height: 1.3;
                transition: all 0.3s ease;
            }
            
            .gallery-badge:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            }
            
            .thumbnail-container {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;
                margin-top: 15px;
            }
            
            .thumbnail {
                width: 100px;
                height: 70px;
                object-fit: cover;
                border-radius: 5px;
                cursor: pointer;
                opacity: 0.7;
                transition: all 0.3s ease;
            }
            
            .thumbnail:hover, .thumbnail.active {
                opacity: 1;
                transform: scale(1.05);
                border: 2px solid #3498db;
            }
            
            /* Lightbox с оранжевым кружком */
            .lightbox {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.95);
                z-index: 1000;
                justify-content: center;
                align-items: center;
            }
            
            .lightbox.active {
                display: flex;
            }
            
            .lightbox-content {
                position: relative;
                max-width: 90%;
                max-height: 90%;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .lightbox-img {
                max-width: 100%;
                max-height: 85vh;
                border-radius: 8px;
                object-fit: contain;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            }
            
            /* Оранжевый кружок в лайтбоксе */
            .lightbox-badge {
                position: absolute;
                top: 20px;
                left: 20px;
                background: #ff6600;
                color: white;
                padding: 0.8rem 1.5rem;
                border-radius: 30px;
                font-weight: 600;
                font-size: 1rem;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                z-index: 2;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                max-width: 220px;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
                line-height: 1.3;
                transition: all 0.3s ease;
            }
            
            .lightbox-badge:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
            }
            
            .lightbox-close {
                position: absolute;
                top: 20px;
                right: 30px;
                color: white;
                font-size: 40px;
                cursor: pointer;
                transition: color 0.3s;
                z-index: 1001;
                background: rgba(0, 0, 0, 0.5);
                width: 50px;
                height: 50px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .lightbox-close:hover {
                color: #ff6600;
                background: rgba(0, 0, 0, 0.7);
            }
            
            /* Кнопки навигации в лайтбоксе */
            .lightbox-nav {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                background: rgba(0, 0, 0, 0.5);
                color: white;
                font-size: 30px;
                width: 60px;
                height: 60px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: all 0.3s ease;
                z-index: 1001;
            }
            
            .lightbox-nav:hover {
                background: rgba(0, 0, 0, 0.8);
                color: #ff6600;
                transform: translateY(-50%) scale(1.1);
            }
            
            .lightbox-prev {
                left: 20px;
            }
            
            .lightbox-next {
                right: 20px;
            }
            
            /* Индикатор номера изображения в лайтбоксе */
            .lightbox-counter {
                position: absolute;
                bottom: 20px;
                left: 50%;
                transform: translateX(-50%);
                color: white;
                font-size: 1.2rem;
                background: rgba(0, 0, 0, 0.5);
                padding: 0.5rem 1rem;
                border-radius: 20px;
                z-index: 1001;
            }
            
            /* Обновленные стили для навигации между разделами */
            .excursions-nav {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 2rem;
                padding: 1rem;
                background: white;
                border-radius: 12px;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            }
            
            .nav-left {
                display: flex;
                flex-wrap: wrap;
                gap: 0.5rem;
            }
            
            .nav-right {
                display: flex;
                gap: 0.5rem;
            }
            
            .excursions-nav-btn {
                padding: 0.8rem 1.5rem;
                border: 2px solid #e2e8f0;
                background: #f8fafc;
                border-radius: 6px;
                cursor: pointer;
                font-weight: 600;
                color: #2a5298;
                transition: all 0.3s ease;
                display: flex;
                align-items: center;
                gap: 0.5rem;
                white-space: nowrap;
            }
            
            .excursions-nav-btn:hover {
                background: #edf2f7;
                border-color: #cbd5e0;
            }
            
            .excursions-nav-btn.active {
                background: #2a5298;
                color: white;
                border-color: #2a5298;
            }
            
            /* Разделы контента */
            .excursions-section {
                display: none;
            }
            
            .excursions-section.active {
                display: block;
            }
            
            .excursions-header {
                text-align: center;
                margin-bottom: 2rem;
            }
            
            .excursions-header h2 {
                color: #2a5298;
                font-size: 2rem;
                margin-bottom: 0.5rem;
            }
            
            /* Заголовки секций */
            .section-header {
                color: #2c3e50;
                border-bottom: 2px solid #3498db;
                padding-bottom: 10px;
                margin-bottom: 20px;
                display: flex;
                align-items: center;
            }
            
            .section-header i {
                margin-right: 10px;
                color: #3498db;
            }
            
            /* Виджет Трипстер */
            .tripster-widget-container {
                margin: 3rem 0;
                background: #f8f9fa;
                padding: 2rem;
                border-radius: 12px;
                border-left: 5px solid #ff6600;
            }
            
            .tripster-intro {
                margin-bottom: 2rem;
                text-align: center;
            }
            
            .tripster-intro h3 {
                color: #2a5298;
                margin-bottom: 1rem;
            }
            
            /* Легенда для кружков */
            .category-legend {
                background: white;
                border-radius: 12px;
                padding: 1.5rem;
                margin-bottom: 2rem;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
                border: 1px solid #e2e8f0;
            }
            
            .category-legend h4 {
                color: #2a5298;
                margin-bottom: 1rem;
                font-size: 1.2rem;
                display: flex;
                align-items: center;
                gap: 0.5rem;
            }
            
            .category-legend h4 i {
                color: #ff6600;
            }
            
            .legend-items {
                display: flex;
                flex-wrap: wrap;
                gap: 1.5rem;
                justify-content: center;
            }
            
            .legend-item {
                display: flex;
                align-items: center;
                gap: 0.8rem;
            }
            
            .legend-circle {
                width: 24px;
                height: 24px;
                border-radius: 50%;
                box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            }
            
            .legend-circle.type {
                background: linear-gradient(135deg, #FF6600, #FF8C00);
            }
            
            .legend-circle.transport {
                background: linear-gradient(135deg, #2a5298, #1e3c72);
            }
            
            .legend-circle.duration {
                background: linear-gradient(135deg, #00B894, #00A085);
            }
            
            /* НОВЫЙ СТИЛЬ ДЛЯ КРУЖКА ОРГАНИЗАТОРА В ЛЕГЕНДЕ */
            .legend-circle.organizer {
                background: linear-gradient(135deg, #9B59B6, #8E44AD);
            }
            
            .legend-text {
                font-size: 0.95rem;
                color: #555;
            }
            
            /* Адаптивность */
            @media (max-width: 768px) {
                .excursions-stats {
                    grid-template-columns: 1fr;
                }
                
                .flip-card-container {
                    grid-template-columns: 1fr;
                }
                
                .gallery-main-image-container {
                    height: 300px;
                }
                
                .excursions-header h2 {
                    font-size: 2.2rem;
                }
                
                .gallery-badge {
                    top: 10px;
                    left: 10px;
                    padding: 0.6rem 1rem;
                    font-size: 0.9rem;
                    max-width: 180px;
                }
                
                .lightbox-badge {
                    top: 10px;
                    left: 10px;
                    padding: 0.6rem 1rem;
                    font-size: 0.9rem;
                    max-width: 180px;
                }
                
                .lightbox-nav {
                    width: 50px;
                    height: 50px;
                    font-size: 24px;
                }
                
                .lightbox-prev {
                    left: 10px;
                }
                
                .lightbox-next {
                    right: 10px;
                }
                
                .search-tags {
                    justify-content: flex-start;
                    overflow-x: auto;
                    padding-bottom: 0.5rem;
                }
                
                .filters-container {
                    grid-template-columns: 1fr;
                    gap: 1rem;
                }
                
                .filter-toggle-bar::before {
                    width: calc(100% - 140px);
                }
                
                /* Адаптивность для слов в кружках */
                .category-circle {
                    width: auto;
                    height: 28px;
                    padding: 0 8px;
                    font-size: 0.6rem;
                }
                
                .legend-items {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 1rem;
                }
                
                /* Адаптивность для новой навигации */
                .excursions-nav {
                    flex-direction: column;
                    gap: 1rem;
                    align-items: stretch;
                }
                
                .nav-left, .nav-right {
                    justify-content: center;
                    width: 100%;
                }
                
                .excursion-filters {
                    padding: 1.5rem;
                }
                
                .filter-group {
                    padding: 1.2rem;
                }
            }
            
            @media (max-width: 480px) {
                .flip-card {
                    height: 400px;
                }
                
                .excursions-header h2 {
                    font-size: 1.8rem;
                }
                
                .gallery-main-image-container {
                    height: 250px;
                }
                
                .thumbnail {
                    width: 80px;
                    height: 60px;
                }
                
                .gallery-badge {
                    font-size: 0.8rem;
                    padding: 0.5rem 0.8rem;
                    max-width: 150px;
                }
                
                .lightbox-badge {
                    font-size: 0.8rem;
                    padding: 0.5rem 0.8rem;
                    max-width: 150px;
                }
                
                .filter-toggle-bar::before {
                    width: calc(100% - 150px);
                }
                
                .filter-toggle-btn {
                    padding: 0.5rem 1rem;
                    font-size: 0.9rem;
                }
                
                /* Адаптивность для слов в кружках на маленьких экранах */
                .category-circle {
                    width: auto;
                    height: 26px;
                    padding: 0 6px;
                    font-size: 0.55rem;
                }
                
                /* Адаптивность для новой навигации на маленьких экранах */
                .excursions-nav-btn {
                    padding: 0.7rem 1rem;
                    font-size: 0.9rem;
                }
                
                .price-filter {
                    padding: 1.2rem;
                }
                
                .price-value {
                    font-size: 1.1rem;
                }
            }
            
            /* Стили для утилит */
            .hidden {
                display: none !important;
            }
            
            /* Orange scroll-to-top arrow styles */
            .scroll-to-top {
                position: fixed;
                bottom: 30px;
                right: 30px;
                width: 50px;
                height: 50px;
                background-color: #ff6600;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                opacity: 0;
                visibility: hidden;
                transform: translateY(20px);
                transition: all 0.3s ease;
                z-index: 9999;
                box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
            }
            
            .scroll-to-top.visible {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            
            .scroll-to-top:hover {
                background-color: #e55a00;
                box-shadow: 0 6px 16px rgba(255, 102, 0, 0.4);
                transform: translateY(-3px);
            }
            
            .scroll-to-top:active {
                transform: translateY(-1px);
            }
            
            .scroll-to-top i {
                color: white;
                font-size: 24px;
                transition: transform 0.3s ease;
            }
            
            .scroll-to-top:hover i {
                transform: translateY(-2px);
            }
            
            /* Animation for auto-scrolling when hovering */
            .scroll-to-top.scrolling i {
                animation: bounce 0.8s infinite alternate;
            }
            
            @keyframes bounce {
                from {
                    transform: translateY(0);
                }
                to {
                    transform: translateY(-5px);
                }
            }
            
            /* УВЕЛИЧЕННЫЙ РАЗМЕР ДЛЯ ПЕРВОЙ НАДПИСИ "МЫ НА ЭКСКУРСИЯХ" */
.excursions-header h2 {
    color: #2a5298;
    font-size: 3.5rem; /* Увеличено с 2.8rem */
    margin-bottom: 1rem;
    font-weight: 800; /* Сделано более жирным */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.15);
    letter-spacing: 0.5px; /* Легкое увеличение расстояния между буквами */
    line-height: 1.2; /* Оптимальная высота строки */
}

/* Подзаголовок тоже можно немного увеличить для гармонии */
.excursions-header .subtitle {
    font-size: 1.3rem; /* Было 1.2rem */
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Адаптивность для больших экранов */
@media (min-width: 1200px) {
    .excursions-header h2 {
        font-size: 4rem; /* Еще больше на очень больших экранах */
    }
}

/* Адаптивность для планшетов */
@media (max-width: 992px) {
    .excursions-header h2 {
        font-size: 3rem; /* Немного меньше на планшетах */
    }
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .excursions-header h2 {
        font-size: 2.5rem; /* Соответственно уменьшаем на мобильных */
        font-weight: 700;
    }
    
    .excursions-header .subtitle {
        font-size: 1.1rem;
    }
}

/* Адаптивность для очень маленьких экранов */
@media (max-width: 480px) {
    .excursions-header h2 {
        font-size: 2.2rem; /* Для очень маленьких экранов */
    }
}

/* Альтернативный вариант с градиентным текстом для большей заметности */
.excursions-header h2.gradient-text {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Если нужно добавить декоративный элемент под заголовком */
.excursions-header h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff6600, #ff8c00);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Для дополнительного акцента можно добавить анимацию появления */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.excursions-header h2 {
    animation: fadeInUp 0.8s ease-out;
}

    .booking-note {
    font-size: 0.9rem;
    color: #e74c3c;
    font-weight: 500;
    margin-bottom: 12px;
    padding: 8px 12px;
    background-color: #fdf2f2;
    border-radius: 5px;
    border-left: 3px solid #e74c3c;
}

/* Стили для сортировки */
.sorting-container {
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.sorting-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.sorting-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sort-btn {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    color: #555;
}

.sort-btn:hover {
    background-color: #f0f0f0;
    border-color: #aaa;
}

.sort-btn.active {
    background-color: #2a5298;
    color: white;
    border-color: #2a5298;
}

.sort-btn i {
    margin-right: 5px;
}

/* Стили для отображения результатов сортировки */
.sort-results-info {
    margin: 10px 0;
    padding: 10px;
    background-color: #e8f4fc;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #2a5298;
    border-left: 3px solid #2a5298;
}

            /* Дополнительные стили для карточек городов */
            .flip-card-front .city-stats {
                display: flex;
                justify-content: space-between;
                margin-top: 12px;
                padding: 0 12px;
                color: #555;
                font-size: 0.85rem;
            }
            
            .flip-card-front .city-stats i {
                color: #f28d09;
                margin-right: 5px;
            }
            
            .flip-card-front h3 {
                margin-bottom: 5px;
            }
            
            /* Скрытие ненужных элементов */
            .filter-toggle-bar,
            .category-legend,
            .excursion-filters,
            .reset-filters,
            .price-filter,
            .tripster-widget-container,
            #unforgettable-excursions,
            #interesting-excursions {
                display: none !important;
            }
            
            /* Адаптация навигационных кнопок */
            .excursions-nav {
                justify-content: space-between;
                margin-top: 20px;
            }
            
            .nav-left .excursions-nav-btn.disabled {
                opacity: 0.5;
                pointer-events: none;
                background-color: #ddd;
            }
            
            /* Стили для контейнера сортировки */
            .sorting-container {
                margin-top: 30px;
                padding-top: 20px;
                border-top: 1px solid #eee;
            }
            
            /* Галерея оставлена */
            .gallery-section {
                margin-bottom: 40px;
            }
            
            /* Кнопка Золотое кольцо */
            .nav-right .excursions-nav-btn {
                background-color: #d4af37;
                border-color: #b8860b;
            }
            
            .nav-right .excursions-nav-btn:hover {
                background-color: #f5d742;
            }
            
            /* Стили для data-атрибута золотого кольца */
            .flip-card[data-zolkol="true"] {
                /* Специальные стили при необходимости */
            }