/* СТРАНИЦА ТУРА — базовые стили */
.single-tour-page {
    margin: 60px auto;
}

.single-tour-page h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a2c3e;
}

.tour-hero {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    margin-bottom: 50px;
}

.tour-gallery {
    background: #f0f5f9;
    border-radius: 20px;
    overflow: hidden;
}

.tour-gallery .main-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.tour-gallery-placeholder {
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    background: linear-gradient(135deg, #f0f5f9, #e0f0ed);
}

.tour-sidebar {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #eef2f5;
    position: sticky;
    top: 100px;
}

.tour-price-large {
    font-size: 38px;
    font-weight: 800;
    color: #e09515;
    margin-bottom: 5px;
}

.tour-price-large small {
    font-size: 15px;
    font-weight: 500;
    color: #6b7f8f;
}

.tour-price-note {
    font-size: 13px;
    color: #6b7f8f;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eef2f5;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eef2f5;
}

.detail-label {
    font-weight: 600;
    color: #1a2c3e;
}

.detail-value {
    color: #6b7f8f;
}

.book-button {
    background: #f5a623;
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 16px;
    width: 100%;
    margin-top: 25px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.book-button:hover {
    background: #e09515;
    transform: translateY(-2px);
}

.tour-content-section {
    margin-top: 40px;
}

.tour-content-section h2 {
    font-size: 28px;
    margin: 30px 0 15px;
    color: #1a2c3e;
}

.tour-content-section p {
    line-height: 1.7;
    color: #2c3e4e;
}

/* Адаптив */
@media (max-width: 992px) {
    .tour-hero {
        grid-template-columns: 1fr;
    }
    
    .tour-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .single-tour-page {
        margin: 30px auto;
    }
    
    .tour-price-large {
        font-size: 32px;
    }
}