/* WPLiteTheme – WhatsApp Us & Book Now buttons (single product only) */

.wplitetheme-service-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 20px 0 8px;
}

.wplitetheme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 28px!important;
    border-radius: 7px!important;
    font-weight: 700;
    font-size: 15px!important;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1 1 0;
    box-sizing: border-box;
}

.wplitetheme-btn__icon {
    display: inline-flex;
    margin-right: 10px;
}

.wplitetheme-btn__icon svg {
    width: 22px;
    height: 22px;
}

/* WhatsApp button */
.wplitetheme-btn--whatsapp {
    background: #ffffff;
    border-color: #25d366!important;
    color: #25d366!important;
}

.wplitetheme-btn--whatsapp:hover {
    background: #25d366;
    color: #ffffff!important;
}

/* Book Now button */
.wplitetheme-btn--book {
    background: var(--primary-color)!important;
    color: #ffffff!important;
}

.wplitetheme-btn--book:hover {
    filter: brightness(0.9);
}

.wplitetheme-btn__icon--arrow {
    margin-right: 0;
    margin-left: 10px;
}

/* Mobile – stack buttons full width */
@media (max-width: 768px) {
    .wplitetheme-service-buttons {
        flex-direction: column;
    }
}
