/* WC Info Events – Front-end buttons */

.wcie-booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
}

.wcie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.15s ease;
    line-height: 1.2;
    border: none;
}

.wcie-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.wcie-btn:active {
    transform: translateY(0);
}

.wcie-btn__icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

/* Button colors are set via inline style; ensure text stays white */
.wcie-btn--whatsapp,
.wcie-btn--email,
.wcie-btn--phone {
    color: #fff;
}
.wcie-btn--whatsapp:hover,
.wcie-btn--whatsapp:visited,
.wcie-btn--email:hover,
.wcie-btn--email:visited,
.wcie-btn--phone:hover,
.wcie-btn--phone:visited {
    color: #fff;
}
