/**
 * BedCastle WhatsApp Inquiry Button Styles
 */

.bedcastle-whatsapp-container {
    display: inline-block;
    margin: 15px 0;
    font-family: inherit;
}

.bedcastle-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
}

.bedcastle-whatsapp-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: #ffffff !important;
}

.bedcastle-whatsapp-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.2);
}

.bedcastle-whatsapp-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
}

.bedcastle-whatsapp-text {
    line-height: 1;
    display: inline-block;
}
