/* ============================================================
   SCS Quote Buttons — assets/style.css
   Swift Catering Supplies
   ============================================================ */

/* ── Button wrapper ── */
.scsqb-wrap {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 10px;
    box-sizing: border-box;
}

/* ── Base pill button ── */
.scsqb-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 9px 16px !important;
    border-radius: 50px !important;
    font-family: system-ui, -apple-system, Arial, sans-serif !important;
    font-size: 12.5px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    text-align: center !important;
    cursor: pointer !important;
    border: none !important;
    outline: none !important;
    transition: opacity 0.2s ease, transform 0.15s ease, background-color 0.2s ease !important;
    white-space: nowrap !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    line-height: 1 !important;
    letter-spacing: 0.2px !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.scsqb-btn:hover,
.scsqb-btn:focus {
    opacity: 0.88 !important;
    transform: translateY(-1px) !important;
    text-decoration: none !important;
}

.scsqb-btn:active {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* ── Get a Quote — red pill ── */
.scsqb-quote {
    background-color: #dc2626 !important;
    color: #ffffff !important;
}

.scsqb-quote:hover,
.scsqb-quote:visited,
.scsqb-quote:focus {
    background-color: #b91c1c !important;
    color: #ffffff !important;
}

/* ── WhatsApp — green pill ── */
.scsqb-whatsapp {
    background-color: #16a34a !important;
    color: #ffffff !important;
}

.scsqb-whatsapp:hover,
.scsqb-whatsapp:visited,
.scsqb-whatsapp:focus {
    background-color: #15803d !important;
    color: #ffffff !important;
}

/* ── WhatsApp icon sizing ── */
.scsqb-whatsapp svg {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

/* ────────────────────────────────────────────────────────────
   Single product page — slightly larger buttons
   ─────────────────────────────────────────────────────────── */
.single-product .scsqb-wrap {
    gap: 10px;
    margin-top: 20px;
}

.single-product .scsqb-btn {
    padding: 13px 24px !important;
    font-size: 14px !important;
}

.single-product .scsqb-whatsapp svg {
    width: 16px !important;
    height: 16px !important;
}

/* ────────────────────────────────────────────────────────────
   Cart page — full-width stacked buttons
   ─────────────────────────────────────────────────────────── */
.woocommerce-cart .scsqb-wrap,
.cart-collaterals  .scsqb-wrap {
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 16px !important;
}

.woocommerce-cart .scsqb-btn,
.cart-collaterals  .scsqb-btn {
    flex: none !important;
    width: 100% !important;
    font-size: 15px !important;
    padding: 14px 24px !important;
    border-radius: 50px !important;
}

.woocommerce-cart .scsqb-whatsapp svg,
.cart-collaterals  .scsqb-whatsapp svg {
    width: 18px !important;
    height: 18px !important;
}

/* ────────────────────────────────────────────────────────────
   Mobile — stack all buttons vertically
   ─────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .scsqb-wrap {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .scsqb-btn {
        flex: none !important;
        width: 100% !important;
        padding: 11px 18px !important;
        font-size: 13px !important;
        border-radius: 50px !important;
    }

    .scsqb-whatsapp svg {
        width: 15px !important;
        height: 15px !important;
    }
}

/* ────────────────────────────────────────────────────────────
   Tablet — keep side by side but allow wrap
   ─────────────────────────────────────────────────────────── */
@media (min-width: 481px) and (max-width: 768px) {
    .scsqb-btn {
        padding: 10px 14px !important;
        font-size: 12px !important;
    }
}
