/* ─────────────────────────────────────────────
   Sidai Contact Buttons — Stylesheet
   ───────────────────────────────────────────── */

.scb-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 16px 0;
}

/* Base button */
.scb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    flex: 1 1 140px;
    min-width: 140px;
    border: none;
    line-height: 1.2;
}

.scb-btn:hover {
    text-decoration: none;
    transform: translateY(-1px);
}

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

.scb-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* WhatsApp */
.scb-btn--whatsapp {
    background-color: #25D366;
    color: #ffffff;
}

.scb-btn--whatsapp:hover {
    background-color: #1ebe5c;
    color: #ffffff;
}

/* Call Now */
.scb-btn--call {
    background-color: #1D6A3A;
    color: #ffffff;
}

.scb-btn--call:hover {
    background-color: #175730;
    color: #ffffff;
}

/* Shop loop — make buttons stack nicely in cards */
.woocommerce ul.products .scb-buttons {
    padding: 0 8px 8px;
    margin: 8px 0 0;
}

.woocommerce ul.products .scb-btn {
    font-size: 13px;
    padding: 9px 12px;
}

/* Config notice for admins */
.scb-notice {
    color: #c0392b;
    font-size: 13px;
    margin: 12px 0;
}
