/* ── Tour detail — premium gallery-integrated video CTA ───────────── */

.tour-video-wrap {
    margin-top: 4px;
    margin-bottom: 14px;
}

.tour-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #fff7dc, #f0c12b);
    color: #111;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 999px;
    padding: 8px 16px 8px 10px;
    font-size: 13.5px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(212, 175, 55, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.tour-video-btn:hover,
.tour-video-btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(212, 175, 55, 0.36);
    color: #111;
    text-decoration: none;
}

.tour-video-play-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #111;
    transition: transform 0.25s ease;
}

.tour-video-btn:hover .tour-video-play-circle,
.tour-video-btn:focus .tour-video-play-circle {
    transform: scale(1.08);
}

.tour-video-play-circle .play-icon {
    font-size: 12px;
    line-height: 1;
    color: #f0c12b;
    margin-left: 1px;
}

.tour-video-label {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .tour-video-wrap {
        display: flex;
        justify-content: center;
        margin-top: 2px;
        margin-bottom: 14px;
    }
}
