.ny-wa-button-wrap {
    display: flex;
    width: 100%;
    margin: 12px 0;
}

.ny-wa-align-left {
    justify-content: flex-start;
}

.ny-wa-align-center {
    justify-content: center;
}

.ny-wa-align-right {
    justify-content: flex-end;
}

.ny-wa-button {
    width: var(--ny-wa-size, 150px);
    height: var(--ny-wa-size, 150px);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-sizing: border-box;
    border-radius: 30px;
    padding: 16px;
    background: #25d366;
    color: #ffffff !important;
    text-align: center;
    text-decoration: none !important;
    font-family: inherit;
    line-height: 1.1;
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.30);
    transform: translateY(0);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
    -webkit-tap-highlight-color: transparent;
}

.ny-wa-button:hover,
.ny-wa-button:focus {
    color: #ffffff !important;
    text-decoration: none !important;
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(37, 211, 102, 0.38);
    filter: saturate(1.05);
    outline: none;
}

.ny-wa-button:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.32);
    outline-offset: 4px;
}

.ny-wa-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ny-wa-icon svg {
    width: 46px;
    height: 46px;
    display: block;
    fill: currentColor;
}

.ny-wa-label {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.ny-wa-admin-warning {
    padding: 10px 12px;
    border-left: 4px solid #d63638;
    background: #fff5f5;
    color: #7a1f1f;
    font-size: 14px;
}

@media (max-width: 600px) {
    .ny-wa-button {
        border-radius: 26px;
    }

    .ny-wa-icon svg {
        width: 42px;
        height: 42px;
    }

    .ny-wa-label {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ny-wa-button {
        transition: none;
    }

    .ny-wa-button:hover,
    .ny-wa-button:focus {
        transform: none;
    }
}
