/**
 * WooCommerce WhatsApp Enquiry - Premium Styling
 */

.wc-wae-button-wrapper {
    margin: 15px 0;
    display: block;
    clear: both;
    width: 100%;
}

.wc-wae-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: inherit;
}

.wc-wae-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    text-decoration: none !important;
}

.wc-wae-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.wc-wae-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.wc-wae-button:hover .wc-wae-icon {
    transform: scale(1.15) rotate(-5deg);
}

/* Specific styling integration for Phlox/Elementor compatibility */
.single-product .summary.entry-summary .wc-wae-button-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Custom alignment options if needed */
.wc-wae-align-center {
    text-align: center;
}
.wc-wae-align-center .wc-wae-button {
    margin-left: auto;
    margin-right: auto;
}

.wc-wae-align-right {
    text-align: right;
}
.wc-wae-align-right .wc-wae-button {
    margin-left: auto;
}

/* Responsive adjustments */
@media screen and (max-width: 480px) {
    .wc-wae-button {
        width: 100%;
        padding: 16px 20px;
        font-size: 15px;
    }
}
