/**
 * WhatsApp enquiry button.
 *
 * Scoped under .azwa-button so nothing here can leak into the Classic theme.
 */

.azwa-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    border: 0;
    border-radius: 4px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: background-color .15s ease;
}

.azwa-button:hover,
.azwa-button:focus {
    background: #1da851;
    color: #fff;
    text-decoration: none;
}

.azwa-button:focus-visible {
    outline: 2px solid #0b5c2e;
    outline-offset: 2px;
}

.azwa-icon {
    width: 1.15em;
    height: 1.15em;
    fill: currentColor;
    flex: 0 0 auto;
}

/* Product page: full width under the price, matching the theme's buttons. */
.azwa-button--large {
    width: 100%;
    padding: 12px 18px;
    font-size: 1rem;
    margin: 10px 0 4px;
}

/* Listing card: compact, so the grid keeps its rhythm. */
.azwa-button--small {
    padding: 6px 12px;
    font-size: .8125rem;
    margin-top: 8px;
}
