.book-tour-page {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.book-tour-header {
    text-align: center;
    margin-bottom: 50px;
}

.book-tour-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.book-tour-intro {
    font-family: 'Roboto', sans-serif;
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.book-tour-shop-link a {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.book-tour-shop-link a:hover {
    color: #747170;
}

.book-tour-empty {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #e5e5e5;
}

.event-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid #e5e5e5;
}

.event-item {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid #e5e5e5;
}

.event-datetime {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-date {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: #333;
    font-weight: 500;
}

.event-city {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #4169e1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.event-time {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #4169e1;
}

.event-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #333;
    margin: 0 0 0.35rem;
    font-weight: 500;
}

.event-location {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #555;
    margin: 0 0 0.35rem;
    line-height: 1.5;
}

.event-format {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
    font-style: italic;
}

.event-format a {
    color: #333;
    font-style: normal;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.event-format a:hover {
    color: #747170;
}

.event-link {
    display: inline-block;
    padding: 12px 20px;
    background-color: #333;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.event-link:hover {
    background-color: #555;
    color: #fff;
    text-decoration: none;
}

.event-link--disabled {
    background-color: #e8e8e8;
    color: #777;
    cursor: default;
}

@media (max-width: 768px) {
    .book-tour-page {
        padding: 40px 20px;
    }

    .book-tour-header {
        margin-bottom: 36px;
    }

    .book-tour-title {
        font-size: 2.2rem;
    }

    .book-tour-intro {
        font-size: 1.05rem;
    }

    .event-item {
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: center;
        padding: 24px 0;
    }

    .event-datetime {
        align-items: center;
        gap: 6px;
    }

    .event-date {
        font-size: 1.2rem;
    }

    .event-details {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .event-title {
        font-size: 1.15rem;
    }

    .event-location,
    .event-format {
        max-width: 320px;
    }

    .event-action {
        margin-top: 4px;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .event-link {
        width: 100%;
        max-width: 240px;
        white-space: normal;
    }
}
