/* Tour single page overrides. The tour single reuses the event single layout
   (soves-event-single) for a consistent public look. These rules add the
   WhatsApp / phone contact buttons and polish any tour-only details. */

.soves-tour-single .soves-event-book-card {
    display: grid;
    gap: 10px;
}

.soves-tour-single .soves-tour-contact-button {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    padding: 12px 16px;
    box-shadow: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.16s ease;
}

.soves-tour-single .soves-tour-contact-button--whatsapp {
    background: #25d366;
}

.soves-tour-single .soves-tour-contact-button--whatsapp:hover,
.soves-tour-single .soves-tour-contact-button--whatsapp:focus-visible {
    background: #1da851;
    color: #ffffff;
    outline: 0;
}

.soves-tour-single .soves-tour-contact-button--phone {
    background: var(--soves-primary, #e24a3b);
}

.soves-tour-single .soves-tour-contact-button--phone:hover,
.soves-tour-single .soves-tour-contact-button--phone:focus-visible {
    background: var(--soves-primary-dark, #be3429);
    color: #ffffff;
    outline: 0;
}

.soves-tour-single .soves-tour-contact-button .soves-ms-icon {
    flex: 0 0 auto;
    font-size: 18px;
}

.soves-tour-single .soves-tour-contact-note {
    margin: 0;
    color: #4e5561;
    font-size: 13px;
    line-height: 1.5;
}

.soves-tour-single .soves-event-book-card > a.soves-tour-contact-button + a.soves-tour-contact-button {
    margin-top: 0;
}