/* =========================================================
   SpamOff – Spam & Bot Protection for WordPress — Checkout captcha styling
   ========================================================= */

/* Remove box, background, border from the captcha wrapper */
.woocommerce-checkout .spamoff-bot-protection-container,
.woocommerce-checkout .spamoff-bot-protection-v2,
.woocommerce-checkout .woocommerce-checkout-recaptcha-wrapper {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 12px 0 16px 0 !important;
    clear: both;
    text-align: left !important;
}

/* Make container full width */
.woocommerce-checkout .spamoff-bot-protection-v2 {
    width: 100% !important;
}

/* Force reCAPTCHA to behave like a block element */
.woocommerce-checkout .g-recaptcha {
    display: block !important;
}

/* Match spacing with Place Order button */
.woocommerce-checkout #place_order {
    width: 100%;
    margin-top: 0;
}

/* Remove theme background from Place Order wrapper */
.woocommerce-checkout .form-row.place-order {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* Disable old mobile scaling (handled via JS now) */
@media (max-width: 768px) {
    .spamoff-bot-protection-v2 {
        transform: none !important;
    }
}
