/*
 * WhatsApp opt-in checkbox styling.
 *
 * Theme inspection (Martfury) shows the canonical rule for billing-same-as-shipping is:
 *   .checkout-payment-method .billing-address-same-as-shipping-block { margin: 0 0 11px; }
 *   .fieldset > .field.choice .label { display: inline; font-weight: normal; margin: 0; }
 *
 * We match those values exactly so the checkbox lines up with — and looks
 * identical to — the standard "My billing and shipping address are the same"
 * checkbox below it. Important is used on the label/span weight to defeat
 * any other module's inherited bold styling on form labels.
 */
.field.choice.whatsapp-optin {
    position: relative;
    margin: 0 0 11px;
    padding: 0;
    min-height: 18px;
}

.field.choice.whatsapp-optin > .checkbox {
    position: absolute;
    top: 3px;
    left: 0;
    margin: 0;
    width: auto;
    height: auto;
    accent-color: #25D366;
}

.field.choice.whatsapp-optin > .label {
    display: inline-block !important;
    padding: 0 0 0 22px;
    margin: 0;
    font-weight: normal !important;
    line-height: 1.4;
    color: inherit;
    cursor: pointer;
}

.field.choice.whatsapp-optin > .label > span {
    font-weight: normal !important;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
}
