.gt-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.gt-detail__navigation {
    margin-bottom: 20px;
}

.gt-detail__back {
    color: #C20E1A;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.gt-detail__back:hover {
    color: #0F2754;
    text-decoration: underline;
}

.gt-detail__title {
    font-size: 32px;
    margin: 0 0 30px 0;
    color: #0F2754;
}

.gt-detail__main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.gt-detail__image {
    width: 100%;
}

.gt-detail__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.gt-detail__info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.gt-detail__direction,
.gt-detail__dates,
.gt-detail__price {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
}

.gt-detail__label {
    display: block;
    font-weight: 600;
    color: #666;
    margin-bottom: 5px;
    font-size: 14px;
}

.gt-detail__value {
    font-size: 16px;
    color: #333;
}

.gt-detail__price-value {
    font-size: 24px;
    font-weight: 700;
    color: #C20E1A;
}

/* Статус */
.gt-detail__status-block {
    margin-bottom: 25px;
}

.gt-detail__status {
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
}

.gt-detail__status--open {
    background: #d4edda;
    color: #155724;
}

.gt-detail__status--few {
    background: #fff3cd;
    color: #856404;
}

.gt-detail__status--full {
    background: #e9ecef;
    color: #666;
}

/* Места */
.gt-detail__seats {
    margin-top: 10px;
}

.gt-detail__seats-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.gt-detail__seats-bar {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.gt-detail__seats-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.gt-detail__seats-fill--open {
    background: #28a745;
}

.gt-detail__seats-fill--few {
    background: #fd7e14;
}

.gt-detail__seats-fill--full {
    background: #999;
}

/* Кнопка заявки */
.gt-detail__actions {
    text-align: center;
}

.gt-detail__request-btn {
    background: #C20E1A;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.gt-detail__request-btn:hover {
    background: #a00c16;
    color: #fff;
}

/* Описание */
.gt-detail__description {
    background: #fff;
    padding: 30px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.gt-detail__description h3 {
    margin: 0 0 20px 0;
    color: #0F2754;
}

.gt-detail__text {
    line-height: 1.7;
    color: #555;
}

@media (max-width: 768px) {
    .gt-detail__main {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gt-detail__title {
        font-size: 24px;
    }

    .gt-detail__info {
        padding: 20px;
    }

    .gt-detail__description {
        padding: 20px;
    }

    .gt-detail__price-value {
        font-size: 20px;
    }
}
