.tour-info-fields {
    margin: 20px 0;
}

.tour-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tour-info-item {
    display: flex;
    align-items: center;
    padding: 1px 1px;
    margin-bottom: 0px;
    min-width: 280px;
    flex: 1;
}

.tour-icon {
    height: 20px;
    width: auto;
    margin-right: 12px;
    flex-shrink: 0;
}

.tour-info-content {
    font-size: 14px;
    line-height: 1.4;
}

.tour-info-content strong {
    color: #333;
    font-weight: 600;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .tour-info-row {
        flex-direction: column;
    }

    .tour-info-item {
        min-width: 100%;
    }
}

/* Блок "Важно знать!" */
.important-info-block {
    background-color: #f4f5efc2;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #f6d772;
}

.important-info-block p:last-child {
    margin-bottom: 0;
}

/* Блок с ценами */
.tour-prices-block {
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
}

.tour-prices-block h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.tour-prices-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tour-price-item {
    flex: 1;
    min-width: 120px;
    text-align: left;
}

.price-amount {
    margin-bottom: 8px;
}

.price-from {
    font-size: 14px;
    color: #666;

    margin-right: 0.1em;
}

.price-value {
    font-size: 24px;
    font-weight: bold;
    color: #8ab50e;
}

.price-type {
    font-size: 14px;
    color: #333;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
    .tour-prices-row {
        justify-content: space-around;
    }

    .tour-price-item {
        min-width: 100px;
    }
}

/* Подсказки для типов билетов */
.price-type {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 5px;
}

.price-tooltip {
    position: relative;
    display: inline-block;
    cursor: help;
}

.tooltip-icon {
    width: 12px;
    height: 12px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.tooltip-icon:hover {
    opacity: 1;
}

/* Подсказка при наведении */
.price-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 6px 10px;
    font-size: 10px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    pointer-events: none;
}

/* Показываем подсказку при наведении */
.price-tooltip:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Мобильная функция "Еще фото" для туров */
@media (max-width: 668px) {
    .mobile-read-more-cont {
        display: block;
        position: relative;
        text-align: center;
        z-index: 10;
        /* Градиент на всю ширину - выходим за пределы колонки */
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 1) 100%);
        height: 80px;
        margin-top: -80px;
        width: calc(100% + 30px);
        /* Компенсируем padding колонки */
        margin-left: -15px;
        margin-right: -15px;
    }

    body.single-tours .post-content1.readmore-active {
        max-height: 3000px !important;
    }

    body.single-tours .post-content1 {
        max-height: 380px;
        /* можно уменьшить количество видимых фото */
        overflow: hidden;
        transition: max-height ease 0.3s;
        position: relative;
    }

    .post-content1.readmore-active+.mobile-read-more-cont .opened {
        display: block;
        margin: 50px auto 0;
        /* Увеличил отступ сверху */
    }

    .post-content1+.mobile-read-more-cont .opened {
        display: none;
    }

    .mobile-read-more1 {
        margin: 50px auto 0;
        /* Увеличил отступ сверху */
        width: 130px;
        cursor: pointer;
        display: block;
        position: relative;
        z-index: 11;
    }

    .post-content1.readmore-active+.mobile-read-more-cont .closed {
        display: none;
    }

    .post-content1+.mobile-read-more-cont .closed {
        display: block;
        margin: 50px auto 0;
        /* Увеличил отступ сверху */
    }
}

/* Скрываем на больших экранах */
@media (min-width: 669px) {
    .mobile-read-more-cont {
        display: none !important;
    }
}

/* Блок "Смотрите также" для категорий туров */
.related.tour-categories {
    margin: -30px 0 80px 0;
}

.tour-categories-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tour-category-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.tour-category-item a {
    text-decoration: none;
    color: inherit;
}

.category-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.category-image:hover {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    color: white;
    padding: 15px;
}

.category-overlay h5 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1em;
    color: white !important;
}

.tours-count {
    font-size: 12px;
    opacity: 0.9;
    color: #ffe487;
}

/* Адаптив */
@media (max-width: 768px) {
    .tour-categories-grid {
        flex-direction: column;
        gap: 15px;
    }

    .category-image {
        height: 150px;
    }

    .related.tour-categories {
        margin: -10px 0 10px 0;
    }

    .tour-category-item {

        max-width: 400px;
    }
}