/* WA Order Manager — Frontend Button */

.wam-wa-btn-wrap {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    clear: both;
}

.wam-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 320px;
    background: #25D366;
    color: #fff !important;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none !important;
    transition: background .2s, transform .1s;
    box-shadow: 0 2px 8px rgba(37, 211, 102, .35);
    box-sizing: border-box;
    border: none;
    cursor: pointer;
}

.wam-wa-btn:hover {
    background: #1da851 !important;
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, .45);
}

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

.wam-wa-btn svg {
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}
