/* WC WhatsApp Ordering - Button Styles */

.wcwo-wrap {
    margin: 10px 0;
}

/* ─── Base Button ─────────────────────────────────────── */
.wcwo-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 22px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    line-height: 1 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: filter 0.2s ease, transform 0.1s ease !important;
    white-space: nowrap !important;
    border: none !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
}

.wcwo-btn:hover {
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

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

.wcwo-btn svg {
    flex-shrink: 0;
}

/* ─── Single product ──────────────────────────────────── */
.wcwo-single .wcwo-btn,
.wcwo-btn-single {
    width: 100%;
    justify-content: center !important;
}

/* ─── Loop / shop ─────────────────────────────────────── */
.wcwo-btn-loop {
    width: 100%;
    margin-top: 6px !important;
    font-size: 13px !important;
    padding: 9px 16px !important;
}

/* ─── Cart ────────────────────────────────────────────── */
.wcwo-cart {
    margin-top: 12px;
}

.wcwo-btn-cart {
    width: 100%;
    justify-content: center !important;
}

/* ─── Checkout ────────────────────────────────────────── */
.wcwo-checkout {
    margin-top: 14px;
    text-align: center;
}

.wcwo-checkout-or {
    color: #999;
    font-size: 13px;
    margin-bottom: 10px !important;
}

.wcwo-btn-checkout {
    width: 100%;
    justify-content: center !important;
}

/* ─── Thank-you page ──────────────────────────────────── */
.wcwo-thankyou-wrap {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 20px 24px;
    margin: 20px 0;
    text-align: center;
}

.wcwo-thankyou-msg {
    font-size: 16px;
    margin-bottom: 14px !important;
    color: #166534;
}

/* ─── Pulse animation (optional, applied via JS) ──────── */
@keyframes wcwo-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70%  { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.wcwo-btn-pulse {
    animation: wcwo-pulse 2s infinite;
}
