/* ── Toast de erro (substitui alert nativo) ─────────────────── */
#ecla-toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-12px);
    z-index: 99999;
    background: #1a0505;
    border: 1px solid #7f1f1f;
    border-left: 4px solid var(--eco-red);
    color: #ffb3b3;
    padding: 12px 16px 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: min(460px, calc(100vw - 32px));
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}
#ecla-toast.ecla-toast--visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}
.ecla-toast__msg { flex: 1; }
.ecla-toast__close {
    background: none;
    border: none;
    color: #ffb3b3;
    opacity: 0.6;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    line-height: 1;
    flex-shrink: 0;
    transition: opacity 0.15s;
}
.ecla-toast__close:hover { opacity: 1; }

:root {
    --eco-green:      #1e7f3a;
    --eco-green-dark: #155d27;
    --eco-green-light:#f3f9f4;
    --eco-green-mid:  #eaf6ef;
    --eco-navy:       #1a1a2e;
    --eco-gold:       #f4c430;
    --eco-red:        #c71f1f;
    --eco-blue:       #0073aa;
    --eco-bg:         #f4faf6;
    --eco-card:       #ffffff;
    --eco-border:     #d7efde;
    --eco-border-mid: #e2e6f0;
    --eco-text:       #1a1a2e;
    --eco-muted:      #5a7060;
    --eco-radius:     14px;
    --eco-shadow:     0 6px 18px rgba(0,0,0,0.07);
    --eco-shadow-sm:  0 2px 8px rgba(0,0,0,0.05);
    --eco-font:       -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}/* Fundo da página */
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce {
    font-family: var(--eco-font);
}/* Fundo warm-beige para a área de conta logada */
body.woocommerce-account.logged-in {
    background-color: #F4F1E9;
}/* Esconder a navegação e conteúdo padrão do WC quando usamos o nosso layout */
.woocommerce-account .woocommerce-MyAccount-navigation { display: none; }
.woocommerce-account .woocommerce-MyAccount-content { padding: 0 !important; border: none !important; }/* Remover o padding do contentor da página — o respiro é dado pelo ecla-account-wrap */
.woocommerce-account.logged-in .eco-page-wrap { padding: 0 !important; }/* Remover o padding do wrapper .woocommerce injectado pelo WC */
.woocommerce-account.logged-in .woocommerce { padding: 0 !important; }/* Wrapper do nosso layout custom */
.ecla-account-wrap {
    display: grid;
    grid-template-columns: 256px 1fr;
    grid-template-areas: "sidebar content";
    gap: 26px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 26px 28px 32px;
    align-items: flex-start;
    font-family: var(--eco-font);
}/* ── Sidebar ──────────────────────────────────────────────── */
.ecla-account-sidebar {
    grid-area: sidebar;
    position: sticky;
    top: 24px;
}/* ── Conteúdo principal ──────────────────────────────────── */
.ecla-account-content {
    grid-area: content;
    min-width: 0;
}/* Identidade do utilizador */
.ecla-account-identity {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #E7EAE0;
    margin-bottom: 14px;
}/* Avatar com inicial em círculo verde */
.ecla-account-avatar__initial {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1f7a4d;
    color: #fff;
    font-family: 'Hanken Grotesk', var(--eco-font);
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}/* Compatibilidade com gravatar se ainda existir */
.ecla-account-avatar img {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    display: block;
}

.ecla-account-name {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: #1c2b22;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 170px;
}

.ecla-account-email {
    display: block;
    font-size: 12px;
    color: #8a978d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 170px;
    margin-top: 2px;
}/* Navegação */
.ecla-account-nav {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #E7EAE0;
    padding: 8px;
    margin-bottom: 14px;
    overflow: visible;
}

.ecla-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    color: #3a4a40;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.15s, color 0.15s;
    border-bottom: none;
}

.ecla-nav-item:last-child { border-bottom: none; }

.ecla-nav-item:hover {
    background: #EAF2EA;
    color: #1f7a4d;
    text-decoration: none;
    padding-left: 12px;
}

.ecla-nav-item--active {
    background: #E8F1E9;
    color: #1f7a4d;
    font-weight: 700;
    border-left: none;
}

.ecla-nav-item--auction {
    background: transparent;
}

.ecla-nav-item--auction.ecla-nav-item--active {
    background: #E8F1E9;
}

.ecla-nav-item--logout {
    color: #b15a4a !important;
    margin-top: 4px;
    border-top: 1px solid #E7EAE0;
    border-radius: 0 0 10px 10px;
    padding-top: 14px;
}

.ecla-nav-item--logout:hover {
    background: #fff5f5 !important;
    color: #b15a4a !important;
}

.ecla-nav-icon {
    font-size: 18px;
    flex-shrink: 0;
    width: 22px;
    text-align: center;
    color: #56655b;
}

.ecla-nav-item--active .ecla-nav-icon { color: #1f7a4d; }
.ecla-nav-item--logout .ecla-nav-icon { color: #b15a4a; }

.ecla-nav-labels { display: flex; flex-direction: column; gap: 1px; }

.ecla-nav-label { font-size: 14px; font-weight: 500; line-height: 1.2; }

.ecla-nav-desc { display: none; font-size: 11px; color: var(--eco-muted); }

.ecla-nav-item--active .ecla-nav-desc { color: var(--eco-green-dark); }/* Badge de pontos no nav */
.ecla-nav-badge {
    margin-left: auto;
    background: #E8F1E9;
    color: #1f7a4d;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 20px;
    flex-shrink: 0;
}
.ecla-nav-item--active .ecla-nav-badge {
    background: #c8e3cc;
}/* Separador de secção */
.ecla-nav-separator {
    padding: 8px 16px 4px;
    background: var(--eco-green-50, #f3faf5);
    border-bottom: 1px solid var(--eco-border);
    border-top: 1px solid var(--eco-border);
}

.ecla-nav-separator span {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--eco-text-muted, #7a9080);
}/* CTA "Leilões ao vivo" na sidebar */
.ecla-sidebar-auction-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--eco-navy), #16213e);
    color: #fff;
    text-decoration: none;
    border-radius: var(--eco-radius);
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 14px rgba(26,26,46,0.25);
}

.ecla-sidebar-auction-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,26,46,0.3);
    color: #fff;
    text-decoration: none;
}

.ecla-sidebar-cta-arrow { margin-left: auto; opacity: 0.7; }

.ecla-sidebar-cta-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ef4444;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(239,68,68,0.3);
}/* ── Conteúdo principal (mobile override) ────────────────── */
.ecla-account-content {
    flex: 1;
    min-width: 0;
}/* ══════════════════════════════════════════════════════════════
   DASHBOARD
══════════════════════════════════════════════════════════════ */

.ecla-dashboard {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media (max-width: 600px) {
    .ecla-dashboard { gap: 16px; }}/* Boas-vindas */
.ecla-dash-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ecla-dash-welcome__title {
    margin: 0 0 5px;
    font-family: "Lora", serif;
    font-weight: 600;
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -.01em;
    color: #1c2b22;
}
.ecla-dash-welcome__title em {
    font-style: italic;
    color: #1f7a4d;
}

.ecla-dash-welcome__subtitle {
    margin: 0;
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #6c7a70;
}/* botão CTA */
.ecla-dash-welcome__cta {
    flex: none;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 0;
    background: #1f7a4d;
    color: #fff;
    font: 700 15px "Hanken Grotesk", sans-serif;
    padding: 14px 22px;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 14px 26px -12px rgba(31,122,77,.55);
    transition: filter .15s;
}
.ecla-dash-welcome__cta,
.ecla-dash-welcome__cta:link,
.ecla-dash-welcome__cta:visited { color: #fff; }
.ecla-dash-welcome__cta:hover { filter: brightness(1.05); color: #fff; text-decoration: none; }/* ponto a pulsar */
.ecla-dash-welcome__cta-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: eclaPulse 1.6s infinite;
}
@keyframes eclaPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .35; transform: scale(1.8); }
}

@media (max-width: 980px) {
    .ecla-dash-welcome {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .ecla-dash-welcome__title { font-size: 26px; }
    .ecla-dash-welcome__subtitle { font-size: 13px; }
    .ecla-dash-welcome__cta {
        justify-content: center;
        padding: 14px;
        border-radius: 13px;
    }}/* Secções */
.ecla-dash-section {
    background: var(--eco-card);
    border-radius: var(--eco-radius);
    border: 1px solid var(--eco-border);
    box-shadow: var(--eco-shadow-sm);
    padding: 20px 22px;
}

.ecla-dash-section__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 11px;
}

.ecla-dash-section__title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 11px;
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-weight: 800;
    font-size: 13px;
    line-height: 1;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #8a978d;
}/* Sobrepõe .eco-page-body h3 { color: var(--eco-text); margin: 24px 0 10px } de main.css */
.eco-page-body .ecla-dash-section__title {
    color: #8a978d;
    margin: 0 0 11px;
    font-size: 13px;
}/* ícone opcional dentro do título (ex.: Pontos & Árvores) */
.ecla-dash-section__title svg {
    width: 17px;
    height: 17px;
    flex: none;
    stroke: #1f7a4d;
}

@media (max-width: 980px) {
    .ecla-dash-section__title {
        font-size: 13px;
        letter-spacing: .05em;
        margin-bottom: 7px;
    }
    .ecla-dash-section__title svg { width: 15px; height: 15px; }}

.ecla-dash-section__header .ecla-dash-section__title { margin: 0; }

.ecla-dash-section__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--eco-green);
    text-decoration: none;
}

.ecla-dash-section__link:hover { text-decoration: underline; }/* Stats grid */
.ecla-dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}/* cartão individual */
.ecla-dash-stat {
    display: flex;
    align-items: center;
    gap: 13px;
    background: #fff;
    border: 1px solid #EAEAE0;
    border-radius: 13px;
    padding: 16px;
    text-decoration: none;
    color: #1c2b22;
    position: relative;
    transition: box-shadow 0.15s, border-color 0.15s;
}

.ecla-dash-stat:hover {
    box-shadow: 0 14px 26px -18px rgba(20,40,30,.45);
    border-color: #D8E2D6;
    text-decoration: none;
    color: #1c2b22;
}

.ecla-dash-stat__icon {
    width: 46px;
    height: 46px;
    flex: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ecla-dash-stat__icon svg { width: 24px; height: 24px; }

.ecla-dash-stat__icon--amber { background: #FFF4E2; }
.ecla-dash-stat__icon--blue  { background: #E5EEFB; }
.ecla-dash-stat__icon--green { background: #E6F3E9; }

.ecla-dash-stat__num {
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-weight: 800;
    font-size: 26px;
    line-height: 1;
    color: #1c2b22;
}
.ecla-dash-stat__label {
    margin-top: 4px;
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #8a978d;
}
.ecla-dash-stat__value {
    font-size: 12px;
    font-weight: 700;
    color: var(--eco-red);
    margin-top: 3px;
}/* badge no cartão */
.ecla-dash-stat--badge { position: relative; }
.ecla-dash-stat--badge .ecla-dash-stat__badge {
    position: absolute;
    top: 13px;
    right: 13px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 10px;
    background: #3b76d6;
    color: #fff;
    font: 800 11px "Hanken Grotesk", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ecla-dash-stat__badge--amber { background: var(--eco-red); }/* Alert bar */
.ecla-dash-alert-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff8ec;
    border: 1px solid #f5d9a0;
    border-radius: 10px;
    font-size: 14px;
    color: #7a4f00;
}

.ecla-dash-alert-bar a {
    margin-left: auto;
    font-weight: 700;
    color: var(--eco-green);
    text-decoration: none;
    white-space: nowrap;
}

.ecla-dash-alert-bar a:hover { text-decoration: underline; }

.ecla-dash-alert-warning {
    margin: 6px 0 0;
    padding: 8px 14px;
    background: #fff8f0;
    border-left: 3px solid #d97706;
    border-radius: 0 5px 5px 0;
    font-size: 12px;
    color: #92400e;
    line-height: 1.5;
}/* Encomendas recentes */
.ecla-recent-orders {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ecla-order-card {
    display: grid;
    grid-template-columns: 60px 1fr auto auto auto;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid var(--eco-border);
    border-left: 3px solid transparent;
    text-decoration: none;
    color: var(--eco-text);
    transition: background 0.15s, border-color 0.15s;
}/* Em desktop, __left é transparente — filhos são grid items diretos */
.ecla-order-card__left { display: contents; }
.ecla-order-card__meta { display: flex; align-items: center; gap: 10px; }

.ecla-order-card:hover {
    background: #f5f9f6;
    border-left-color: var(--eco-green);
    text-decoration: none;
    color: var(--eco-text);
}

.ecla-order-card__num {
    font-weight: 800;
    font-size: 14px;
    color: var(--eco-green);
}

.ecla-order-card__name {
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ecla-order-card__more {
    background: var(--eco-border);
    color: var(--eco-muted);
    font-size: 11px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 10px;
    white-space: nowrap;
}

.ecla-order-card__date { font-size: 12px; color: var(--eco-muted); white-space: nowrap; }
.ecla-order-card__sep { color: var(--eco-border); }
.ecla-order-card__total { font-weight: 700; font-size: 14px; color: #1c2b22; white-space: nowrap; }

.ecla-order-card__status {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    background: #e9f7ee;
    color: var(--eco-green);
    white-space: nowrap;
}

.ecla-order-card__status.status-on-hold    { background: #fef9ee; color: #b45309; }
.ecla-order-card__status.status-pending    { background: #fef3c7; color: #92400e; }
.ecla-order-card__status.status-cancelled  { background: #fef2f2; color: #b91c1c; }
.ecla-order-card__status.status-processing { background: #e9f0fb; color: var(--eco-blue); }/* ══════════════════════════════════════════════════════════════
   DASHBOARD — SECÇÃO PONTOS & ÁRVORES
══════════════════════════════════════════════════════════════ */

.ecla-dash-section--points {
    border-color: var(--eco-green-border);
    background: #f9faf7;
    box-shadow: 0 2px 12px rgba(30,127,58,.06);
}

.ecla-dash-pts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}/* cartão base */
.ecla-dash-pts-card {
    border-radius: 14px;
    padding: 18px 20px;
}
.ecla-dash-pts-card--points { background: #EAF4EC; border: 1px solid #CFE6D4; }
.ecla-dash-pts-card--trees  { background: #F5EEDF; border: 1px solid #E8DAC0; }/* número grande */
.ecla-dash-pts-card__num {
    font-family: "Lora", serif;
    font-weight: 700;
    font-size: 34px;
    line-height: 1;
}
.ecla-dash-pts-card--points .ecla-dash-pts-card__num { color: #1e7f3a; }
.ecla-dash-pts-card--trees  .ecla-dash-pts-card__num { color: #7a5a2e; }/* label sob o número */
.ecla-dash-pts-card__label {
    margin-top: 6px;
    font-family: "Hanken Grotesk", system-ui, sans-serif;
    font-weight: 600;
    font-size: 13px;
}
.ecla-dash-pts-card--points .ecla-dash-pts-card__label { color: #56655b; }
.ecla-dash-pts-card--trees  .ecla-dash-pts-card__label { color: #7d6a4e; }/* caixa interna — cartão verde (Plantar) */
.ecla-dash-pts-card__cta {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
    background: #fff;
    border: 1px solid #DCEBDE;
    border-radius: 10px;
    padding: 10px 12px;
}
.ecla-dash-pts-card__cta-text {
    flex: 1;
    font: 700 13px "Hanken Grotesk", sans-serif;
    color: #1e7f3a;
}
.ecla-dash-pts-card__cta-btn {
    flex: none;
    white-space: nowrap;
    background: #1f7a4d;
    color: #fff;
    font: 800 13px "Hanken Grotesk", sans-serif;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 9px;
}
.ecla-dash-pts-card__cta-btn,
.ecla-dash-pts-card__cta-btn:link,
.ecla-dash-pts-card__cta-btn:visited,
.eco-page-body .ecla-dash-pts-card__cta-btn,
.eco-page-body .ecla-dash-pts-card__cta-btn:link,
.eco-page-body .ecla-dash-pts-card__cta-btn:visited { color: #fff; }
.ecla-dash-pts-card__cta-btn:hover { background: #196641; color: #fff; text-decoration: none; }/* caixa interna — cartão terra (impacto) */
.ecla-dash-pts-card__note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 14px;
    background: rgba(255,255,255,.55);
    border: 1px solid #E8DAC0;
    border-radius: 10px;
    padding: 10px 12px;
    font: 600 13px "Hanken Grotesk", sans-serif;
    color: #7d6a4e;
}
.ecla-dash-pts-card__note svg { width: 18px; height: 18px; flex: none; stroke: #7a5a2e; }/* banner full-width mobile (irmão da grid) */
.ecla-dash-pts-banner {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 9px;
    background: #EAF4EC;
    border: 1px solid #CFE6D4;
    border-radius: 11px;
    padding: 11px;
    text-decoration: none;
}
.ecla-dash-pts-banner span:first-child { font: 700 13px "Hanken Grotesk", sans-serif; color: #1e7f3a; }
.ecla-dash-pts-banner span:last-child  { font: 800 13px "Hanken Grotesk", sans-serif; color: #1f7a4d; }
@media (max-width: 980px) {
    .ecla-dash-pts-grid { gap: 9px; }
    .ecla-dash-pts-card { padding: 13px; }
    .ecla-dash-pts-card__num { font-size: 26px; }
    .ecla-dash-pts-card__label { font-size: 11px; }
    .ecla-dash-pts-card__cta,
    .ecla-dash-pts-card__note { display: none; }
    .ecla-dash-pts-banner { display: flex; }}/* ══════════════════════════════════════════════════════════════
   Ações rápidas — secção sem separação visual */
.ecla-dash-section--quicklinks {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}/* Chip-style quick links */
.ecla-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ecla-quick-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: #ffffff;
    border-radius: 999px;
    border: 1px solid var(--eco-border);
    text-decoration: none;
    color: var(--eco-text);
    font-size: 13px;
    font-weight: 500;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.ecla-quick-link:hover {
    background: #e8f4ec;
    border-color: var(--eco-green-border);
    color: var(--eco-green);
    text-decoration: none;
}

.ecla-quick-link--live {
    background: #fff5f5;
    border-color: #fcc;
    color: #b91c1c;
    font-weight: 600;
}

.ecla-quick-link--live:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #991b1b;
}/* ══════════════════════════════════════════════════════════════
   SECÇÕES: Ganhos / Pagos / Enviados
══════════════════════════════════════════════════════════════ */

.ecla-wins-section {
    font-family: var(--eco-font);
}

.ecla-wins-header { margin-bottom: 20px; }

.ecla-wins-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--eco-text);
    margin: 0 0 6px;
}

.ecla-wins-header p {
    color: var(--eco-muted);
    font-size: 14px;
    margin: 0;
}/* Alertas */
.ecla-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 16px;
}

.ecla-alert--warning {
    background: #fff8ec;
    border: 1px solid #f5d9a0;
    color: #7a4f00;
}

.ecla-info-bar {
    background: var(--eco-green-light);
    border: 1px solid var(--eco-border);
    color: #2a5c37;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    border-left: 4px solid var(--eco-green);
}/* Grid de wins */
.ecla-wins-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}/* Card de win */
.ecla-win-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--eco-card);
    border: 1.5px solid var(--eco-border);
    border-radius: var(--eco-radius);
    padding: 14px 16px;
    box-shadow: var(--eco-shadow-sm);
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
}

.ecla-win-card--urgent {
    border-color: #f87171;
    background: #fff5f5;
}

.ecla-win-card--selected {
    border-color: #a8d5b5;
    box-shadow: 0 0 0 3px rgba(30,127,58,0.08);
}

.ecla-win-card--paid {
    border-color: #a7f3d0;
    background: #f0fdf4;
}

.ecla-win-card--shipped { opacity: 0.8; }/* Checkbox personalizado — estilo Ecolivros */
.ecla-win-card__select {
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
}

.ecla-win-card__select input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
}

.ecla-win-check-ui {
    display: block;
    width: 22px; height: 22px;
    border: 2px solid var(--eco-border);
    border-radius: 6px;
    background: #fff;
    transition: all 0.15s;
    position: relative;
}

.ecla-win-check-ui::after {
    content: '';
    position: absolute;
    top: 3px; left: 6px;
    width: 5px; height: 9px;
    border: 2px solid #fff;
    border-top: none; border-left: none;
    transform: rotate(45deg) scale(0);
    transition: transform 0.15s;
}

.ecla-win-card__select input:checked ~ .ecla-win-check-ui {
    background: var(--eco-green);
    border-color: var(--eco-green);
}

.ecla-win-card__select input:checked ~ .ecla-win-check-ui::after {
    transform: rotate(45deg) scale(1);
}/* Imagem */
.ecla-win-card__img {
    width: 64px; height: 86px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--eco-green-light);
    position: relative;
    margin-top: 1px;
}

.ecla-win-card__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.ecla-win-no-img {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #a8d5b5;
}

.ecla-win-card__shipped-badge {
    position: absolute;
    bottom: 4px; right: 4px;
    background: var(--eco-green);
    color: #fff;
    font-size: 10px;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}/* Body do card */
.ecla-win-card__body { flex: 1; min-width: 0; }

.ecla-win-card__title {
    font-weight: 700;
    font-size: 14px;
    color: var(--eco-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.ecla-win-card__ref { font-size: 12px; color: var(--eco-muted); margin-bottom: 4px; }

.ecla-win-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 2px;
}

.ecla-win-card__price {
    font-size: 20px;
    font-weight: 900;
    color: var(--eco-green);
}

.ecla-win-card__deadline {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    background: #f3e8ff;
    border: 1px solid #d8b4fe;
    border-radius: 8px;
    padding: 5px 10px;
    align-self: flex-start;
}
.ecla-deadline-label {
    font-size: 9px;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    white-space: nowrap;
}
.ecla-deadline-lcd {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #5b21b6;
    letter-spacing: 0.5px;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}
.ecla-win-card__deadline.urgent {
    background: #fef2f2;
    border-color: #fca5a5;
}
.ecla-win-card__deadline.urgent .ecla-deadline-label {
    color: #dc2626;
}
.ecla-win-card__deadline.urgent .ecla-deadline-lcd {
    color: #e94560;
    animation: ecla-deadline-blink .9s ease-in-out infinite;
}
@keyframes ecla-deadline-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: .5; }
}

.ecla-win-card__trophy { font-size: 20px; flex-shrink: 0; opacity: 0.35; margin-top: 2px; }/* Badges */
.ecla-win-card__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 4px;
}

.ecla-badge--paid     { background: var(--eco-green-mid); color: var(--eco-green-dark); }
.ecla-badge--shipped  { background: #dbeafe; color: #1e40af; }
.ecla-badge--checkout { background: #fef3c7; color: #92400e; }/* Card em checkout (pagamento iniciado mas não concluído) */
.ecla-win-card--in-checkout {
    border-color: #fde68a;
    background: #fffbeb;
    opacity: 0.95;
}/* Botão completar pagamento */
.ecla-btn--complete-pay {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 14px;
    border-radius: 6px;
    background: #d97706;
    color: #fff !important;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}
.ecla-btn--complete-pay:hover { background: #b45309; color: #fff !important; }/* Etiqueta de secção (separador entre grupos de wins) */
.ecla-section-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 0 8px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 12px;
}/* ── Grupos de leilão (ecla-pagos) ───────────────────────────────────── */
.ecla-auction-group {
    margin-bottom: 24px;
    border: 1px solid var(--eco-border);
    border-radius: var(--eco-radius);
    overflow: hidden;
    background: var(--eco-card);
}

.ecla-auction-group__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #f0f9f3, #eaf6ef);
    border-bottom: 1px solid var(--eco-border);
    font-size: 13px;
    color: var(--eco-text);
}

.ecla-auction-group__header strong {
    font-weight: 700;
    color: var(--eco-green-dark);
}

.ecla-auction-group__ref {
    font-size: 11px;
    color: var(--eco-muted);
    background: #fff;
    border: 1px solid var(--eco-border);
    border-radius: 4px;
    padding: 1px 6px;
    font-family: monospace;
}

.ecla-auction-group__count {
    margin-left: auto;
    font-size: 11px;
    color: var(--eco-muted);
    font-weight: 500;
}

.ecla-auction-group .ecla-wins-grid {
    border-radius: 0;
    padding: 12px 16px;
    gap: 10px;
}/* Footer */
.ecla-wins-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0 4px;
    border-top: 1px solid var(--eco-border);
}

.ecla-wins-total {
    font-size: 16px;
    color: var(--eco-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.ecla-wins-total strong {
    font-size: 22px;
    font-weight: 900;
    color: var(--eco-green);
}/* ── Botões — mesmo estilo de ecolivros-style.css ─────────── */
.ecla-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    font-family: var(--eco-font);
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    letter-spacing: 0.2px;
}

.ecla-btn:hover { transform: translateY(-2px); text-decoration: none; }
.ecla-btn:active { transform: translateY(0); }
.ecla-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.ecla-btn--pay {
    background-color: var(--eco-green);
    color: #fff;
    box-shadow: 0 6px 18px rgba(30,127,58,0.25);
}

.ecla-btn--pay:hover {
    background-color: var(--eco-green-dark);
    color: #fff;
    box-shadow: 0 8px 22px rgba(30,127,58,0.32);
}

.ecla-btn--ship {
    background-color: var(--eco-blue);
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,115,170,0.22);
}

.ecla-btn--ship:hover {
    background-color: #005580;
    color: #fff;
    box-shadow: 0 8px 22px rgba(0,115,170,0.3);
}

.ecla-btn--primary,
a.ecla-btn--primary,
a.ecla-btn--primary:link,
a.ecla-btn--primary:visited {
    background-color: var(--eco-green);
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(30,127,58,0.25);
    text-decoration: none !important;
}

.ecla-btn--primary:hover,
a.ecla-btn--primary:hover,
a.ecla-btn--primary:focus,
a.ecla-btn--primary:active {
    background-color: var(--eco-green-dark);
    color: #ffffff !important;
    text-decoration: none !important;
}/* ── Seletor de envio — mesmo estilo que elb-painel ──────── */
.ecla-shipping-selector { margin-bottom: 24px; }

.ecla-shipping-selector h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--eco-text);
    margin: 0 0 12px;
}

.ecla-shipping-options { display: flex; flex-direction: column; gap: 8px; }

.ecla-shipping-opt {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--eco-border-mid);
    border-radius: 10px;
    cursor: pointer;
    background: var(--eco-card);
    transition: border-color 0.15s, background 0.15s;
    box-shadow: var(--eco-shadow-sm);
}

.ecla-shipping-opt input[type="radio"] { display: none; }

.ecla-shipping-opt:hover {
    border-color: #a8d5b5;
    background: var(--eco-green-light);
}

.ecla-shipping-opt--selected {
    border-color: var(--eco-green);
    background: var(--eco-green-light);
    box-shadow: 0 0 0 3px rgba(30,127,58,0.1);
}

.ecla-shipping-opt__icon { font-size: 24px; flex-shrink: 0; }

.ecla-shipping-opt__info { display: flex; flex-direction: column; gap: 2px; }

.ecla-shipping-opt__info strong { font-size: 14px; font-weight: 700; color: var(--eco-text); }

.ecla-shipping-opt__info span { font-size: 12px; color: var(--eco-muted); }
.ecla-shipping-opt__info span small { font-size: 10px; color: var(--eco-muted); opacity: 0.8; display: block; }/* ── Estado vazio ─────────────────────────────────────────── */
.ecla-empty-state {
    text-align: center;
    padding: 56px 24px;
    background: var(--eco-card);
    border-radius: var(--eco-radius);
    border: 1px dashed var(--eco-border);
}

.ecla-empty-state__icon { font-size: 52px; margin-bottom: 16px; line-height: 1; }

.ecla-empty-state__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--eco-text);
    margin: 0 0 8px;
}

.ecla-empty-state__text {
    font-size: 14px;
    color: var(--eco-muted);
    margin: 0 0 24px;
}/* ── Grid enviados (compacto) ─────────────────────────────── */
.ecla-wins-grid--shipped {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 14px;
}

.ecla-wins-grid--shipped .ecla-win-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
}

.ecla-wins-grid--shipped .ecla-win-card__img {
    width: 100%;
    height: 150px;
}/* ══════════════════════════════════════════════════════════════
   RESPONSIVO
══════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {/* em mobile: flex-column → conteúdo (1.º no HTML) aparece no topo, sidebar em baixo */
    .ecla-account-wrap {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: stretch; /* anular o flex-start herdado do contexto grid */
    }
    .ecla-account-sidebar { width: 100%; position: static; }
    .ecla-account-content { width: 100%; min-width: 0; }
    .ecla-account-nav { display: grid; grid-template-columns: repeat(2, 1fr); }
    .ecla-nav-item { border-bottom: none; border-right: 1px solid #f0f5f2; }
    .ecla-nav-separator { grid-column: 1 / -1; }
    .ecla-nav-desc { display: none; }
    .ecla-dash-stats-grid { grid-template-columns: repeat(3, 1fr); }}

@media (max-width: 600px) {
    .ecla-account-wrap { padding: 16px 16px 8px; margin: 0; }
    .ecla-account-nav { grid-template-columns: 1fr; }
    .ecla-nav-item { border-right: none; border-bottom: 1px solid #f0f5f2; }
    .ecla-wins-footer { flex-direction: column; align-items: stretch; }
    .ecla-btn { width: 100%; }
    .ecla-wins-grid--shipped { grid-template-columns: repeat(2, 1fr); }/* Stats — 3 colunas compactas (sem ícone) */
    .ecla-dash-stats-grid { grid-template-columns: repeat(3, 1fr); gap: 9px; }
    .ecla-dash-stat { flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 13px 8px; gap: 0; }
    .ecla-dash-stat__icon { display: none; }
    .ecla-dash-stat__num { font-size: 22px; }
    .ecla-dash-stat__label { font-size: 11px; line-height: 1.25; }
    .ecla-dash-stat__value { display: none; }
    .ecla-dash-stat--badge .ecla-dash-stat__badge { top: 6px; right: 6px; }/* Encomendas — flex row: info à esquerda, pill à direita */
    .ecla-order-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        grid-template-columns: unset;
    }
    .ecla-order-card__left {
        display: flex;
        flex-direction: column;
        min-width: 0;
        gap: 2px;
    }
    .ecla-order-card__num { font-size: 13px; font-weight: 700; color: #1f7a4d; }
    .ecla-order-card__name { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; }
    .ecla-order-card__meta { display: flex; gap: 5px; font-size: 11px; color: #8a978d; font-weight: 500; }
    .ecla-order-card__sep { color: #c0cbc3; }
    .ecla-order-card__total { color: #8a978d; }
    .ecla-order-card__date { display: block; }
    .ecla-order-card__status { flex-shrink: 0; }}/* Fundo a página inteira */
.eco-auth-wrap {
    min-height: 60vh;
    background: #f4f7f5;
    margin: 0;
    padding: 0;
}/* Cabeçalho */
.eco-auth-hero {
    text-align: center;
    margin-bottom: 36px;
}
.eco-auth-logo {
    display: inline-block;
    margin-bottom: 10px;
    text-decoration: none;
}
.eco-auth-logo img {
    height: 48px;
    width: auto;
}
.eco-auth-logo-text {
    font-size: 1.7rem;
    font-weight: 800;
    color: #1a3c2e;
    letter-spacing: -0.5px;
}/* Logo link (v2) */
.eco-auth-logo-link {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 10px;
}
.eco-auth-logo-link img {
    height: 48px;
    width: auto;
    display: block;
}/* Brand text fallback (v2) */
.eco-auth-brand {
    display: inline-block;
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
}
.eco-auth-brand-eco    { color: #2e7d52; }
.eco-auth-brand-livros { color: #1a3c2e; }

.eco-auth-tagline {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}/* Layout dos cartões */
.eco-auth-cards {
    display: grid;
    gap: 24px;
    align-items: start;
}
.eco-auth-cards--two-col {
    grid-template-columns: 1fr 1fr;
}
.eco-auth-cards--one-col {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
}/* Cartão */
.eco-auth-card {
    background: #fff;
    border: 1px solid #e8f0eb;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 2px 16px rgba(26, 60, 46, 0.07);
}
.eco-auth-card--register {
    border-color: #d4edda;
    background: linear-gradient(180deg, #f0faf4 0%, #fff 120px);
}/* Cabeçalho do cartão */
.eco-auth-card__header {
    text-align: center;
    margin-bottom: 28px;
}
.eco-auth-card__icon {
    display: block;
    font-size: 2rem;
    margin-bottom: 8px;
    line-height: 1;
}/* Ícone SVG circular (v2) */
.eco-auth-card__icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin: 0 auto 12px;
}
.eco-auth-card__icon-wrap svg {
    display: block;
}
.eco-auth-card__icon-wrap--login {
    background: #e8f5ee;
    color: #2e7d52;
    border: 1.5px solid #c3e6d0;
}
.eco-auth-card__icon-wrap--register {
    background: #1a3c2e;
    color: #fff;
    border: 1.5px solid #2e7d52;
}

.eco-auth-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a3c2e;
    margin: 0 0 6px;
}
.eco-auth-card__subtitle {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}/* Campos */
.eco-auth-field {
    margin-bottom: 18px;
}
.eco-auth-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 7px;
}
.eco-auth-forgot {
    font-weight: 400;
    font-size: 0.82rem;
    color: #2e7d52;
    text-decoration: none;
}
.eco-auth-forgot:hover { text-decoration: underline; }

.eco-auth-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}/* Flex-based icon approach: wrapper is the visual box, icon is a flex child */
.eco-auth-input-wrap--with-icon {
    position: static;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid #d1d5db;
    border-radius: 10px;
    background: #fafafa;
    padding: 0 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.eco-auth-input-wrap--with-icon:focus-within {
    border-color: #2e7d52;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(46, 125, 82, 0.12);
}
.eco-auth-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #9ca3af;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}/* Override: inside --with-icon wrapper, icons are inline flex children */
.eco-auth-input-wrap--with-icon .eco-auth-input-icon {
    position: static !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    pointer-events: none;
    color: #9ca3af;
    display: flex;
    align-items: center;
}/* Input inside flex wrapper: no border/background (wrapper handles it) */
.eco-auth-input-wrap--with-icon .eco-auth-input,
.eco-auth-input-wrap--with-icon input[type="text"],
.eco-auth-input-wrap--with-icon input[type="email"],
.eco-auth-input-wrap--with-icon input[type="password"] {
    flex: 1 !important;
    min-width: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    border-radius: 0 !important;
    padding: 11px 0 !important;
    width: auto !important;
}/* Toggle-pw button: also a flex child */
.eco-auth-input-wrap--with-icon .eco-auth-toggle-pw {
    position: static !important;
    transform: none !important;
    right: auto !important;
    flex-shrink: 0;
    margin-left: auto;
}
.eco-auth-input {
    width: 100%;
    padding: 11px 42px 11px 38px !important;
    border: 1.5px solid #d1d5db !important;
    border-radius: 10px !important;
    font-size: 0.95rem !important;
    color: #111827 !important;
    background: #fafafa !important;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box;
}
.eco-auth-input:focus {
    border-color: #2e7d52 !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(46, 125, 82, 0.12) !important;
}
.eco-auth-input::placeholder { color: #9ca3af !important; }

.eco-auth-toggle-pw {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #9ca3af;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}
.eco-auth-toggle-pw:hover { color: #2e7d52; }
.eco-auth-toggle-pw--visible { color: #2e7d52; }/* Manter sessão */
.eco-auth-remember {
    margin-bottom: 22px;
}
.eco-auth-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #4b5563;
    cursor: pointer;
    user-select: none;
}
.eco-auth-checkbox { display: none; }
.eco-auth-checkbox-box {
    width: 18px;
    height: 18px;
    border: 1.5px solid #d1d5db;
    border-radius: 5px;
    background: #fafafa;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
    position: relative;
}
.eco-auth-checkbox:checked + .eco-auth-checkbox-box {
    background: #2e7d52;
    border-color: #2e7d52;
}
.eco-auth-checkbox:checked + .eco-auth-checkbox-box::after {
    content: '';
    display: block;
    width: 10px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
}/* Botões */
.eco-auth-btn {
    width: 100%;
    padding: 13px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    text-decoration: none;
}
.eco-auth-btn--primary {
    background: #2e7d52;
    color: #fff !important;
}
.eco-auth-btn--primary:hover {
    background: #236040;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(46, 125, 82, 0.35);
}
.eco-auth-btn--secondary {
    background: #1a3c2e;
    color: #fff !important;
}
.eco-auth-btn--secondary:hover {
    background: #122a20;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(26, 60, 46, 0.35);
}
.eco-auth-btn-arrow {
    font-size: 1.1rem;
    transition: transform 0.2s;
}
.eco-auth-btn:hover .eco-auth-btn-arrow { transform: translateX(3px); }/* Divisor "ou" */
.eco-auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0 16px;
    color: #9ca3af;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.eco-auth-divider::before,
.eco-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}/* Troca login/registo */
.eco-auth-switch {
    text-align: center;
    margin: 20px 0 0;
    font-size: 0.87rem;
    color: #6b7280;
}
.eco-auth-switch-link {
    color: #2e7d52;
    font-weight: 600;
    text-decoration: none;
}
.eco-auth-switch-link:hover { text-decoration: underline; }/* Benefícios do registo */
.eco-auth-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.eco-auth-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #374151;
    background: #f0faf4;
    border: 1px solid #d4edda;
    border-radius: 8px;
    padding: 8px 10px;
}
.eco-auth-perk-icon { font-size: 1rem; flex-shrink: 0; }/* Mensagem senha automática */
.eco-auth-auto-pw {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.87rem;
    color: #78350f;
    margin-bottom: 18px;
}/* Privacidade */
.eco-auth-privacy {
    font-size: 0.8rem;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 18px;
}
.eco-auth-privacy a { color: #2e7d52; }/* Trust strip */
.eco-auth-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.eco-auth-trust-item {
    font-size: 0.82rem;
    color: #9ca3af;
}
.eco-auth-trust-sep { color: #d1d5db; }/* Erros WooCommerce */
.eco-auth-page .woocommerce-error,
.eco-auth-page .woocommerce-message,
.eco-auth-page .woocommerce-info {
    border-radius: 10px;
    margin-bottom: 20px;
}/* ── Responsivo ───────────────────────────────────────────── */
@media (max-width: 760px) {
    .eco-auth-cards--two-col {
        grid-template-columns: 1fr;
    }
    .eco-auth-card {
        padding: 28px 20px;
    }
    .eco-auth-perks {
        grid-template-columns: 1fr;
    }}
@media (max-width: 480px) {
    .eco-auth-card { padding: 24px 16px; }}/* Badge "Em preparação" */
.ecla-badge--processing {
    background: #ede9fe;
    color: #5b21b6;
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    margin-top: 4px;
}/* Card em processamento */
.ecla-win-card--processing {
    border-left: 3px solid #7c3aed;
    opacity: 0.92;
}

.ecla-win-card__sub {
    font-size: 11px;
    color: var(--eco-muted);
    margin-top: 3px;
}/* Bloco de morada de envio */
.ecla-address-block {
    background: var(--eco-green-light);
    border: 1px solid var(--eco-border);
    border-radius: var(--eco-radius);
    padding: 20px 24px 16px;
    margin: 0 0 20px;
}

.ecla-address-block h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--eco-navy);
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ecla-address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ecla-field { display: flex; flex-direction: column; gap: 4px; }
.ecla-field--full { grid-column: 1 / -1; }

.ecla-field label {
    font-size: 12px;
    font-weight: 600;
    color: var(--eco-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ecla-input {
    border: 1px solid var(--eco-border-mid);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    color: var(--eco-text);
    background: #fff;
    transition: border-color 0.15s;
    width: 100%;
    box-sizing: border-box;
}
.ecla-input:focus {
    outline: none;
    border-color: var(--eco-green);
    box-shadow: 0 0 0 3px rgba(30,127,58,0.1);
}

.ecla-req { color: var(--eco-red); }
.ecla-opt { color: var(--eco-muted); font-weight: 400; font-size: 11px; }

@media (max-width: 540px) {
    .ecla-address-grid { grid-template-columns: 1fr; }
    .ecla-field--full  { grid-column: 1; }}/* ─── Cart merge section (v1.4.1) ─────────────────────────────────────── */

.ecla-cart-merge {
    background: #f8fafc;
    border: 1px solid var(--eco-border);
    border-radius: var(--eco-radius);
    margin: 0 0 20px;
    overflow: hidden;
}

.ecla-cart-merge__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    background: #fff;
    border-bottom: 1px solid var(--eco-border);
    cursor: default;
    font-size: 14px;
    font-weight: 600;
    color: var(--eco-navy);
}

.ecla-cart-merge__header svg { color: var(--eco-green); flex-shrink: 0; }

.ecla-cart-merge__opt {
    font-size: 11px;
    font-weight: 400;
    color: var(--eco-muted);
    margin-left: 2px;
}

.ecla-cart-merge__toggle {
    margin-left: auto;
    background: none;
    border: 1px solid var(--eco-border-mid);
    border-radius: 6px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--eco-muted);
    transition: background 0.15s, color 0.15s, transform 0.2s;
    flex-shrink: 0;
}

.ecla-cart-merge__toggle:hover {
    background: var(--eco-green-light);
    color: var(--eco-green);
}

.ecla-cart-merge__toggle.ecla-cart-merge__toggle--open svg {
    transform: rotate(180deg);
}

.ecla-cart-merge__body {
    padding: 14px 18px 18px;
}

.ecla-cart-merge__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 28px 18px;
    text-align: center;
    background: var(--eco-card);
}

.ecla-cart-merge__empty svg {
    color: var(--eco-muted);
    opacity: .45;
    flex-shrink: 0;
}

.ecla-cart-merge__empty-title {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--eco-muted);
}

.ecla-cart-merge__empty-sub {
    margin: 0;
    font-size: 12px;
    color: var(--eco-muted);
    opacity: .8;
    max-width: 280px;
    line-height: 1.5;
}

.ecla-cart-merge__shop-link {
    display: inline-block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--eco-green-dark);
    text-decoration: none;
    border: 1px solid var(--eco-green-dark);
    border-radius: var(--eco-radius);
    padding: 5px 14px;
    transition: background .15s, color .15s;
}

.ecla-cart-merge__shop-link:hover {
    background: var(--eco-green-light);
    color: var(--eco-green-dark);
    text-decoration: none;
}

.ecla-cart-merge__info {
    font-size: 12px;
    color: var(--eco-muted);
    margin: 0 0 14px;
    line-height: 1.5;
}/* Cart item cards */
.ecla-win-card--cart {
    border-left: 3px solid #0ea5e9;
    background: #f0f9ff;
}

.ecla-win-card--cart.ecla-win-card--selected {
    background: #e0f2fe;
    border-color: #0284c7;
}

.ecla-badge--cart {
    background: #e0f2fe;
    color: #0369a1;
}/* Remove cart link */
.ecla-cart-remove {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--eco-red);
    text-decoration: none;
    margin-top: 4px;
    opacity: 0.75;
    transition: opacity 0.15s;
}

.ecla-cart-remove:hover {
    opacity: 1;
    text-decoration: underline;
}/* ── Dashboard: Guia rápido ───────────────────────────────────────────────── */

.ecla-dash-guide {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    background: #f8fafc;
    border: 1px solid var(--eco-border);
    border-radius: var(--eco-radius);
    padding: 18px 20px;
}

.ecla-dash-guide__step {
    flex: 1;
    min-width: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
}

.ecla-dash-guide__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

.ecla-dash-guide__icon--1 { background: #fef9c3; border-color: #fde047; color: #92400e; }
.ecla-dash-guide__icon--2 { background: #fef9c3; border-color: #fde047; color: #92400e; }
.ecla-dash-guide__icon--3 { background: #dbeafe; border-color: #93c5fd; color: #1d4ed8; }
.ecla-dash-guide__icon--4 { background: #dcfce7; border-color: #86efac; color: #166534; }

.ecla-dash-guide__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ecla-dash-guide__text strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--eco-navy);
}

.ecla-dash-guide__text span {
    font-size: 11px;
    color: var(--eco-muted);
    line-height: 1.4;
}

.ecla-dash-guide__arrow {
    font-size: 16px;
    color: #8aa893;
    flex-shrink: 0;
    align-self: center;
    padding-bottom: 14px;
}/* ── Tab Ganhos: Painel de progresso ──────────────────────────────────────── */

.ecla-ganhos-guide {
    background: #fff;
    border: 1px solid var(--eco-border);
    border-radius: var(--eco-radius);
    padding: 18px 20px 16px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.ecla-ganhos-guide__steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.ecla-ganhos-guide__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    flex-shrink: 0;
    padding: 0 12px;
    opacity: .45;
}

.ecla-ganhos-guide__step--active,
.ecla-ganhos-guide__step--current {
    opacity: 1;
}

.ecla-ganhos-guide__num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #d8e8dc;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecla-ganhos-guide__step--active .ecla-ganhos-guide__num {
    background: #fde047;
    color: #92400e;
}

.ecla-ganhos-guide__step--current .ecla-ganhos-guide__num {
    background: var(--eco-green);
    color: #fff;
    box-shadow: 0 0 0 3px rgba(30,127,58,.2);
}

.ecla-ganhos-guide__label {
    font-size: 12px;
    font-weight: 700;
    color: var(--eco-navy);
    white-space: nowrap;
}

.ecla-ganhos-guide__sub {
    font-size: 10px;
    color: var(--eco-muted);
    white-space: nowrap;
}

.ecla-ganhos-guide__line {
    flex: 1;
    height: 2px;
    background: #d8e8dc;
    min-width: 20px;
    margin-bottom: 20px;
}

.ecla-ganhos-guide__rules {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid var(--eco-border);
    padding-top: 12px;
}

.ecla-ganhos-guide__rule {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--eco-text);
    line-height: 1.4;
}

.ecla-ganhos-guide__rule svg { color: var(--eco-muted); flex-shrink: 0; }/* Responsivo */
@media (max-width: 600px) {
    .ecla-dash-guide        { flex-direction: column; align-items: flex-start; }
    .ecla-dash-guide__step  { flex-direction: row; text-align: left; min-width: unset; }
    .ecla-dash-guide__arrow { display: none; }
    .ecla-ganhos-guide__steps { justify-content: flex-start; }}/* Guide steps — layout em grelha para ecrãs estreitos (evita overflow horizontal) */
@media (max-width: 480px) {
    .ecla-ganhos-guide { padding: 14px 14px 12px; }

    .ecla-ganhos-guide__steps {
        display: grid;
        grid-template-columns: 1fr 16px 1fr 16px 1fr;
        align-items: center;
        overflow-x: visible;
        padding-bottom: 0;
        margin-bottom: 12px;
    }
    .ecla-ganhos-guide__step    { padding: 0 2px; }
    .ecla-ganhos-guide__num     { width: 24px; height: 24px; font-size: 11px; }
    .ecla-ganhos-guide__label   { font-size: 10px; white-space: normal; line-height: 1.3; }
    .ecla-ganhos-guide__sub     { font-size: 9px;  white-space: normal; }
    .ecla-ganhos-guide__line    { min-width: 0; margin: 0 0 22px; }}/* ══════════════════════════════════════════════════════════════
   SHIPPING CHOICE — secção de envio no checkout de Ganhos
══════════════════════════════════════════════════════════════ */

.ecla-shipping-choice {
    background: #fff;
    border: 1px solid var(--eco-border);
    border-radius: var(--eco-radius);
    padding: 20px;
    margin: 20px 0 0;
}

.ecla-shipping-choice__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--eco-text);
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}/* ── Seletor de envio estilo checkout ────────────────────────────────── */
.ecla-ship-section {
    background: #fff;
    border: 1.5px solid var(--eco-border);
    border-radius: var(--eco-radius);
    padding: 16px 18px;
    margin-bottom: 14px;
}

.ecla-ship-section__title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: var(--eco-text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.ecla-ship-section__sub {
    font-size: 12px;
    color: var(--eco-muted);
    margin: 0 0 12px;
}/* Lista de métodos */
.ecla-ship-methods {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ecla-ship-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1.5px solid var(--eco-border);
    border-radius: 10px;
    margin-bottom: 6px !important;
    cursor: pointer;
    transition: border-color .15s, background .15s;
    background: #fff;
    list-style: none !important;
}

.ecla-ship-method input[type="radio"] {
    accent-color: var(--eco-green);
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}

.ecla-ship-method label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--eco-text);
    cursor: pointer;
    margin: 0 !important;
    flex: 1;
}
.ecla-dpd-icon {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    flex-shrink: 0;
    display: block;
}

.eco-dpd-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
    border-radius: 0;
}

.ecla-ship-method__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.ecla-ship-method__title {
    font-size: 14px;
    font-weight: 500;
    color: var(--eco-text);
}
.ecla-ship-method__eta {
    font-size: 11px;
    font-weight: 400;
    color: var(--eco-muted);
}

.ecla-ship-method:hover  { border-color: var(--eco-green); background: var(--eco-green-light); }
.ecla-ship-method.is-checked { border-color: var(--eco-green); background: var(--eco-green-light); }/* Loja: estilo dashed, fica verde só quando selecionado */
.ecla-ship-method--loja {
    border-style: dashed;
}
.ecla-ship-method--loja label { font-weight: 600; }
.ecla-ship-method--loja.is-checked {
    border-style: solid;
    border-color: var(--eco-green);
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}
.ecla-ship-method--loja.is-checked label { color: #1a5c2c; }

.ecla-ship-method__free {
    font-size: 11px;
    font-weight: 700;
    color: var(--eco-green);
    background: rgba(30,127,58,.10);
    border: 1px solid #86efac;
    border-radius: 20px;
    padding: 2px 9px;
    white-space: nowrap;
    margin-left: auto;
}

.ecla-ship-method__price {
    font-size: 13px;
    font-weight: 600;
    color: var(--eco-text);
    white-space: nowrap;
    margin-left: auto;
}/* Painel de detalhe (PUDO, morada, info loja) — ocultado por hidden attribute */
.ecla-ship-method-detail {
    list-style: none !important;
    margin: -2px 0 6px !important;
    padding: 0 !important;
}
.ecla-ship-method-detail[hidden] { display: none; }/* Info de levantamento (dentro do detalhe) */
.ecla-pickup-info {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 1px solid #86efac;
    border-radius: 0 0 10px 10px;
    padding: 12px 14px;
    font-size: 13px;
}
.ecla-pickup-info__header {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}
.ecla-pickup-info__store-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30,127,58,.12);
    border-radius: 8px;
    color: var(--eco-green);
    flex-shrink: 0;
}
.ecla-pickup-info__store-name { font-weight: 700; color: #1a5c2c; font-size: 13px; }
.ecla-pickup-info__address { font-size: 11.5px; color: var(--eco-muted); display: flex; align-items: center; gap: 4px; margin-top: 2px; }
.ecla-pickup-info__free-badge {
    font-size: 11px; font-weight: 700; color: var(--eco-green);
    background: rgba(30,127,58,.10); border: 1px solid #86efac;
    border-radius: 20px; padding: 2px 9px; white-space: nowrap; margin-left: auto;
}
.ecla-pickup-info__hours { border-top: 1px solid #bbf7d0; padding-top: 8px; margin-bottom: 8px; }
.ecla-pickup-info__hours-title { font-size: 11px; font-weight: 700; text-transform: uppercase; color: #2d6a4f; letter-spacing: .04em; display: flex; align-items: center; gap: 5px; margin-bottom: 6px; }
.ecla-pickup-info__schedule-row { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 3px; }
.ecla-pickup-info__schedule-day { color: var(--eco-muted); font-weight: 500; }
.ecla-pickup-info__schedule-time { color: var(--eco-text); font-weight: 600; }
.ecla-pickup-info__note { font-size: 11.5px; color: var(--eco-green-dark); display: flex; align-items: center; gap: 6px; }/* Link para reabrir as opções de envio ocultas */
.ecla-link-btn {
    display: inline-flex;
    align-items: center;
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--eco-green-dark);
    cursor: pointer;
}
.ecla-link-btn:hover { text-decoration: underline; }/* "Pagar sem envio" — separado do método de envio */
.ecla-pay-later-wrap { margin-bottom: 16px; }

.ecla-pay-later-divider {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 10px;
    color: var(--eco-muted);
    font-size: 12px;
    margin: 12px 0;
}
.ecla-pay-later-divider::before,
.ecla-pay-later-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--eco-border);
}

.ecla-pay-later {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    border: 2px dashed var(--eco-border);
    border-radius: var(--eco-radius);
    cursor: pointer;
    transition: border-color .15s, background .15s;
    background: #fafafa;
}
.ecla-pay-later input[type="radio"] { display: none; }
.ecla-pay-later:hover { border-color: var(--eco-green-dark); background: var(--eco-green-light); }
.ecla-pay-later--selected { border-color: var(--eco-green); background: var(--eco-green-light); }

.ecla-pay-later__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8f5ea;
    border-radius: 10px;
    color: var(--eco-green);
    flex-shrink: 0;
}

.ecla-pay-later__body { flex: 1; }
.ecla-pay-later__body strong { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; color: var(--eco-text); margin-bottom: 4px; }
.ecla-pay-later__body strong .ecla-pay-later__badge { margin-left: 4px; }
.ecla-pay-later__body span { font-size: 12px; color: var(--eco-muted); line-height: 1.4; }

.ecla-pay-later__badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .03em;
    color: var(--eco-muted);
    background: transparent;
    border: 1px solid var(--eco-border);
    border-radius: 999px;
    padding: 1px 7px;
    text-transform: uppercase;
}

.ecla-pay-later__radio {
    width: 18px; height: 18px;
    border: 2px solid var(--eco-border);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    transition: border-color .15s;
    position: relative;
}
.ecla-pay-later--selected .ecla-pay-later__radio {
    border-color: var(--eco-green);
    background: var(--eco-green);
}
.ecla-pay-later--selected .ecla-pay-later__radio::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #fff;
}/* Opções de escolha: sem envio / loja / DPD */
.ecla-choice-opt {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border: 2px solid var(--eco-border);
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 8px;
    transition: border-color .15s, background .15s;
    position: relative;
}
.ecla-choice-opt input[type="radio"] { display: none; }
.ecla-choice-opt:hover { border-color: #aaa; background: #fafafa; }
.ecla-choice-opt--selected { border-color: #DC0032; background: #fff5f6; }/* Opção Loja selecionada → verde */
#ecla-choice-loja.ecla-choice-opt--selected { border-color: var(--eco-green); background: var(--eco-green-light); }
#ecla-choice-loja.ecla-choice-opt--selected .ecla-choice-opt__icon { background: #d1fae5; color: var(--eco-green); }

.ecla-choice-opt__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f1f5f9;
    color: var(--eco-muted);
    flex-shrink: 0;
}
.ecla-choice-opt--selected .ecla-choice-opt__icon { background: #fce4e8; color: #DC0032; }
.ecla-choice-opt__icon--dpd { background: transparent; }

.ecla-choice-opt__info { flex: 1; }
.ecla-choice-opt__info strong { display: block; font-size: 13.5px; color: var(--eco-text); margin-bottom: 2px; }
.ecla-choice-opt__info span  { font-size: 12px; color: var(--eco-muted); }/* Sub-bloco DPD */
#ecla-dpd-block {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--eco-border);
}

.ecla-dpd-methods {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.ecla-dpd-methods .ecla-shipping-opt {
    flex: 1;
    min-width: 180px;
    padding: 12px 14px;
}/* ══════════════════════════════════════════════════════════════
   PUDO SELECTOR — pesquisa de Pickup Points
══════════════════════════════════════════════════════════════ */

.ecla-pudo-block {
    background: #f9fafb;
    border: 1px solid var(--eco-border);
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
}

.ecla-pudo-header { margin-bottom: 12px; }
.ecla-pudo-header strong { font-size: 13.5px; color: var(--eco-text); display: block; margin-bottom: 3px; }
.ecla-pudo-header p { font-size: 12px; color: var(--eco-muted); margin: 0; }

.ecla-pudo-search {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}
.ecla-pudo-search__input {
    flex: 1;
    max-width: 160px;
    padding: 8px 12px;
    border: 1px solid var(--eco-border);
    border-radius: 8px;
    font-size: 14px;
}
.ecla-pudo-search__input:focus { outline: none; border-color: #DC0032; box-shadow: 0 0 0 2px rgba(220,0,50,.1); }

.ecla-btn--outline {
    background: #fff;
    color: var(--eco-text);
    border: 1px solid var(--eco-border);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    font-weight: 500;
    transition: border-color .15s, background .15s;
}
.ecla-btn--outline:hover { border-color: #DC0032; color: #DC0032; }

.ecla-pudo-loading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--eco-muted);
    padding: 6px 0;
}

.ecla-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #e0e0e0;
    border-top-color: #DC0032;
    border-radius: 50%;
    animation: ecla-spin .7s linear infinite;
    flex-shrink: 0;
}
@keyframes ecla-spin { to { transform: rotate(360deg); } }

.ecla-pudo-message {
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12.5px;
    margin-bottom: 8px;
}
.ecla-pudo-message--error { background: #fff0f1; color: #c0392b; border: 1px solid #fccbcc; }
.ecla-pudo-message--info  { background: #f0f4ff; color: #2c5fa0; border: 1px solid #c5d5f8; }

.ecla-pudo-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.ecla-pudo-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border: 1.5px solid var(--eco-border);
    border-radius: 9px;
    background: #fff;
    cursor: pointer;
    transition: border-color .12s, background .12s;
}
.ecla-pudo-item:hover { border-color: #DC0032; background: #fff5f6; }
.ecla-pudo-item.is-selected { border-color: #DC0032; background: #fff0f2; }

.ecla-pudo-item__radio {
    width: 16px;
    height: 16px;
    border: 2px solid #8aa893;
    border-radius: 50%;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color .12s;
}
.ecla-pudo-item.is-selected .ecla-pudo-item__radio { border-color: #DC0032; }
.ecla-pudo-item__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #DC0032;
    opacity: 0;
    transition: opacity .12s;
}
.ecla-pudo-item.is-selected .ecla-pudo-item__dot { opacity: 1; }

.ecla-pudo-item__body { flex: 1; min-width: 0; }
.ecla-pudo-item__name { font-size: 13.5px; font-weight: 600; color: var(--eco-text); margin-bottom: 2px; }
.ecla-pudo-item__addr { font-size: 12px; color: var(--eco-muted); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ecla-pudo-item__meta { font-size: 11.5px; color: #6b8474; }
.ecla-pudo-item__dist { color: #64748b; }

.ecla-pudo-item__badge {
    font-size: 10px;
    font-weight: 700;
    color: #DC0032;
    background: #fce4e8;
    border-radius: 5px;
    padding: 2px 6px;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: flex-start;
}

.ecla-pudo-confirm {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 8px 12px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    font-size: 13px;
    color: #15803d;
}/* ══════════════════════════════════════════════════════
   CAMPO TELEMÓVEL DPD (ganhos + pagos)
══════════════════════════════════════════════════════ */

.ecla-dpd-mobile-wrapper {
    margin-top: 18px;
    margin-bottom: 4px;
}

.ecla-dpd-mobile-field {
    background: #fff8f0;
    border: 1.5px solid #f59e0b;
    border-radius: var(--eco-radius, 10px);
    padding: 14px 16px;
}

.ecla-dpd-mobile-field__label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--eco-navy, #1a3c2e);
    margin-bottom: 8px;
}

.ecla-dpd-mobile-field__label abbr {
    color: #dc0032;
    text-decoration: none;
    margin-left: 1px;
}

.ecla-dpd-mobile-field__input {
    display: block;
    width: 100%;
    padding: 10px 12px;
    font-size: 15px;
    border: 1.5px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    color: var(--eco-navy, #1a3c2e);
    transition: border-color .15s, box-shadow .15s;
    box-sizing: border-box;
    font-family: inherit;
}

.ecla-dpd-mobile-field__input:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245,158,11,.15);
}

.ecla-dpd-mobile-field__error {
    margin-top: 6px;
    font-size: 12.5px;
    color: #dc0032;
    font-weight: 500;
}/* ══════════════════════════════════════════════════════
   SECÇÕES OPCIONAIS: NIF / MORADA DE FATURAÇÃO
══════════════════════════════════════════════════════ */

.ecla-checkout-optional--ganhos {
    margin-top: 12px;
    margin-bottom: 12px;
}

.ecla-checkout-optional--ganhos .ecla-checkout-optional__toggle,
.ecla-checkout-optional__toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--eco-green, #2d7a4f);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .15s;
}

.ecla-checkout-optional--ganhos .ecla-checkout-optional__toggle:hover,
.ecla-checkout-optional__toggle:hover {
    color: var(--eco-green-dark, #1e5c3a);
}

.ecla-checkout-optional--ganhos .ecla-checkout-optional__body,
.ecla-checkout-optional__body {
    margin-top: 14px;
    padding: 16px;
    background: var(--eco-bg, #f8faf9);
    border: 1px solid var(--eco-border, #e2e8e4);
    border-radius: var(--eco-radius-sm, 8px);
}

.ecla-billing-alt-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 12px;
}

.ecla-billing-alt-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--eco-green, #2d7a4f);
    cursor: pointer;
}/* ══════════════════════════════════════════════════════
   MÉTODOS DE PAGAMENTO INLINE (step 3 / ecla-ganhos)
══════════════════════════════════════════════════════ */

.ecla-payment-methods {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 0 20px;
}

.ecla-payment-method {
    border: 1px solid var(--eco-border, #e2e8e4);
    border-radius: var(--eco-radius, 10px);
    background: var(--eco-surface, #fff);
    overflow: hidden;
    transition: border-color .15s;
}

.ecla-payment-method.is-selected {
    border-color: var(--eco-green, #1f4d33);
    box-shadow: 0 0 0 2px rgba(31,77,51,.08);
}

.ecla-payment-method__label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    cursor: pointer;
    user-select: none;
}

.ecla-payment-method__radio {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    accent-color: var(--eco-green, #1f4d33);
    cursor: pointer;
}

.ecla-payment-method__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--eco-text, #1a1a2e);
    flex: 1;
}

.ecla-payment-method__icon {
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: .85;
}

.ecla-payment-method__icon img {
    max-height: 22px;
    width: auto;
}

.ecla-payment-method__fields {
    padding: 0 16px 16px;
    border-top: 1px solid var(--eco-border, #e2e8e4);
    margin-top: 0;
    background: #f9fbf9;
}/* Campos internos do WooCommerce gateway */
.ecla-payment-method__fields p,
.ecla-payment-method__fields .form-row {
    margin-bottom: 10px;
}

.ecla-payment-method__fields label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--eco-text-muted, #555);
    margin-bottom: 5px;
}

.ecla-payment-method__fields input[type="text"],
.ecla-payment-method__fields input[type="tel"],
.ecla-payment-method__fields input[type="email"],
.ecla-payment-method__fields input[type="number"],
.ecla-payment-method__fields select {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--eco-border, #d1d5db);
    border-radius: 7px;
    font-size: 14px;
    color: var(--eco-text, #1a1a2e);
    background: #fff;
    box-sizing: border-box;
    transition: border-color .15s;
}

.ecla-payment-method__fields input:focus,
.ecla-payment-method__fields select:focus {
    outline: none;
    border-color: var(--eco-green, #1f4d33);
    box-shadow: 0 0 0 3px rgba(31,77,51,.08);
}

.ecla-payment-method__fields .woocommerce-input-wrapper {
    display: block;
}/* Ocultar descrição longa do gateway (evitar duplicação) */
.ecla-payment-method__fields .payment_method_description > p:first-child {
    display: none;
}/* ══════════════════════════════════════════════════════
   MÉTODOS DE PAGAMENTO ACEITES
══════════════════════════════════════════════════════ */

.ecla-checkout-payments--ganhos {
    background: var(--eco-surface, #fff);
    border: 1px solid var(--eco-border, #e2e8e4);
    border-radius: var(--eco-radius, 10px);
    padding: 12px 16px;
    margin-bottom: 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.ecla-checkout-payments--ganhos .ecla-checkout-payments__header {
    font-size: 11px;
    font-weight: 600;
    color: var(--eco-text-muted, #6b7280);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 10px;
}

.ecla-checkout-payments--ganhos .ecla-checkout-payments__icons {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    align-items: center;
}

.ecla-checkout-payments--ganhos .ecla-checkout-payments__icon {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1px solid var(--eco-border, #e2e8e4);
    border-radius: 6px;
    padding: 6px 11px;
    font-size: 12px;
    font-weight: 700;
    color: var(--eco-text-sub, #374151);
    white-space: nowrap;
}/* Responsivo */
@media (max-width: 600px) {
    .ecla-dpd-methods { flex-direction: column; }
    .ecla-shipping-choice { padding: 14px; }
    .ecla-pudo-search { flex-wrap: wrap; }
    .ecla-pudo-search__input { max-width: 100%; }}/* ── Banner informativo — ecla-pagos ─────────────────────────── */
.ecla-pagos-info-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: var(--eco-radius);
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: #1e40af;
    line-height: 1.4;
}
.ecla-pagos-info-banner svg {
    flex-shrink: 0;
    color: #3b82f6;
}

.ecla-ganhos-progress {
    background: var(--eco-card);
    border: 1px solid var(--eco-border);
    border-radius: var(--eco-radius);
    padding: 16px 20px;
    margin-bottom: 16px;
    box-shadow: var(--eco-shadow-sm);
}

.ecla-ganhos-progress__bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 420px;
    margin: 0 auto;
}

.ecla-ganhos-progress__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.ecla-ganhos-progress__dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--eco-bg);
    border: 2px solid var(--eco-border);
    color: var(--eco-muted);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s, color .2s;
    flex-shrink: 0;
}

.ecla-ganhos-progress__label {
    font-size: 11px;
    font-weight: 600;
    color: var(--eco-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition: color .2s;
}/* Feito */
.ecla-ganhos-progress__step--done .ecla-ganhos-progress__dot {
    background: var(--eco-green);
    border-color: var(--eco-green);
    color: #fff;
    font-size: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
}
.ecla-ganhos-progress__step--done .ecla-ganhos-progress__label { color: var(--eco-green); }/* Ativo */
.ecla-ganhos-progress__step--active .ecla-ganhos-progress__dot {
    background: var(--eco-navy);
    border-color: var(--eco-navy);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(26,26,46,0.12);
}
.ecla-ganhos-progress__step--active .ecla-ganhos-progress__label {
    color: var(--eco-navy);
    font-weight: 700;
}/* Linha de ligação */
.ecla-ganhos-progress__line {
    flex: 1;
    height: 2px;
    background: var(--eco-border);
    margin: 0 6px;
    margin-bottom: 17px;
    transition: background .3s;
    min-width: 24px;
}
.ecla-ganhos-progress__line--filled { background: var(--eco-green); }/* ══════════════════════════════════════════════════════════════
   GANHOS — PASSOS ACCORDION  (ecla-gstep)
   Mesmo estilo do eco-checkout-step do tema
══════════════════════════════════════════════════════════════ */

.ecla-gstep {
    background: var(--eco-card);
    border: 1.5px solid var(--eco-border);
    border-radius: var(--eco-radius);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}

.ecla-gstep.is-active {
    border-color: var(--eco-navy);
    box-shadow: 0 4px 20px rgba(26,26,46,0.10);
}

.ecla-gstep.is-done {
    border-color: var(--eco-border);
}/* Cabeçalho do passo */
.ecla-gstep__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
}

.ecla-gstep.is-active .ecla-gstep__head  { padding-bottom: 0; }
.ecla-gstep.is-done   .ecla-gstep__head  { padding-bottom: 12px; }

.ecla-gstep__num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--eco-border);
    color: var(--eco-muted);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, color .2s;
}

.ecla-gstep.is-active .ecla-gstep__num {
    background: var(--eco-navy);
    color: #fff;
}
.ecla-gstep.is-done .ecla-gstep__num {
    background: var(--eco-green);
    color: #fff;
    font-size: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
}

.ecla-gstep__title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--eco-muted) !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    flex: 1;
    line-height: 1.3 !important;
    transition: color .2s;
}
.ecla-gstep.is-active .ecla-gstep__title { color: var(--eco-navy) !important; }
.ecla-gstep.is-done   .ecla-gstep__title { color: var(--eco-text) !important; }

.ecla-gstep__edit-btn {
    font-size: 12px;
    font-weight: 600;
    color: var(--eco-green);
    background: none;
    border: 1px solid var(--eco-green);
    border-radius: 20px;
    padding: 4px 12px;
    cursor: pointer;
    font-family: var(--eco-font);
    transition: background .15s, color .15s;
    flex-shrink: 0;
}
.ecla-gstep__edit-btn:hover {
    background: var(--eco-green);
    color: #fff;
}/* Pill de resumo (mostrado após completar o passo) */
.ecla-gstep__done-pill {
    margin: 0 20px 14px;
    padding: 9px 14px;
    background: var(--eco-green-light);
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    font-size: 13px;
    color: #1a5c2c;
    font-weight: 500;
    line-height: 1.4;
}/* Corpo do passo */
.ecla-gstep__body {
    padding: 16px 20px 20px;
}/* Esconder corpo quando inativo */
.ecla-gstep:not(.is-active) .ecla-gstep__body {
    display: none;
}/* Passo ainda não atingido — opacidade reduzida, sem pointer events */
.ecla-gstep:not(.is-active):not(.is-done) .ecla-gstep__head {
    opacity: 0.5;
    pointer-events: none;
}/* Ações do passo (botão Continuar + subtotal) */
.ecla-gstep__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid var(--eco-border);
    margin-top: 18px;
    flex-wrap: wrap;
}

.ecla-gstep__subtotal {
    font-size: 15px;
    color: var(--eco-text);
    display: flex;
    align-items: center;
    gap: 8px;
}
.ecla-gstep__subtotal strong {
    font-size: 20px;
    font-weight: 900;
    color: var(--eco-green);
}/* Botão "Continuar" */
.ecla-btn--continue {
    background-color: var(--eco-navy);
    color: #fff;
    box-shadow: 0 6px 18px rgba(26,26,46,0.20);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--eco-font);
    transition: background .2s, transform .15s, box-shadow .2s;
}
.ecla-btn--continue:hover {
    background-color: #0d0d1f;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(26,26,46,0.28);
}
.ecla-btn--continue:active { transform: translateY(0); }/* ══════════════════════════════════════════════════════════════
   GANHOS — RESUMO DO PAGAMENTO (Passo 3)
══════════════════════════════════════════════════════════════ */

.ecla-payment-summary {
    margin-bottom: 18px;
}

.ecla-pay-summary-list {
    list-style: none;
    margin: 0 0 4px;
    padding: 0;
    border: 1px solid var(--eco-border);
    border-radius: 10px;
    overflow: hidden;
}

.ecla-pay-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    font-size: 13px;
    border-bottom: 1px solid var(--eco-border);
    background: var(--eco-card);
}
.ecla-pay-summary-row:last-child { border-bottom: none; }

.ecla-pay-summary-row__name {
    color: var(--eco-text);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 65%;
}

.ecla-pay-summary-row__price {
    font-weight: 700;
    color: var(--eco-navy);
    white-space: nowrap;
}

.ecla-pay-summary-row--ship {
    background: var(--eco-green-light);
}
.ecla-pay-summary-row--ship .ecla-pay-summary-row__name { color: var(--eco-green-dark); }
.ecla-pay-summary-row--ship .ecla-pay-summary-row__price { color: var(--eco-green-dark); }/* ══════════════════════════════════════════════════════════════
   RESPONSIVO — ganhos steps
══════════════════════════════════════════════════════════════ */

@media (max-width: 600px) {
    .ecla-gstep__head    { padding: 14px 16px; }
    .ecla-gstep.is-active .ecla-gstep__head { padding-bottom: 0; }
    .ecla-gstep.is-done   .ecla-gstep__head { padding-bottom: 10px; }
    .ecla-gstep__body    { padding: 14px 16px 18px; }
    .ecla-gstep__done-pill { margin: 0 16px 12px; }
    .ecla-gstep__actions { flex-direction: column; align-items: stretch; }
    .ecla-gstep__subtotal { justify-content: space-between; }
    .ecla-btn--continue  { width: 100%; justify-content: center; }
    .ecla-ganhos-progress { padding: 12px 16px; }
    .ecla-ganhos-progress__label { font-size: 10px; }}/* Win card — versão compacta em telemóveis muito estreitos */
@media (max-width: 380px) {
    .ecla-win-card           { gap: 8px; padding: 10px 12px; }
    .ecla-win-card__img      { width: 52px; height: 70px; flex-shrink: 0; }
    .ecla-win-card__price    { font-size: 17px; }
    .ecla-win-card__trophy   { display: none; }/* Progress bar — dots ligeiramente mais pequenos */
    .ecla-ganhos-progress__dot   { width: 26px; height: 26px; font-size: 11px; }
    .ecla-ganhos-progress__line  { min-width: 14px; margin: 0 4px 17px; }
    .ecla-ganhos-progress__label { font-size: 9px; letter-spacing: 0; }/* Botão de completar pagamento — full width */
    .ecla-btn--complete-pay  { display: block; width: 100%; text-align: center; box-sizing: border-box; }}/* ══════════════════════════════════════════════════════════════
   RESPONSIVO — ganhos / pagos — mobile ≤ 600px
══════════════════════════════════════════════════════════════ */

@media (max-width: 600px) {/* ── Win card — layout e tipografia ──────────────────────── */
    .ecla-win-card {
        gap: 10px;
        padding: 12px 14px;
    }

    .ecla-win-card__img {
        width: 56px;
        height: 76px;
        flex-shrink: 0;
    }/* Permitir quebra de linha no título (2 linhas máx.) */
    .ecla-win-card__title {
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .ecla-win-card__price { font-size: 18px; }/* Troféu escondido a partir de 600px */
    .ecla-win-card__trophy { display: none; }/* ── Cabeçalho da secção ──────────────────────────────────── */
    .ecla-wins-header h2 { font-size: 18px; }

    .ecla-wins-total strong { font-size: 18px; }/* ── Countdown / LCD ─────────────────────────────────────── */
    .ecla-deadline-lcd { font-size: 14px; }/* ── Grid de ganhos enviados ─────────────────────────────── */
    .ecla-wins-grid--shipped {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }/* ── Cabeçalho do grupo de leilão ────────────────────────── */
    .ecla-auction-group__header {
        flex-wrap: wrap;
        min-width: 0;
    }
    .ecla-auction-group__header > * { min-width: 0; }/* ── Banner de info (ecla-pagos) ─────────────────────────── */
    .ecla-pagos-info-banner {
        padding: 12px 14px;
        font-size: 13px;
    }/* ── Opções de envio / recolha ───────────────────────────── */
    .ecla-shipping-choice {
        padding: 14px 14px;
        gap: 10px;
    }

    .ecla-choice-opt {
        padding: 12px 12px;
    }

    .ecla-ship-section {
        padding: 14px 14px;
    }/* ── PUDO block ───────────────────────────────────────────── */
    .ecla-pudo-block {
        padding: 14px 14px;
    }/* ── Pagamento diferido ───────────────────────────────────── */
    .ecla-pay-later {
        padding: 14px 14px;
    }}