/* ==========================================================
   Mufasa Checkout — Shopify-Style
   ========================================================== */
:root {
    --mc-black: #1a1a1a;
    --mc-text: #333;
    --mc-muted: #737373;
    --mc-border: #d9d9d9;
    --mc-border-focus: #1a1a1a;
    --mc-bg: #fff;
    --mc-bg-alt: #fafafa;
    --mc-error: #d72c0d;
    --mc-success: #2e7d32;
    --mc-link: #1a1a1a;
    --mc-radius: 5px;
    --mc-ease: 0.2s ease;
}

.mufasa-checkout-page *,
.mufasa-checkout-page *::before,
.mufasa-checkout-page *::after { box-sizing: border-box; }

.mufasa-checkout-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--mc-text);
    background: var(--mc-bg-alt);
    -webkit-font-smoothing: antialiased;
}

/* Carrinho vazio: viewport inteira branca (sem faixas cinzas nas laterais) */
.mufasa-checkout-page.mufasa-checkout-empty {
    background: var(--mc-bg);
}

/* Shell igual ao Order Pay / pedido recebido: max 1280px centrado + branco até à lateral esquerda */
.mc-checkout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: visible;
}

.mc-checkout::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100vw;
    right: 100%;
    left: auto;
    background: var(--mc-bg);
    z-index: 0;
    pointer-events: none;
}

.mc-main {
    background: var(--mc-bg);
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.mc-main__inner {
    width: 100%;
    max-width: 660px;
    padding: 48px 40px 40px 48px;
    box-sizing: border-box;
}

.mc-checkout--solo {
    grid-template-columns: 1fr;
}

.mc-checkout--solo::before {
    display: none;
}

.mc-checkout--solo .mc-main {
    align-items: center;
}

.mc-checkout--solo .mc-main__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px 40px;
    text-align: center;
}

.mc-sidebar {
    background: var(--mc-bg-alt);
    border-left: 1px solid var(--mc-border);
    padding: 36px 28px 48px;
    position: sticky;
    top: 0;
    align-self: stretch;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    overflow-y: auto;
    box-sizing: border-box;
    z-index: 1;
}

/* ==========================================================
   Header
   ========================================================== */
.mc-header { margin-bottom: 28px; }
.mc-header-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mc-logo a { text-decoration: none; display: inline-block; }
.mc-logo img { max-height: 48px; width: auto; }
.mc-logo-text { font-size: 26px; font-weight: 700; color: var(--mc-black); text-decoration: none; }
.mc-secure-badge { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--mc-muted); }
.mc-secure-badge svg { color: var(--mc-muted); flex-shrink: 0; }

.mc-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--mc-muted); flex-wrap: wrap; }
.mc-breadcrumb a { color: var(--mc-link); text-decoration: none; }
.mc-breadcrumb a:hover { text-decoration: underline; }
.mc-bc-sep { color: var(--mc-border); font-size: 11px; }
.mc-bc-step { cursor: default; }
.mc-bc-step.active { color: var(--mc-black); font-weight: 600; }
.mc-bc-step.completed { color: var(--mc-link); cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.mc-bc-step.completed:hover { opacity: .75; }

/* ==========================================================
   Sections
   ========================================================== */
.mc-section { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--mc-border); }
.mc-section:last-of-type { border-bottom: none; }
.mc-section h2 { font-size: 18px; font-weight: 600; color: var(--mc-black); margin-bottom: 16px; }
.mc-section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.mc-section-head h2 { margin-bottom: 0; }
.mc-link-small { font-size: 13px; color: var(--mc-link); text-decoration: none; background: none; border: none; padding: 0; cursor: pointer; font-family: inherit; }
.mc-link-small:hover,
.mc-link-small:focus { text-decoration: underline !important; background: none !important; color: var(--mc-link) !important; }
.mc-user-info { display: flex; justify-content: space-between; align-items: center; font-size: 14px; }
.mc-user-info a { color: var(--mc-link); text-decoration: none; font-size: 13px; }

/* Inline login panel */
#mc-inline-login {
    background: #fafafa;
    border: 1px solid var(--mc-border);
    border-radius: var(--mc-radius);
    padding: 16px;
    margin-bottom: 14px;
}

.mc-il-hint {
    font-size: 13px;
    color: var(--mc-muted);
    margin-bottom: 12px;
}

.mc-il-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.mc-il-btn {
    height: 40px;
    padding: 0 20px;
    background: var(--mc-black);
    color: #fff;
    border: none;
    border-radius: var(--mc-radius);
    font-size: 13px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: opacity .15s;
}

.mc-il-btn:hover,
.mc-il-btn:focus { opacity: .85; background: var(--mc-black) !important; color: #fff !important; }
.mc-il-btn:disabled { opacity: .5; cursor: not-allowed; }

.mc-il-code-inputs {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.mc-il-digit {
    width: 44px;
    height: 52px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    font-family: inherit;
    color: var(--mc-black);
    border: 1.5px solid var(--mc-border);
    border-radius: var(--mc-radius);
    background: #fff;
    transition: border-color .15s;
    -moz-appearance: textfield;
}

.mc-il-digit::-webkit-inner-spin-button,
.mc-il-digit::-webkit-outer-spin-button { -webkit-appearance: none; }
.mc-il-digit:focus { outline: none; border-color: var(--mc-black); }
.mc-secure-notice { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--mc-muted); margin-bottom: 16px; }
.mc-secure-notice svg { color: var(--mc-muted); flex-shrink: 0; }

/* ==========================================================
   Floating-Label Fields
   ========================================================== */
.mc-field { position: relative; margin-bottom: 12px; }

.mc-input {
    display: block;
    width: 100%;
    height: 54px;
    padding: 14px 12px;
    border: 1px solid var(--mc-border);
    border-radius: var(--mc-radius);
    font-size: 16px;
    font-family: inherit;
    color: var(--mc-text);
    background: var(--mc-bg);
    transition: border-color var(--mc-ease), box-shadow var(--mc-ease);
    appearance: none;
    outline: none;
}
.mc-input:focus { border-color: var(--mc-border-focus); box-shadow: 0 0 0 1px var(--mc-border-focus); }

.mc-label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: var(--mc-muted);
    pointer-events: none;
    transition: top var(--mc-ease), font-size var(--mc-ease), transform var(--mc-ease), padding var(--mc-ease);
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 26px);
    background-color: transparent;
    padding: 0;
}

.mc-input:focus + .mc-label,
.mc-input:not(:placeholder-shown) + .mc-label,
.mc-label.mc-label-up {
    top: -5px;
    transform: none;
    font-size: 11px;
    color: var(--mc-muted);
    background-color: #fff;
    padding: 0 0.5rem;
}

/* Select */
.mc-select {
    height: 54px;
    padding: 14px 36px 14px 12px;
    font-size: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath fill='%23737373' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}
.mc-select + .mc-label {
    top: -5px;
    transform: none;
    font-size: 11px;
    background-color: #fff;
    padding: 0 0.5rem;
}

/* Simple input — no floating label (coupon etc.) */
.mc-input-simple {
    height: 46px;
    padding: 0 14px;
    font-size: 13px;
}
.mc-input-simple::placeholder { color: var(--mc-muted); }

/* Error state — label sempre no topo (igual campo preenchido), sem “placeholder” no meio */
.mc-field.has-error .mc-input + .mc-label,
.mc-field.has-error .mc-select + .mc-label {
    top: -5px;
    transform: none;
    font-size: 11px;
    color: var(--mc-muted);
    background-color: #fff;
    padding: 0 0.5rem;
    z-index: 1;
}

.mc-field.has-error .mc-input,
.mc-field.has-error .mc-select {
    border-color: var(--mc-error);
    box-shadow: 0 0 0 1px var(--mc-error);
}

.mc-field.has-error .mc-select {
    background-position: right 14px center;
}

.mc-error { display: none; font-size: 12px; color: var(--mc-error); margin-top: 6px; }
.mc-field.has-error .mc-error { display: block; }

/* CEP loading */
.mc-cep-status { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); font-size: 12px; color: var(--mc-muted); display: none; }
.mc-cep-status.active { display: inline; }

/* Rows */
.mc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mc-row-addr { grid-template-columns: 2fr 1fr; }

/* ==========================================================
   Step Review Box
   ========================================================== */
.mc-review { border: 1px solid var(--mc-border); border-radius: var(--mc-radius); margin-bottom: 24px; overflow: hidden; }
.mc-review:empty { display: none; }
.mc-review-row { display: grid; grid-template-columns: 85px 1fr auto; gap: 12px; padding: 12px 14px; align-items: center; border-bottom: 1px solid var(--mc-border); font-size: 13px; }
.mc-review-row:last-child { border-bottom: none; }
.mc-review-label { color: var(--mc-muted); white-space: nowrap; }
.mc-review-value { color: var(--mc-text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mc-review-action a { color: var(--mc-link); text-decoration: none; font-size: 13px; }
.mc-review-action a:hover { text-decoration: underline; }
.mc-review-row--total { border-top: 1px solid var(--mc-border); margin-top: 2px; }
.mc-review-total-val { font-weight: 700; color: var(--mc-black); font-size: 15px; }

/* ==========================================================
   Method Cards
   ========================================================== */
/* overflow:visible — overflow:hidden em alguns browsers atrapalha iframes do Mercado Pago */
.mc-methods { border: 1px solid var(--mc-border); border-radius: var(--mc-radius); overflow: visible; }
.mc-method-card { border-bottom: 1px solid var(--mc-border); transition: background var(--mc-ease); }
.mc-method-card:last-child { border-bottom: none; }
.mc-method-card.selected { background: var(--mc-bg-alt); }
.mc-method-head { display: flex; align-items: center; padding: 14px 16px; cursor: pointer; gap: 10px; }
.mc-method-head input[type="radio"] { width: 18px; height: 18px; accent-color: var(--mc-black); flex-shrink: 0; cursor: pointer; }
.mc-method-title { flex: 1; font-weight: 500; color: var(--mc-text); }
.mc-method-icons { display: flex; align-items: center; gap: 4px; }
.mc-method-icons img { height: 20px; width: auto; }
.mc-card-brands svg { height: 20px; width: auto; border-radius: 3px; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.mc-method-cost { font-weight: 600; color: var(--mc-black); white-space: nowrap; }
.mc-method-body { padding: 4px 16px 16px 44px; font-size: 13px; color: var(--mc-muted); }
.mc-method-body p { margin-bottom: 8px; }
.mc-loading { text-align: center; padding: 24px; color: var(--mc-muted); }
.mc-error-msg { text-align: center; padding: 16px; color: var(--mc-error); }
.mc-no-methods { padding: 16px; color: var(--mc-muted); text-align: center; }

/* ==========================================================
   Navigation
   ========================================================== */
.mc-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; margin-bottom: 24px; }
.mc-nav-back { color: var(--mc-link); text-decoration: none; font-size: 14px; }
.mc-nav-back:hover { text-decoration: underline; }

.mc-btn {
    display: inline-flex; align-items: center; justify-content: center;
    height: 50px; padding: 0 28px;
    background: var(--mc-black); color: #fff; border: none; border-radius: var(--mc-radius);
    font-size: 14px; font-weight: 600; font-family: inherit;
    letter-spacing: .5px; text-transform: uppercase;
    cursor: pointer; transition: background var(--mc-ease); min-width: 200px;
}
.mc-btn:hover,
.mc-btn:focus { background: #000 !important; color: #fff !important; }
.mc-btn:disabled { background: #ccc; cursor: not-allowed; }

/* ==========================================================
   Errors
   ========================================================== */
.mc-errors { background: #fef2f2; border: 1px solid var(--mc-error); border-radius: var(--mc-radius); padding: 14px 16px; margin-top: 16px; color: var(--mc-error); font-size: 14px; }

/* ==========================================================
   Footer
   ========================================================== */
.mc-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 10px;
    padding-top: 28px;
    border-top: 1px solid var(--mc-border);
    margin-top: 28px;
}
.mc-footer a { color: var(--mc-black); text-decoration: none; font-size: 12px; transition: opacity var(--mc-ease); }
.mc-footer a:hover { opacity: .55; }
.mc-footer span { color: var(--mc-border); margin: 0 2px; font-size: 12px; }
.mc-footer-seal { width: 100%; display: flex; align-items: center; justify-content: center; gap: 5px; font-size: 11px; color: var(--mc-muted); margin-top: 4px; }
.mc-footer-seal svg { color: var(--mc-muted); flex-shrink: 0; }

/* ==========================================================
   Sidebar
   ========================================================== */
.mc-toggle { display: none; }

.mc-items { margin-bottom: 20px; }
.mc-item { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.mc-item:last-child { margin-bottom: 0; }
.mc-item-thumb { position: relative; flex-shrink: 0; }
.mc-item-thumb img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; border: 1px solid var(--mc-border); display: block; }
.mc-item-qty { position: absolute; top: -6px; right: -6px; background: var(--mc-muted); color: #fff; border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; }
.mc-item-info { flex: 1; min-width: 0; }
.mc-item-name { display: block; font-size: 13px; font-weight: 500; color: var(--mc-text); text-transform: uppercase; letter-spacing: .3px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mc-item-price { font-size: 13px; font-weight: 500; color: var(--mc-text); white-space: nowrap; }

/* Coupon — equal-height row */
.mc-coupon-wrap { padding: 20px 0; border-top: 1px solid var(--mc-border); border-bottom: 1px solid var(--mc-border); margin-bottom: 20px; }
.mc-coupon-form { display: flex; gap: 0; }
.mc-coupon-form .mc-input-simple {
    flex: 1;
    border-radius: var(--mc-radius) 0 0 var(--mc-radius);
    border-right: none;
}

/* Mesma borda cinza do botão Aplicar (evita preto do .mc-input:focus / tema) */
.mufasa-checkout-page .mc-coupon-form .mc-input.mc-input-simple {
    border: 1px solid var(--mc-border) !important;
    border-right: none !important;
    box-shadow: none !important;
}

.mufasa-checkout-page .mc-coupon-form .mc-input.mc-input-simple:focus {
    border-color: var(--mc-border) !important;
    box-shadow: none !important;
    outline: none;
}

.mufasa-checkout-page .mc-coupon-form .mc-input.mc-input-simple:focus-visible {
    border-color: var(--mc-border) !important;
    box-shadow: none !important;
    outline: 2px solid var(--mc-muted);
    outline-offset: 2px;
}

.mufasa-checkout-page .mc-btn-coupon {
    display: inline-flex; align-items: center; justify-content: center;
    height: 46px; padding: 0 24px;
    background: var(--mc-bg-alt) !important;
    color: var(--mc-text) !important;
    border: 1px solid var(--mc-border) !important;
    border-radius: 0 var(--mc-radius) var(--mc-radius) 0;
    font-size: 13px; font-weight: 600; font-family: inherit;
    cursor: pointer; transition: background var(--mc-ease), color var(--mc-ease); white-space: nowrap;
    text-transform: uppercase; letter-spacing: .3px;
    -webkit-tap-highlight-color: transparent;
}

.mufasa-checkout-page .mc-btn-coupon:hover,
.mufasa-checkout-page .mc-btn-coupon:focus-visible {
    background: var(--mc-border) !important;
    color: var(--mc-black) !important;
}

.mufasa-checkout-page .mc-btn-coupon:active {
    background: #d0d0d0 !important;
    color: var(--mc-black) !important;
}

.mc-coupon-msg { font-size: 13px; margin-top: 8px; }
.mc-coupon-msg.success { color: var(--mc-success); }
.mc-coupon-msg.error { color: var(--mc-error); }
.mc-coupon-msg:empty { display: none; }
.mc-applied-coupons { margin-top: 10px; }
.mc-coupon-tag { display: inline-flex; align-items: center; gap: 6px; background: #e8e8e8; border-radius: 4px; padding: 4px 8px; font-size: 12px; margin-right: 6px; }
.mufasa-checkout-page .mc-coupon-remove {
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    font-size: 16px;
    color: var(--mc-muted) !important;
    padding: 0;
    line-height: 1;
    -webkit-tap-highlight-color: transparent;
}

.mufasa-checkout-page .mc-coupon-remove:hover,
.mufasa-checkout-page .mc-coupon-remove:active {
    background: transparent !important;
    color: var(--mc-error) !important;
}

.mufasa-checkout-page .mc-coupon-remove:focus-visible {
    background: transparent !important;
    color: var(--mc-error) !important;
    outline: 1px solid var(--mc-error);
    outline-offset: 2px;
}

/* Totals */
.mc-totals { position: relative; }
.mc-totals.is-updating { pointer-events: none; }
.mc-totals.is-updating::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.65);
    border-radius: 4px;
    z-index: 1;
}
.mc-totals.is-updating #mc-total,
.mc-totals.is-updating #mc-shipping-cost,
.mc-totals.is-updating #mc-discount {
    animation: mc-pulse 1s ease-in-out infinite;
}
@keyframes mc-pulse { 0%,100%{ opacity:1; } 50%{ opacity:.25; } }

.mc-total-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; font-size: 14px; color: var(--mc-text); }
.mc-total-row em { font-style: normal; font-size: 12px; color: var(--mc-muted); }
.mc-row-discount span:last-child { color: var(--mc-success); }
.mc-row-final { padding-top: 16px; margin-top: 10px; border-top: 1px solid var(--mc-border); font-size: 16px; }
.mc-row-final > span:first-child { font-weight: 600; }
.mc-final-price { display: flex; align-items: baseline; gap: 6px; }
.mc-final-price small { font-size: 12px; color: var(--mc-muted); font-weight: 400; }
.mc-final-price strong { font-size: 20px; font-weight: 700; color: var(--mc-black); }
.mc-sidebar-secure { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 12px; color: var(--mc-muted); margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--mc-border); }
.mc-sidebar-secure svg { color: var(--mc-muted); flex-shrink: 0; }

.mc-step-error { font-size: 13px; color: var(--mc-error); margin-bottom: 12px; display: none; }
.mc-step-error.visible { display: block; }

#mc-save-indicator {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mc-black);
    color: #fff;
    font-size: 12px;
    padding: 7px 16px;
    border-radius: 20px;
    opacity: 0;
    transition: opacity .3s ease;
    pointer-events: none;
    z-index: 9999;
    white-space: nowrap;
}
#mc-save-indicator.visible { opacity: 1; }

/* ==========================================================
   Animation
   ========================================================== */
.mc-step { animation: mcFade .3s ease; }
@keyframes mcFade { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:translateY(0); } }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 999px) {
    .mufasa-checkout-page { background: var(--mc-bg); }
    .mc-checkout { grid-template-columns: 1fr; }
    .mc-main { align-items: stretch; min-height: 0; order: 1; }
    .mc-main__inner { max-width: none; padding: 24px 20px 40px; }
    .mc-sidebar { position: relative; min-height: 0; max-height: none; border-left: none; border-top: 1px solid var(--mc-border); border-bottom: none; padding: 0; order: 2; background: var(--mc-bg-alt); }

    .mc-toggle {
        display: flex; align-items: center; width: 100%; padding: 16px 20px;
        background: var(--mc-bg-alt); border: none; border-bottom: 1px solid var(--mc-border);
        cursor: pointer; font-family: inherit; font-size: 14px; color: var(--mc-link); gap: 8px;
    }
    .mc-toggle-arrow { transition: transform var(--mc-ease); }
    .mc-toggle.open .mc-toggle-arrow { transform: rotate(180deg); }
    .mc-toggle-price { margin-left: auto; font-weight: 700; color: var(--mc-black); font-size: 16px; }
    #mc-summary { display: none; padding: 20px; }
    .mc-toggle.open + #mc-summary { display: block; }
}

@media (max-width: 599px) {
    .mc-row, .mc-row-addr { grid-template-columns: 1fr; }
    .mc-nav { flex-direction: column-reverse; gap: 16px; align-items: stretch; text-align: center; }
    .mc-btn { width: 100%; min-width: 0; }
    .mc-review-row { grid-template-columns: 70px 1fr; gap: 6px; }
    .mc-review-action { grid-column: 1 / -1; text-align: right; }
}

/* ==========================================================
   Carrinho vazio
   ========================================================== */
.mc-empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
    min-height: 50vh;
}

.mc-empty-cart__icon {
    margin-bottom: 24px;
    opacity: .7;
}

.mc-empty-cart__title {
    font-size: 22px;
    font-weight: 600;
    color: var(--mc-black);
    margin-bottom: 10px;
}

.mc-empty-cart__text {
    font-size: 14px;
    color: var(--mc-muted);
    margin-bottom: 28px;
    max-width: 340px;
}

.mc-empty-cart__btn {
    display: inline-flex;
    align-items: center;
    height: 44px;
    padding: 0 28px;
    background: var(--mc-black);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--mc-radius);
    text-decoration: none;
    transition: opacity .15s;
}

.mc-empty-cart__btn:hover,
.mc-empty-cart__btn:focus { opacity: .85; color: #fff !important; background: var(--mc-black) !important; }

/* ==========================================================
   WC Payment Gateway Override
   ========================================================== */
.mc-method-body .form-row,
.mc-method-body .woocommerce-input-wrapper { margin-bottom: 10px; }
.mc-method-body label { font-size: 13px; color: var(--mc-muted); display: block; margin-bottom: 4px; }
.mc-method-body input[type="text"],
.mc-method-body input[type="tel"],
.mc-method-body input[type="number"],
.mc-method-body select,
.mc-method-body textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--mc-border); border-radius: var(--mc-radius); font-size: 14px; font-family: inherit; }
.mc-method-body input:focus, .mc-method-body select:focus, .mc-method-body textarea:focus { outline: none; border-color: var(--mc-border-focus); box-shadow: 0 0 0 1px var(--mc-border-focus); }
