/**
 * IDC Ecommerce Experience Suite v2.8.3
 * Native IDC Checkout — single presentation authority.
 */
.idc-native-checkout-v280 {
    --idc-v280-ink: #151515;
    --idc-v280-muted: #6b6b6b;
    --idc-v280-soft: #f7f7f7;
    --idc-v280-line: #dedede;
    --idc-v280-line-strong: #c8c8c8;
    --idc-v280-surface: #ffffff;
    --idc-v280-accent: #111111;
    --idc-v280-danger: #b42318;
    --idc-v280-radius: 12px;
    color: var(--idc-v280-ink);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    line-height: 1.45;
}

.idc-native-checkout-v280,
.idc-native-checkout-v280 * {
    box-sizing: border-box;
}

.idc-native-checkout-v280 .idc-v280-workspace {
    width: min(100%, 1360px);
    max-width: 1360px;
    margin: 0 auto;
    padding: 34px 24px 56px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 54px;
    align-items: start;
}

.idc-native-checkout-v280 .idc-v280-main {
    min-width: 0;
    display: grid;
    gap: 18px;
}

.idc-native-checkout-v280 .idc-v280-section {
    min-width: 0;
    background: var(--idc-v280-surface);
    border: 1px solid var(--idc-v280-line);
    border-radius: var(--idc-v280-radius);
    padding: 22px 24px;
}

.idc-native-checkout-v280 .idc-v280-section-head,
.idc-native-checkout-v280 .idc-v280-summary-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.idc-native-checkout-v280 h2 {
    margin: 0 0 16px;
    color: var(--idc-v280-ink);
    font-size: 19px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.015em;
}

.idc-native-checkout-v280 .idc-v280-section-head h2,
.idc-native-checkout-v280 .idc-v280-summary-head h2 {
    margin-bottom: 0;
}

.idc-native-checkout-v280 .idc-v280-muted,
.idc-native-checkout-v280 small {
    color: var(--idc-v280-muted);
}

.idc-native-checkout-v280 .idc-v280-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

.idc-native-checkout-v280 .form-row {
    float: none;
    width: auto;
    margin: 0;
    padding: 0;
}

.idc-native-checkout-v280 .idc-v280-fields > .form-row {
    min-width: 0;
    width: 100%;
    max-width: none;
}

.idc-native-checkout-v280 .idc-v280-fields > .form-row > .woocommerce-input-wrapper {
    display: block;
    width: 100%;
    max-width: none;
}

.idc-native-checkout-v280 .idc-v280-fields input,
.idc-native-checkout-v280 .idc-v280-fields select,
.idc-native-checkout-v280 .idc-v280-fields textarea {
    max-width: none;
}

.idc-native-checkout-v280 .idc-v280-address2-toggle {
    grid-column: 1 / -1;
    justify-self: start;
    width: auto;
    margin: -2px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #303030;
    font: inherit;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
    cursor: pointer;
}

.idc-native-checkout-v280 .idc-v280-address2-toggle:hover,
.idc-native-checkout-v280 .idc-v280-address2-toggle:focus-visible {
    text-decoration: underline;
}

.idc-native-checkout-v280 .idc-v280-address2-field.idc-v280-address2-collapsed {
    display: none;
}

.idc-native-checkout-v280 .idc-v280-address2-field.idc-v280-address2-open {
    display: block;
    grid-column: 1 / -1;
}

.idc-native-checkout-v280 .form-row.form-row-wide,
.idc-native-checkout-v280 #billing_email_field,
.idc-native-checkout-v280 #billing_phone_field,
.idc-native-checkout-v280 #shipping_address_1_field,
.idc-native-checkout-v280 #shipping_address_2_field,
.idc-native-checkout-v280 #billing_address_1_field,
.idc-native-checkout-v280 #billing_address_2_field,
.idc-native-checkout-v280 #order_comments_field {
    grid-column: 1 / -1;
}

.idc-native-checkout-v280 .form-row label,
.idc-native-checkout-v280 .idc-v280-card-field > span,
.idc-native-checkout-v280 .idc-v280-coupon > label {
    display: block;
    margin: 0 0 6px;
    color: #303030;
    font-size: 12.5px;
    line-height: 1.3;
    font-weight: 700;
}

.idc-native-checkout-v280 .required {
    color: var(--idc-v280-danger);
}

.idc-native-checkout-v280 input[type="text"],
.idc-native-checkout-v280 input[type="email"],
.idc-native-checkout-v280 input[type="tel"],
.idc-native-checkout-v280 input[type="number"],
.idc-native-checkout-v280 select,
.idc-native-checkout-v280 textarea {
    display: block;
    width: 100%;
    min-height: 46px;
    margin: 0;
    padding: 10px 12px;
    color: var(--idc-v280-ink);
    background: #fff;
    border: 1px solid var(--idc-v280-line-strong);
    border-radius: 8px;
    box-shadow: none;
    font: inherit;
    font-size: 14px;
    line-height: 1.35;
    outline: 0;
    transition: border-color 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.idc-native-checkout-v280 textarea {
    min-height: 92px;
    resize: vertical;
}

.idc-native-checkout-v280 input::placeholder,
.idc-native-checkout-v280 textarea::placeholder {
    color: #9b9b9b;
}

.idc-native-checkout-v280 input:focus,
.idc-native-checkout-v280 select:focus,
.idc-native-checkout-v280 textarea:focus {
    border-color: #6b6b6b;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.08);
}

.idc-native-checkout-v280 :focus-visible {
    outline: 2px solid #171717;
    outline-offset: 2px;
}

.idc-native-checkout-v280 .woocommerce-invalid input,
.idc-native-checkout-v280 .woocommerce-invalid select,
.idc-native-checkout-v280 .woocommerce-invalid textarea,
.idc-native-checkout-v280 [aria-invalid="true"] {
    border-color: var(--idc-v280-danger);
    box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.08);
}

.idc-native-checkout-v280 .idc-v280-billing-toggle-section {
    padding: 2px 4px;
}

.idc-native-checkout-v280 .idc-v280-choice-toggle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    color: #303030;
    font-size: 13.5px;
    font-weight: 650;
}

.idc-native-checkout-v280 .idc-v280-choice-toggle input,
.idc-native-checkout-v280 .idc-v280-choice-row input,
.idc-native-checkout-v280 .idc-v280-payment-label input {
    width: 17px;
    height: 17px;
    margin: 0;
    accent-color: #111;
    flex: 0 0 auto;
}

.idc-native-checkout-v280 [hidden] {
    display: none;
}

.idc-native-checkout-v280 .idc-v280-choice-list {
    display: grid;
    gap: 8px;
}

.idc-native-checkout-v280 .idc-v280-choice-row {
    min-height: 54px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid var(--idc-v280-line);
    border-radius: 9px;
    background: #fff;
    cursor: pointer;
    transition: border-color 140ms ease, background-color 140ms ease, box-shadow 140ms ease;
}

.idc-native-checkout-v280 .idc-v280-choice-row:has(input:checked) {
    border-color: #222;
    background: #fbfbfb;
    box-shadow: inset 0 0 0 1px #222;
}

.idc-native-checkout-v280 .idc-v280-choice-copy strong {
    font-size: 13.5px;
    font-weight: 750;
}

.idc-native-checkout-v280 .idc-v280-choice-value {
    color: var(--idc-v280-ink);
    white-space: nowrap;
    font-size: 13.5px;
    font-weight: 750;
}

.idc-native-checkout-v280 .idc-v280-secure-note {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--idc-v280-muted);
    font-size: 11.5px;
    font-weight: 650;
    white-space: nowrap;
}

.idc-native-checkout-v280 .idc-v280-payment-list {
    display: grid;
    gap: 9px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
}

.idc-native-checkout-v280 .idc-v280-payment-row {
    overflow: hidden;
    border: 1px solid var(--idc-v280-line);
    border-radius: 10px;
    background: #fff;
    transition: border-color 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
}

.idc-native-checkout-v280 .idc-v280-payment-row.is-selected {
    border-color: #222;
    box-shadow: inset 0 0 0 1px #222;
    background: #fcfcfc;
}

.idc-native-checkout-v280 .idc-v280-payment-label {
    min-height: 58px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(90px, auto);
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    cursor: pointer;
}

.idc-native-checkout-v280 .idc-v280-payment-title {
    min-width: 0;
    color: var(--idc-v280-ink);
    font-size: 14px;
    font-weight: 780;
}

.idc-native-checkout-v280 .idc-v280-payment-marks {
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.idc-native-checkout-v280 .idc-v280-payment-marks img,
.idc-native-checkout-v280 .idc-v280-wallet-marks img,
.idc-native-checkout-v280 .idc-paypal-standard-mark img,
.idc-native-checkout-v280 .idc-paypal-invoice-logo {
    display: block;
    width: auto;
    max-width: 240px;
    height: 26px;
    max-height: 28px;
    object-fit: contain;
}

.idc-native-checkout-v280 .idc-card-v2-marks {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.idc-native-checkout-v280 .idc-v282-wallet-marks {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.idc-native-checkout-v280 .idc-v282-wallet-marks .idc-v280-wallet-mark {
    width: auto;
    max-width: 48px;
    height: 26px;
    max-height: 28px;
    object-fit: contain;
}

.idc-native-checkout-v280 .idc-card-v2-mark {
    width: 37px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.82;
    transform: translateZ(0);
    transition: opacity 140ms ease, transform 140ms ease, filter 140ms ease;
}

.idc-native-checkout-v280 .idc-card-v2-mark svg,
.idc-native-checkout-v280 .idc-card-v2-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.idc-native-checkout-v280 .idc-card-v2-mark.is-active {
    opacity: 1;
    transform: scale(1.06);
    filter: none;
}

.idc-native-checkout-v280 .idc-card-v2-mark.is-muted {
    opacity: 0.25;
    filter: grayscale(1);
}

.idc-native-checkout-v280 .idc-v280-payment-body {
    margin: 0;
    padding: 0 15px 15px 44px;
    background: transparent;
}

.idc-native-checkout-v280 .idc-v281-native-payment-body {
    border: 0;
    box-shadow: none;
    color: var(--idc-v280-ink);
}

.idc-native-checkout-v280 .idc-v281-native-payment-body::before,
.idc-native-checkout-v280 .idc-v281-native-payment-body::after {
    content: none;
}

.idc-native-checkout-v280 .idc-v280-provider-slot {
    padding: 2px 0 0;
}

.idc-native-checkout-v280 .idc-v280-provider-slot > :first-child {
    margin-top: 0;
}

.idc-native-checkout-v280 .idc-v280-provider-slot > :last-child {
    margin-bottom: 0;
}

.idc-native-checkout-v280 .idc-v280-card-fields {
    display: grid;
    gap: 12px;
    padding-top: 4px;
}

.idc-native-checkout-v280 .idc-v280-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.idc-native-checkout-v280 .idc-v280-card-field {
    display: block;
    margin: 0;
}

.idc-native-checkout-v280 .idc-card-v2-error {
    display: block;
    min-height: 0;
    margin-top: 5px;
    color: var(--idc-v280-danger);
    font-size: 11.5px;
    line-height: 1.25;
}

.idc-native-checkout-v280 .idc-card-v2-error[hidden] {
    display: none;
}

.idc-native-checkout-v280 .idc-v280-order-notes {
    padding: 0;
    overflow: hidden;
}

.idc-native-checkout-v280 .idc-v281-order-note summary {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 14px 18px;
    color: #303030;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.idc-native-checkout-v280 .idc-v281-order-note summary::-webkit-details-marker {
    display: none;
}

.idc-native-checkout-v280 .idc-v281-order-note summary::before {
    content: "+";
    width: 20px;
    margin-right: 8px;
    font-size: 20px;
    line-height: 1;
    text-align: center;
}

.idc-native-checkout-v280 .idc-v281-order-note[open] summary::before {
    content: "−";
}

.idc-native-checkout-v280 .idc-v281-order-note-body {
    padding: 0 18px 18px;
}

.idc-native-checkout-v280 .idc-v280-place-order {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.idc-native-checkout-v280 #place_order {
    width: 100%;
    min-height: 52px;
    margin: 0;
    padding: 13px 20px;
    border: 1px solid #111;
    border-radius: 9px;
    color: #fff;
    background: #111;
    box-shadow: none;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: background-color 140ms ease, opacity 140ms ease, transform 140ms ease;
}

.idc-native-checkout-v280 #place_order:hover {
    background: #2a2a2a;
}

.idc-native-checkout-v280 #place_order:active {
    transform: translateY(1px);
}

.idc-native-checkout-v280 #place_order[aria-disabled="true"],
.idc-native-checkout-v280 #place_order:disabled {
    opacity: 0.58;
    cursor: wait;
}

.idc-native-checkout-v280 .idc-v280-summary-column {
    min-width: 0;
    position: sticky;
    top: 24px;
}

.idc-native-checkout-v280 .idc-v280-order-summary {
    min-width: 0;
    padding: 22px;
    border: 1px solid var(--idc-v280-line);
    border-radius: 14px;
    background: var(--idc-v280-surface);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.045);
}

.idc-native-checkout-v280 .idc-v280-summary-head h2 {
    font-size: 20px;
}

.idc-native-checkout-v280 .idc-v280-coupon {
    padding-bottom: 17px;
    margin-bottom: 8px;
    border-bottom: 1px solid #ededed;
}

.idc-native-checkout-v280 .idc-v280-coupon-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.idc-native-checkout-v280 .idc-v280-coupon-form input {
    min-height: 40px;
}

.idc-native-checkout-v280 .idc-v280-coupon-form button {
    min-width: 72px;
    min-height: 40px;
    padding: 8px 14px;
    border: 1px solid #bcbcbc;
    border-radius: 8px;
    background: #fff;
    color: #222;
    font: inherit;
    font-size: 12.5px;
    font-weight: 750;
    cursor: pointer;
}

.idc-native-checkout-v280 .idc-v280-coupon-active {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 9px;
}

.idc-native-checkout-v280 .idc-v280-coupon-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 6px 4px 9px;
    border-radius: 999px;
    background: #f1f1f1;
    color: #333;
    font-size: 11.5px;
    font-weight: 700;
}

.idc-native-checkout-v280 .idc-v280-coupon-chip button {
    width: 20px;
    height: 20px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #555;
    line-height: 20px;
    cursor: pointer;
}

.idc-native-checkout-v280 .idc-v280-summary-items {
    display: grid;
    gap: 0;
}

.idc-native-checkout-v280 .idc-v280-summary-item {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) auto;
    gap: 13px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid #ededed;
}

.idc-native-checkout-v280 .idc-v280-summary-media {
    width: 80px;
    height: 80px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #ededed;
    border-radius: 8px;
    background: #fafafa;
}

.idc-native-checkout-v280 .idc-v280-summary-media img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
}

.idc-native-checkout-v280 .idc-v280-summary-copy {
    min-width: 0;
    padding-top: 2px;
}

.idc-native-checkout-v280 .idc-v280-summary-copy > strong {
    display: block;
    margin-bottom: 3px;
    color: #222;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 780;
}

.idc-native-checkout-v280 .idc-v280-summary-copy small {
    display: block;
    font-size: 11px;
}

.idc-native-checkout-v280 .idc-v280-summary-meta {
    margin-top: 5px;
    color: #737373;
    font-size: 11px;
    line-height: 1.35;
    display: block;
    overflow: visible;
}

.idc-native-checkout-v280 .idc-v280-summary-meta dl,
.idc-native-checkout-v280 .idc-v280-summary-meta p {
    margin: 0;
}

.idc-native-checkout-v280 .idc-v280-summary-meta dl.variation {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    column-gap: 7px;
    row-gap: 1px;
    align-items: baseline;
}

.idc-native-checkout-v280 .idc-v280-summary-meta dl.variation dt,
.idc-native-checkout-v280 .idc-v280-summary-meta dl.variation dd {
    float: none;
    clear: none;
    min-width: 0;
    margin: 0;
    padding: 0;
}

.idc-native-checkout-v280 .idc-v280-summary-meta dl.variation dt {
    color: #737373;
    font-weight: 560;
    white-space: nowrap;
}

.idc-native-checkout-v280 .idc-v280-summary-meta dl.variation dd {
    color: #666;
    font-weight: 500;
    overflow-wrap: anywhere;
}

.idc-native-checkout-v280 .idc-v280-summary-meta dl.variation dd p {
    margin: 0;
}

.idc-native-checkout-v280 .idc-v280-summary-line-price {
    padding-top: 2px;
    white-space: nowrap;
    color: #222;
    font-size: 12.5px;
    font-weight: 750;
}

.idc-native-checkout-v280 .idc-v280-summary-totals {
    padding-top: 13px;
}

.idc-native-checkout-v280 .idc-v280-total-row {
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #4f4f4f;
    font-size: 13px;
}

.idc-native-checkout-v280 .idc-v280-total-row strong {
    color: #303030;
    font-size: 13.5px;
    font-weight: 720;
    white-space: nowrap;
}

.idc-native-checkout-v280 .idc-v280-total-grand {
    min-height: 48px;
    margin-top: 9px;
    padding-top: 13px;
    border-top: 1px solid #d8d8d8;
    color: #111;
    font-size: 16px;
    font-weight: 850;
}

.idc-native-checkout-v280 .idc-v280-total-grand strong {
    color: #111;
    font-size: 23px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.idc-native-checkout-v280 .idc-v280-notices {
    width: min(100%, 1360px);
    margin: 0 auto;
    padding: 0 24px;
}

.idc-native-checkout-v280 .woocommerce-error,
.idc-native-checkout-v280 .woocommerce-info,
.idc-native-checkout-v280 .woocommerce-message {
    margin: 16px 0 0;
    padding: 12px 14px;
    border: 1px solid #dedede;
    border-radius: 8px;
    background: #fff;
    color: #333;
    font-size: 13px;
}

.idc-native-checkout-v280 .woocommerce-error {
    border-color: #e5b7b3;
    background: #fff8f7;
    color: #8f241b;
}

.idc-native-checkout-v280 .blockUI.blockOverlay {
    border-radius: inherit;
}

@media (max-width: 1100px) {
    .idc-native-checkout-v280 .idc-v280-workspace {
        grid-template-columns: minmax(0, 1fr) 370px;
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .idc-native-checkout-v280 .idc-v280-workspace {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 24px 18px 44px;
    }

    .idc-native-checkout-v280 .idc-v280-summary-column {
        position: static;
        order: -1;
    }

    .idc-native-checkout-v280 .idc-v280-order-summary {
        box-shadow: none;
    }
}

@media (max-width: 640px) {
    .idc-native-checkout-v280 .idc-v280-workspace {
        padding: 16px 12px 34px;
        gap: 14px;
    }

    .idc-native-checkout-v280 .idc-v280-section,
    .idc-native-checkout-v280 .idc-v280-order-summary {
        padding: 17px 15px;
        border-radius: 10px;
    }

    .idc-native-checkout-v280 .idc-v280-fields,
    .idc-native-checkout-v280 .idc-v280-card-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .idc-native-checkout-v280 .form-row {
        grid-column: 1 / -1;
    }

    .idc-native-checkout-v280 h2,
    .idc-native-checkout-v280 .idc-v280-summary-head h2 {
        font-size: 17px;
    }

    .idc-native-checkout-v280 .idc-v280-payment-label {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 10px;
    }

    .idc-native-checkout-v280 .idc-v280-payment-marks {
        grid-column: 2;
        justify-content: flex-start;
        padding-bottom: 2px;
    }

    .idc-native-checkout-v280 .idc-v280-payment-body {
        padding: 0 13px 13px 40px;
    }

    .idc-native-checkout-v280 .idc-v280-payment-marks img,
    .idc-native-checkout-v280 .idc-v280-wallet-marks img,
    .idc-native-checkout-v280 .idc-paypal-standard-mark img,
    .idc-native-checkout-v280 .idc-paypal-invoice-logo {
        max-width: 210px;
        height: 24px;
    }

    .idc-native-checkout-v280 .idc-card-v2-mark {
        width: 33px;
        height: 22px;
    }

    .idc-native-checkout-v280 .idc-v280-summary-item {
        grid-template-columns: 72px minmax(0, 1fr) auto;
        gap: 11px;
    }

    .idc-native-checkout-v280 .idc-v280-summary-media {
        width: 72px;
        height: 72px;
    }

    .idc-native-checkout-v280 .idc-v280-total-grand strong {
        font-size: 21px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .idc-native-checkout-v280 *,
    .idc-native-checkout-v280 *::before,
    .idc-native-checkout-v280 *::after {
        scroll-behavior: auto;
        transition-duration: 0.01ms;
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
    }
}


/* v2.8.4a Card v2 native processing presentation. Presentation only. */
.idc-native-checkout-v280 .idc-v280-card-processing #place_order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.idc-native-checkout-v280 .idc-v280-card-processing #place_order::before {
    content: "";
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    border: 2px solid rgba(255,255,255,.38);
    border-top-color: #fff;
    border-radius: 50%;
    animation: idc-v280-card-processing-spin .72s linear infinite;
}

.idc-native-checkout-v280 .idc-v280-processing-status {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid #dbe4f0;
    border-radius: 10px;
    background: #f8fafc;
    color: #334155;
}

.idc-native-checkout-v280 .idc-v280-processing-status[hidden] {
    display: none;
}

.idc-native-checkout-v280 .idc-v280-processing-status::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    margin-top: 5px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34,197,94,.10);
}

.idc-native-checkout-v280 .idc-v280-processing-status-copy strong,
.idc-native-checkout-v280 .idc-v280-processing-status-copy small {
    display: block;
}

.idc-native-checkout-v280 .idc-v280-processing-status-copy strong {
    color: #0f172a;
    font-size: 12.5px;
    font-weight: 800;
    line-height: 1.35;
}

.idc-native-checkout-v280 .idc-v280-processing-status-copy small {
    margin-top: 2px;
    color: #64748b;
    font-size: 11.5px;
    line-height: 1.45;
}

@keyframes idc-v280-card-processing-spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .idc-native-checkout-v280 .idc-v280-card-processing #place_order::before {
        animation-duration: 1.5s;
    }
}

/* v2.8.6b — PayPal Digital presentation identity. Processing remains VERIFIED-owned. */
.idc-native-checkout-v280 .idc-v280-payment-row[data-payment-profile="paypal_digital"] .idc-paypal-digital-mark {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
}

.idc-native-checkout-v280 .idc-v280-payment-row[data-payment-profile="paypal_digital"] .idc-paypal-digital-logo {
    display: block;
    width: auto;
    max-width: 96px;
    max-height: 28px;
    object-fit: contain;
}

.idc-native-checkout-v280 .idc-v280-payment-row[data-payment-profile="paypal_digital"] .idc-v280-provider-slot {
    color: #5f6368;
    font-size: 13px;
    line-height: 1.45;
}

.idc-native-checkout-v280 .idc-v280-payment-row[data-payment-profile="paypal_digital"] .idc-v280-provider-slot p {
    margin: 2px 0 0;
}

@media (max-width: 760px) {
    .idc-native-checkout-v280 .idc-v280-payment-row[data-payment-profile="paypal_digital"] .idc-paypal-digital-logo {
        max-width: 82px;
        max-height: 24px;
    }
}
