/* =============================================================
 * TCE Promo — pages.css
 * Wave 4 (2026-05-18) · Pagini interioare campanie Grecia 2026
 *
 * Conține:
 *   §1. Design tokens (--w1-*)              — sincronizate cu landing.css
 *   §2. Resets / skip-link / a11y
 *   §3. Theme overrides (.tce-promo-page)
 *   §4. Chrome — topbar W1, nav W1, footer W3
 *   §5. Reusable components — page-head, container, card,
 *       button, alert, accordion, table, badges
 *   §6. Specificity-safe centering (vs. style.css *{margin:0})
 *
 * Per-page sections (§10+) sunt adăugate progresiv pe waves.
 * ============================================================= */


/* =============================================================
 * §1. DESIGN TOKENS — sync cu landing.css §14
 * ============================================================= */
:root {
    --w1-navy:        #1c2940;
    --w1-navy-2:      #243353;
    --w1-navy-deep:   #12192c;
    --w1-ink:         #0c1424;
    --w1-ink-2:       #3a4762;
    --w1-ink-3:       #6e7892;
    --w1-ink-4:       #a0a8bd;
    --w1-paper:       #ffffff;
    --w1-paper-2:     #f7f5ef;
    --w1-paper-3:     #efece3;
    --w1-cream:       #fbf8f1;
    --w1-accent:      #e85a4f;
    --w1-accent-2:    #cd4036;
    --w1-accent-soft: #ffd6cf;
    --w1-accent-tint: #fff1ee;
    --w1-gold:        #d4a85b;
    --w1-ok:          #3e7a5c;
    --w1-ok-tint:     #ebf3ee;
    --w1-warn:        #b97400;
    --w1-warn-tint:   #fff4d6;
    --w1-err:         #b8362e;
    --w1-err-tint:    #fde7e4;
    --w1-border:      #e6e3da;
    --w1-border-2:    #d9d4c6;
    --w1-shadow-sm:   0 1px 2px rgba(12,20,36,.04);
    --w1-shadow:      0 1px 2px rgba(12,20,36,.04), 0 4px 12px rgba(12,20,36,.06);
    --w1-shadow-lg:   0 24px 60px -24px rgba(12,20,36,.25);
    --w1-radius:      14px;
    --w1-radius-lg:   18px;
    --w1-radius-sm:   10px;
    --w1-sans:        'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --w1-display:     'DM Serif Display', Georgia, serif;
    --w1-mono:        ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
}

@keyframes tce-w1-pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: .35; }
}


/* =============================================================
 * §2. RESETS / SKIP LINK / A11Y
 * ============================================================= */

.tce-skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--w1-accent);
    color: #fff;
    padding: 12px 18px;
    font-family: var(--w1-sans);
    font-weight: 600;
    z-index: 9999;
    border-radius: 0 0 8px 0;
}
.tce-skip-link:focus,
.tce-skip-link:focus-visible {
    /* `!important` necesar pentru a învinge `theme-override.css`
     * `body.tce-fullwidth .tce-skip-link:not(:focus) { left/top !important }` —
     * pe focus state, :not(:focus) nu matchează, dar specificity-ul rămâne
     * higher pe alte rules → !important garantează vizibilitate (WCAG 2.4.1). */
    left: 0 !important;
    top: 0 !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    clip: auto !important;
    outline: 3px solid #fff;
    outline-offset: -4px;
    box-shadow: 0 6px 20px -4px rgba(0,0,0,.4);
}


/* =============================================================
 * §3. THEME OVERRIDES — ascunde header WP, full-bleed body
 * ============================================================= */

body.tce-promo-page {
    background: var(--w1-paper);
    color: var(--w1-ink);
    font-family: var(--w1-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ascunde site-header al temei (deja făcut și de landing.css §14.X.2) */
body.tce-promo-page .wp-block-template-part[data-type="wp_template_part"]:first-of-type,
body.tce-promo-page > header.wp-block-template-part,
body.tce-promo-page > .wp-site-blocks > header,
body.tce-promo-page > .wp-site-blocks > .wp-block-template-part,
body.tce-promo-page .tce-site-header,
body.tce-promo-page .tce-header-separator {
    display: none !important;
}

/* Ascunde footer-ul vechi `.tce-footer` rămas în templates care încă NU au fost
   migrate la W3 footer-ul nou (defensive — vor fi convertite în waves). */
body.tce-promo-page > .wp-site-blocks > footer.wp-block-template-part {
    display: none !important;
}

/* Re-show pentru `<header>`-urile noastre semantice (page-head, section-head).
   theme-override.css ascunde global cu `body.tce-fullwidth header:not(.A):not(.B):not(.C):not(.D)`
   (specificitate 0,5,2). Folosim aceeași tehnică `:not()` chain pentru a egala
   specificitatea — pages.css încarcă DUPĂ theme-override, deci `!important`
   echivalent câștigă pe source order. */
body.tce-fullwidth header.tce-pg-head:not(.tce-header):not(.tce-results-hero):not(.tce-audit-hero),
body.tce-fullwidth header.tce-pg-section__head:not(.tce-header):not(.tce-results-hero):not(.tce-audit-hero) {
    display: block !important;
}

.tce-pg-shell {
    /* 2026-05-20: era `var(--w1-paper)` (cream) care crea o „dungă albă" sub admin bar.
       Setat la inherit pentru a moșteni body bg (cream uniform). */
    background: transparent;
}

/* GLOBAL: ascunde breadcrumbs + eyebrow pe TOATE paginile interioare TCE.
   Decizie user 2026-05-20 — pentru consistență cu /activare-magazin/.
   Dacă vrei să reactivezi punctual, adăugă body.show-breadcrumb. */
.tce-pg-head__crumb,
.tce-pg-head__eyebrow:not(.keep-eyebrow) {
    display: none !important;
}

/* GLOBAL: ultima secțiune înainte de footer fără padding-bottom — elimină dunga albă jos */
.tce-pg-section:last-of-type,
.tce-pg-cas__page-foot,
.tce-pg-legal__main > *:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 24px !important;
}
main.tce-pg-status__main,
main.tce-pg-legal__main,
main.tce-pg-cas__main {
    padding-bottom: 0 !important;
}


/* =============================================================
 * §4. CHROME — TOPBAR W1 + NAV W1 + FOOTER W3
 *      (clone 1:1 după landing.css §14.1, §14.X.3, §16.6)
 * ============================================================= */

/* ---- §4.1 Topbar ---- */
.tce-topbar-w1 {
    background: var(--w1-navy-deep);
    color: #fff;
    font-family: var(--w1-sans);
    font-size: 12.5px;
    font-weight: 500;
    padding: 9px 0;
    text-align: center;
}
.tce-topbar-w1__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.tce-topbar-w1__dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--w1-accent);
    border-radius: 50%;
    animation: tce-w1-pulse 1.8s infinite;
    margin-right: 10px;
    vertical-align: 2px;
}
.tce-topbar-w1 a {
    margin-left: 16px;
    color: rgba(255,255,255,.85);
    border-bottom: 1px solid rgba(255,255,255,.3);
    padding-bottom: 1px;
    text-decoration: none;
    transition: color .2s, border-color .2s;
}
.tce-topbar-w1 a:hover,
.tce-topbar-w1 a:focus-visible {
    color: #fff;
    border-color: #fff;
    outline: none;
}

/* ---- §4.2 Nav sticky ---- */
.tce-nav-w1 {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(28,41,64,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: #fff;
    font-family: var(--w1-sans);
}
.tce-nav-w1__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.tce-nav-w1__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    flex-shrink: 0;
}
.tce-nav-w1__brand img {
    height: 38px;
    width: auto;
    display: block;
}
.tce-nav-w1__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.tce-nav-w1__brand-name {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.005em;
    color: #fff;
}
.tce-nav-w1__brand-sub {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,.65);
    letter-spacing: .02em;
}
.tce-nav-w1__links {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: center;
}
.tce-nav-w1__links a {
    position: relative;
    color: rgba(255,255,255,.82);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    padding: 4px 0;
    transition: color .2s;
}
.tce-nav-w1__links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--w1-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.tce-nav-w1__links a:hover,
.tce-nav-w1__links a:focus-visible {
    color: #fff;
    outline: none;
}
.tce-nav-w1__links a:hover::after,
.tce-nav-w1__links a:focus-visible::after {
    transform: scaleX(1);
}
.tce-nav-w1__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.tce-nav-w1__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: var(--w1-accent);
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .2s;
}
.tce-nav-w1__cta:hover,
.tce-nav-w1__cta:focus-visible {
    background: var(--w1-accent-2);
    color: #fff;
    transform: translateY(-1px);
    outline: none;
}
/* ---- §4.2.bis Burger menu (audit fix 2026-05-18) ---- */
.tce-nav-w1__burger {
    display: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    transition: background .2s, border-color .2s;
}
.tce-nav-w1__burger:hover,
.tce-nav-w1__burger:focus-visible {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.32);
    outline: none;
}
.tce-nav-w1__burger-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s, opacity .2s;
}
.tce-nav-w1__burger[aria-expanded="true"] .tce-nav-w1__burger-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.tce-nav-w1__burger[aria-expanded="true"] .tce-nav-w1__burger-bar:nth-child(2) {
    opacity: 0;
}
.tce-nav-w1__burger[aria-expanded="true"] .tce-nav-w1__burger-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.tce-nav-w1__links-cta { display: none; }

@media (max-width: 900px) {
    .tce-nav-w1__inner { padding: 12px 16px; }
    .tce-nav-w1__brand-sub { display: none; }
    .tce-nav-w1__actions { display: none; }
    .tce-nav-w1__burger  { display: inline-flex; }

    /* Drop-down menu pe mobile */
    .tce-nav-w1__links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(28,41,64,0.98);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        flex-direction: column;
        gap: 0;
        justify-content: flex-start;
        padding: 18px 20px 22px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height .3s ease, opacity .25s ease, visibility 0s linear .3s;
        box-shadow: 0 18px 30px -16px rgba(0,0,0,.45);
    }
    .tce-nav-w1__links.is-open {
        max-height: 480px;
        opacity: 1;
        visibility: visible;
        transition: max-height .35s ease, opacity .25s ease, visibility 0s linear 0s;
    }
    .tce-nav-w1__links a {
        display: block;
        padding: 14px 4px;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,.06);
        width: 100%;
    }
    .tce-nav-w1__links a:last-child { border-bottom: none; }
    .tce-nav-w1__links a::after { display: none; } /* underline animation off pe mobile */

    .tce-nav-w1__links-cta {
        display: inline-flex !important;
        align-items: center;
        gap: 6px;
        margin-top: 12px;
        padding: 14px 22px !important;
        background: var(--w1-accent);
        color: #fff !important;
        border-radius: 10px;
        font-weight: 600;
        text-align: center;
        justify-content: center;
        border-bottom: none !important;
    }
    .tce-nav-w1__links-cta:hover,
    .tce-nav-w1__links-cta:focus-visible {
        background: var(--w1-accent-2);
    }

    /* Lock scroll când meniul e deschis */
    body.tce-nav-open { overflow: hidden; }
}

/* ---- §4.3 Footer W3 ---- */
.tce-w3-footer {
    background: var(--w1-navy-deep);
    color: var(--w1-ink-4);
    font-family: var(--w1-sans);
    padding: 64px 0 48px;
    margin-top: 96px;
}
.tce-w3-footer * { box-sizing: border-box; }
.tce-w3-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.tce-w3-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.tce-w3-footer__col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tce-w3-footer__col--brand { gap: 14px; }
.tce-w3-footer__brand {
    text-decoration: none;
    color: #fff;
    display: inline-block;
}
.tce-w3-footer__brand-name {
    font-family: var(--w1-sans);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -.01em;
    color: #fff;
}
.tce-w3-footer__brand-name em {
    font-family: var(--w1-display);
    font-style: italic;
    font-weight: 400;
    color: var(--w1-accent-soft);
}
.tce-w3-footer__tag {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -.01em;
}
.tce-w3-footer__desc {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--w1-ink-4);
}
.tce-w3-footer__heading {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
}
.tce-w3-footer__col a {
    color: var(--w1-ink-4);
    text-decoration: none;
    font-size: 14px;
    padding: 4px 0;
    transition: color .2s, padding-left .2s;
    display: inline-block;
}
.tce-w3-footer__col a:hover,
.tce-w3-footer__col a:focus-visible {
    color: var(--w1-accent-soft);
    padding-left: 4px;
}
.tce-w3-footer__col a:focus-visible {
    outline: 2px solid var(--w1-accent);
    outline-offset: 2px;
    border-radius: 4px;
}
.tce-w3-footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
    font-size: 12px;
    color: var(--w1-ink-4);
}
.tce-w3-footer__legal p { margin: 0; }
.tce-w3-footer__copy { font-weight: 500; }
.tce-w3-footer__anspdcp {
    flex: 1 1 auto;
    text-align: center;
    min-width: 220px;
}
.tce-w3-footer__tagline a {
    color: var(--w1-accent-soft);
    text-decoration: none;
    transition: color .2s;
}
.tce-w3-footer__tagline a:hover,
.tce-w3-footer__tagline a:focus-visible {
    color: #fff;
    text-decoration: underline;
}
@media (max-width: 960px) {
    .tce-w3-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .tce-w3-footer__col--brand {
        grid-column: 1 / -1;
    }
}
@media (max-width: 600px) {
    .tce-w3-footer__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .tce-w3-footer__legal {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .tce-w3-footer__anspdcp {
        text-align: left;
        min-width: 0;
    }
}


/* =============================================================
 * §5. REUSABLE COMPONENTS — folosite în toate paginile interioare
 * ============================================================= */

/* ---- §5.1 Page wrapper + container ---- */
.tce-pg {
    /* 2026-05-20: era `var(--w1-paper)` (alb) — crea dunga albă sus și jos
       care răzbătea peste fundalul cream al body-ului. Setat transparent. */
    background: transparent;
    color: var(--w1-ink);
    font-family: var(--w1-sans);
    line-height: 1.55;
    font-size: 15px;
    padding: 0 !important;
    margin: 0 !important;
}
.tce-pg-container {
    /* 2026-05-20: extins de la 1200px → 1480px ca pagina să arate full-width
       similar cu landing (anterior containerul era prea îngust și pagina
       părea „încadrată" pe ecrane mari). */
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 24px;
}
.tce-pg-container--narrow {
    max-width: 880px;
}
.tce-pg-container--wide {
    max-width: 1600px;
}

/* ---- §5.2 Page head — eyebrow + H1 + lede ---- */
.tce-pg-head {
    padding: 72px 0 48px;
    border-bottom: 1px solid var(--w1-border);
    margin-bottom: 56px;
}
.tce-pg-head__crumb {
    font-family: var(--w1-sans);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--w1-ink-3);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tce-pg-head__crumb a {
    color: var(--w1-ink-3);
    text-decoration: none;
    transition: color .2s;
}
.tce-pg-head__crumb a:hover,
.tce-pg-head__crumb a:focus-visible {
    color: var(--w1-accent);
    outline: none;
}
.tce-pg-head__crumb-sep {
    color: var(--w1-ink-4);
}
.tce-pg-head__crumb-here {
    color: var(--w1-accent);
}
.tce-pg-head__eyebrow {
    font-family: var(--w1-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--w1-accent);
    margin: 0 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.tce-pg-head__eyebrow::before {
    content: "";
    width: 22px;
    height: 1.5px;
    background: var(--w1-accent);
}
.tce-pg-head__title {
    margin: 0 0 18px;
    font-family: var(--w1-sans);
    font-size: clamp(36px, 5.4vw, 64px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -.025em;
    color: var(--w1-ink);
    text-wrap: balance;
}
.tce-pg-head__title em {
    font-family: var(--w1-display);
    font-style: italic;
    font-weight: 400;
    color: var(--w1-accent);
}
.tce-pg-head__lede {
    margin: 0;
    font-size: 17px;
    line-height: 1.55;
    color: var(--w1-ink-2);
    max-width: 720px;
}
.tce-pg-head__meta {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    font-size: 13px;
    color: var(--w1-ink-3);
}
.tce-pg-head__meta span strong {
    color: var(--w1-ink);
    font-weight: 600;
}

@media (max-width: 720px) {
    .tce-pg-head { padding: 48px 0 36px; margin-bottom: 36px; }
}

/* ---- §5.3 Sections ---- */
.tce-pg-section {
    padding: 0 0 64px;
}
.tce-pg-section + .tce-pg-section {
    padding-top: 16px;
}
.tce-pg-section__head {
    margin: 0 0 32px;
}
.tce-pg-section__eyebrow {
    font-family: var(--w1-sans);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--w1-accent);
    margin: 0 0 10px;
}
.tce-pg-section__title {
    margin: 0 0 8px;
    font-family: var(--w1-sans);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -.015em;
    color: var(--w1-ink);
    text-wrap: balance;
}
.tce-pg-section__lede {
    margin: 0;
    color: var(--w1-ink-2);
    font-size: 15.5px;
    line-height: 1.6;
    max-width: 680px;
}

/* ---- §5.4 Cards ---- */
.tce-pg-card {
    background: #fff;
    border: 1px solid var(--w1-border);
    border-radius: var(--w1-radius);
    padding: 28px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.tce-pg-card--hover:hover {
    transform: translateY(-3px);
    box-shadow: var(--w1-shadow-lg);
    border-color: transparent;
}
.tce-pg-card--dark {
    background: var(--w1-navy);
    color: #fff;
    border: none;
}
.tce-pg-card--dark .tce-pg-card__title { color: #fff; }
.tce-pg-card--dark .tce-pg-card__meta  { color: rgba(255,255,255,.7); }
.tce-pg-card--soft {
    background: var(--w1-cream);
    border-color: var(--w1-border-2);
}
.tce-pg-card__title {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.01em;
    color: var(--w1-ink);
}
.tce-pg-card__lede {
    margin: 0;
    color: var(--w1-ink-2);
    font-size: 14.5px;
    line-height: 1.55;
}

/* ---- §5.5 Buttons ---- */
.tce-pg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-family: var(--w1-sans);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .005em;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: var(--w1-radius-sm);
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s, box-shadow .2s, transform .2s;
    -webkit-appearance: none;
    appearance: none;
}
.tce-pg-btn--primary {
    background: var(--w1-accent);
    color: #fff;
    box-shadow: 0 10px 22px -10px rgba(232,90,79,.55);
}
.tce-pg-btn--primary:hover,
.tce-pg-btn--primary:focus-visible {
    background: var(--w1-accent-2);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 16px 30px -10px rgba(232,90,79,.6);
    outline: none;
}
.tce-pg-btn--dark {
    background: var(--w1-navy);
    color: #fff;
}
.tce-pg-btn--dark:hover,
.tce-pg-btn--dark:focus-visible {
    background: var(--w1-navy-deep);
    color: #fff;
    outline: none;
}
.tce-pg-btn--ghost {
    background: transparent;
    color: var(--w1-ink);
    border-color: var(--w1-border-2);
}
.tce-pg-btn--ghost:hover,
.tce-pg-btn--ghost:focus-visible {
    background: var(--w1-paper-2);
    border-color: var(--w1-ink);
    outline: none;
}
.tce-pg-btn--lg {
    padding: 16px 28px;
    font-size: 15px;
    border-radius: 12px;
}
.tce-pg-btn--sm {
    padding: 8px 14px;
    font-size: 13px;
}
.tce-pg-btn[disabled],
.tce-pg-btn--disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* ---- §5.6 Alerts ---- */
.tce-pg-alert {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    border: 1px solid var(--w1-border);
    border-radius: var(--w1-radius);
    background: var(--w1-paper-2);
    color: var(--w1-ink-2);
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0 0 20px;
}
.tce-pg-alert__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    margin-top: 1px;
}
.tce-pg-alert__icon svg {
    width: 22px;
    height: 22px;
}
.tce-pg-alert__body { flex: 1; }
.tce-pg-alert__title {
    display: block;
    font-weight: 700;
    color: var(--w1-ink);
    margin-bottom: 4px;
    font-size: 14.5px;
}
.tce-pg-alert--ok {
    background: var(--w1-ok-tint);
    border-color: #c0d8c4;
    color: #2c5a44;
}
.tce-pg-alert--ok .tce-pg-alert__title { color: var(--w1-ok); }
.tce-pg-alert--warn {
    background: var(--w1-warn-tint);
    border-color: #ead2a3;
    color: #6b4a05;
}
.tce-pg-alert--warn .tce-pg-alert__title { color: var(--w1-warn); }
.tce-pg-alert--err {
    background: var(--w1-err-tint);
    border-color: #f0bdb6;
    color: #7a201b;
}
.tce-pg-alert--err .tce-pg-alert__title { color: var(--w1-err); }
.tce-pg-alert--info {
    background: var(--w1-accent-tint);
    border-color: #f7c4b9;
    color: #7a2922;
}
.tce-pg-alert--info .tce-pg-alert__title { color: var(--w1-accent); }

/* ---- §5.7 Badges / chips ---- */
.tce-pg-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1;
    background: var(--w1-paper-2);
    color: var(--w1-ink-2);
    border: 1px solid var(--w1-border);
}
.tce-pg-badge--accent { background: var(--w1-accent-tint); color: var(--w1-accent); border-color: #f7c4b9; }
.tce-pg-badge--ok     { background: var(--w1-ok-tint);     color: var(--w1-ok);     border-color: #c0d8c4; }
.tce-pg-badge--warn   { background: var(--w1-warn-tint);   color: var(--w1-warn);   border-color: #ead2a3; }
.tce-pg-badge--err    { background: var(--w1-err-tint);    color: var(--w1-err);    border-color: #f0bdb6; }
.tce-pg-badge--dark   { background: var(--w1-navy);        color: #fff;             border-color: var(--w1-navy); }
.tce-pg-badge__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

/* ---- §5.8 Accordion (FAQ-style, used in legal/regulament) ---- */
.tce-pg-acc {
    border: 1px solid var(--w1-border);
    border-radius: var(--w1-radius);
    background: #fff;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}
.tce-pg-acc[open] {
    border-color: var(--w1-accent);
    box-shadow: var(--w1-shadow);
}
.tce-pg-acc__summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15.5px;
    color: var(--w1-ink);
    list-style: none;
}
.tce-pg-acc__summary::-webkit-details-marker { display: none; }
.tce-pg-acc__summary::after {
    content: "+";
    margin-left: auto;
    font-size: 22px;
    font-weight: 300;
    color: var(--w1-accent);
    transition: transform .25s;
}
.tce-pg-acc[open] .tce-pg-acc__summary::after {
    transform: rotate(45deg);
}
.tce-pg-acc__summary:hover,
.tce-pg-acc__summary:focus-visible {
    background: var(--w1-cream);
    outline: none;
}
.tce-pg-acc__body {
    padding: 0 22px 22px;
    color: var(--w1-ink-2);
    font-size: 14.5px;
    line-height: 1.65;
}
.tce-pg-acc__body p { margin: 0 0 12px; }
.tce-pg-acc__body p:last-child { margin-bottom: 0; }
.tce-pg-acc__body ul, .tce-pg-acc__body ol {
    margin: 0 0 12px;
    padding-left: 22px;
}
.tce-pg-acc__body li { margin-bottom: 4px; }

/* ---- §5.9 Tables (data tables) ---- */
.tce-pg-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--w1-border);
    border-radius: var(--w1-radius);
    background: #fff;
    margin-bottom: 24px;
}
.tce-pg-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    color: var(--w1-ink);
}
.tce-pg-table th {
    text-align: left;
    padding: 14px 18px;
    background: var(--w1-paper-2);
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--w1-ink-2);
    border-bottom: 1px solid var(--w1-border);
}
.tce-pg-table td {
    padding: 14px 18px;
    border-bottom: 1px solid var(--w1-border);
    vertical-align: middle;
}
.tce-pg-table tr:last-child td { border-bottom: none; }
.tce-pg-table tr:hover td { background: var(--w1-cream); }
.tce-pg-table--dark th {
    background: var(--w1-navy);
    color: #fff;
    border-bottom-color: var(--w1-navy-2);
}

/* ---- §5.10 Code / hash blocks ---- */
.tce-pg-mono {
    font-family: var(--w1-mono);
    font-size: 13px;
    color: var(--w1-ink-2);
    background: var(--w1-paper-2);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid var(--w1-border);
    word-break: break-all;
}
.tce-pg-mono--block {
    display: block;
    padding: 14px 18px;
    margin: 0 0 16px;
    font-size: 12.5px;
    line-height: 1.5;
}

/* ---- §5.11 Helpers ---- */
.tce-pg-eyebrow {
    font-family: var(--w1-sans);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--w1-accent);
}
.tce-pg-divider {
    height: 1px;
    background: var(--w1-border);
    border: none;
    margin: 48px 0;
}
.tce-pg-text-muted { color: var(--w1-ink-3); }
.tce-pg-text-strong { font-weight: 700; color: var(--w1-ink); }


/* =============================================================
 * §6. SPECIFICITY-SAFE CENTERING
 *     style.css (parent theme) face `*{margin:0}` pe .wp-block-post-content
 *     → orice container `__inner` la max-width are nevoie de margin auto
 *     forțat. Duplicat selectorii pentru compatibilitate cu chrome partials.
 * ============================================================= */
.wp-block-post-content .tce-topbar-w1__inner,
.wp-block-post-content .tce-nav-w1__inner,
.wp-block-post-content .tce-w3-footer__inner,
.wp-block-post-content .tce-pg-container,
.wp-block-post-content .tce-pg-status__kpi,
.wp-block-post-content .tce-pg-status__rules,
.wp-block-post-content .tce-pg-status__tips-list,
.wp-block-post-content .tce-pg-status__codes,
.wp-block-post-content .tce-pg-status__legal-grid,
body .tce-topbar-w1__inner,
body .tce-nav-w1__inner,
body .tce-w3-footer__inner,
body .tce-pg-container {
    margin-left: auto !important;
    margin-right: auto !important;
}


/* =============================================================
 * §10. STATUS PAGE — /statusul-meu
 *     Guest (magic-link auth) + Authenticated (dashboard)
 * ============================================================= */

/* ---- §10.1 Guest auth card ---- */
.tce-pg-status__guest-main {
    padding: 0 0 96px;
}
.tce-pg-status__auth {
    margin-top: -16px;
    padding-bottom: 16px;
}
.tce-pg-status__auth-card {
    /* 2026-05-20: extins de la 520 → 680px ca formularul să arate mai aerat și centrat */
    max-width: 680px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--w1-border);
    border-radius: var(--w1-radius-lg);
    padding: 48px 44px;
    box-shadow: var(--w1-shadow);
    text-align: center;
}
.tce-pg-status__auth-ico {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    background: var(--w1-accent-tint);
    color: var(--w1-accent);
    border-radius: 50%;
}
.tce-pg-status__auth-title {
    margin: 0 0 10px;
    font-family: var(--w1-sans);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.015em;
    color: var(--w1-ink);
}
.tce-pg-status__auth-desc {
    /* 2026-05-20: scos max-width 380px care făcea descrierea îngustă în card 680px */
    margin: 0 auto 28px;
    color: var(--w1-ink-2);
    font-size: 14.5px;
    line-height: 1.55;
    max-width: 520px;
}
.tce-pg-status__auth-form {
    /* 2026-05-20: scos max-width 380px → formularul ocupă acum lățimea cardului 680 */
    text-align: left;
    margin: 0 auto 18px;
    max-width: 100%;
}
.tce-pg-status__field {
    margin-bottom: 16px;
}
.tce-pg-status__label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--w1-ink);
    letter-spacing: -.005em;
}
.tce-pg-status__input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--w1-border);
    border-radius: 10px;
    font-family: var(--w1-sans);
    font-size: 14.5px;
    color: var(--w1-ink);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}
.tce-pg-status__input:focus {
    outline: none;
    border-color: var(--w1-accent);
    box-shadow: 0 0 0 4px var(--w1-accent-tint);
}
.tce-pg-status__input::placeholder {
    color: var(--w1-ink-4);
}
.tce-pg-status__auth-submit {
    width: 100%;
    margin-top: 4px;
}
.tce-pg-status__auth-alt {
    margin: 0;
    font-size: 13.5px;
    color: var(--w1-ink-3);
}
.tce-pg-status__auth-alt a {
    color: var(--w1-accent);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--w1-accent);
    padding-bottom: 1px;
}
.tce-pg-status__auth-alt a:hover,
.tce-pg-status__auth-alt a:focus-visible {
    color: var(--w1-accent-2);
    border-color: var(--w1-accent-2);
    outline: none;
}

/* ---- §10.2 Authenticated — main wrapper ---- */
.tce-pg-status__main {
    padding: 0 0 96px;
}

/* ---- §10.3 Hero — avatar + welcome row + progress ---- */
.tce-pg-status__hero { padding-bottom: 36px; }
.tce-pg-status__hero-row {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 14px;
}
.tce-pg-status__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--w1-accent) 0%, var(--w1-accent-2) 100%);
    color: #fff;
    font-family: var(--w1-sans);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -.02em;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 26px -8px rgba(232,90,79,.45);
    flex-shrink: 0;
}
.tce-pg-status__hero-body { min-width: 0; }
.tce-pg-status__hero-body .tce-pg-head__title {
    margin-bottom: 8px;
    font-size: clamp(28px, 4.4vw, 52px);
}
.tce-pg-status__hero-body .tce-pg-head__lede {
    font-size: 15.5px;
    margin: 4px 0 0;
}

.tce-pg-status__progress {
    margin: 28px 0 0;
}
.tce-pg-status__progress-track {
    width: 100%;
    height: 8px;
    background: var(--w1-paper-2);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 10px;
}
.tce-pg-status__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--w1-accent), var(--w1-accent-2));
    border-radius: 999px;
    transition: width .6s cubic-bezier(.2,.7,.2,1);
}
.tce-pg-status__progress-label {
    margin: 0;
    font-size: 13px;
    color: var(--w1-ink-3);
}

@media (max-width: 600px) {
    .tce-pg-status__hero-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .tce-pg-status__avatar { width: 56px; height: 56px; font-size: 22px; }
}

/* ---- §10.4 KPI cards ---- */
.tce-pg-status__kpi-section { padding-bottom: 48px; }
.tce-pg-status__kpi {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.tce-pg-status__kpi-card {
    background: #fff;
    border: 1px solid var(--w1-border);
    border-radius: var(--w1-radius);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.tce-pg-status__kpi-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--w1-shadow);
    border-color: var(--w1-border-2);
}
.tce-pg-status__kpi-card--total {
    background: var(--w1-navy);
    border-color: var(--w1-navy);
    color: #fff;
}
.tce-pg-status__kpi-card--total:hover {
    background: var(--w1-navy-2);
    border-color: var(--w1-navy-2);
}
.tce-pg-status__kpi-card--gs {
    background: var(--w1-accent-tint);
    border-color: #f7c4b9;
}
.tce-pg-status__kpi-value {
    font-family: var(--w1-sans);
    font-weight: 800;
    font-size: clamp(28px, 3.4vw, 36px);
    line-height: 1;
    letter-spacing: -.02em;
    color: inherit;
}
.tce-pg-status__kpi-card:not(.tce-pg-status__kpi-card--total) .tce-pg-status__kpi-value {
    color: var(--w1-ink);
}
.tce-pg-status__kpi-card--gs .tce-pg-status__kpi-value { color: var(--w1-accent-2); }
.tce-pg-status__kpi-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--w1-ink-3);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.tce-pg-status__kpi-card--total .tce-pg-status__kpi-label { color: rgba(255,255,255,.7); }
.tce-pg-status__kpi-card--gs .tce-pg-status__kpi-label { color: var(--w1-accent); }

@media (max-width: 720px) {
    .tce-pg-status__kpi { grid-template-columns: repeat(2, 1fr); }
}

/* ---- §10.5 Calc rules ---- */
.tce-pg-status__rules {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tce-pg-status__rule {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid var(--w1-border);
    border-radius: var(--w1-radius);
    transition: border-color .2s, background .2s;
}
.tce-pg-status__rule:hover { background: var(--w1-cream); border-color: var(--w1-border-2); }
.tce-pg-status__rule--bonus {
    background: var(--w1-accent-tint);
    border-color: #f7c4b9;
}
.tce-pg-status__rule--bonus:hover { background: var(--w1-accent-tint); border-color: var(--w1-accent); }
.tce-pg-status__rule-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--w1-navy);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -.01em;
}
.tce-pg-status__rule-badge--2 { background: #2c4068; }
.tce-pg-status__rule-badge--3 { background: #3d5681; }
.tce-pg-status__rule-badge--gs {
    background: var(--w1-accent);
    color: #fff;
    font-size: 16px;
}
.tce-pg-status__rule-body {
    font-size: 14.5px;
    color: var(--w1-ink);
    font-weight: 500;
}
.tce-pg-status__rule-result {
    font-size: 13px;
    font-weight: 700;
    color: var(--w1-accent);
    white-space: nowrap;
}
.tce-pg-status__rule-result--bonus { color: var(--w1-accent-2); }

@media (max-width: 600px) {
    .tce-pg-status__rule { grid-template-columns: auto 1fr; gap: 14px; padding: 14px 16px; }
    .tce-pg-status__rule-result {
        grid-column: 2 / 3;
        padding-top: 4px;
    }
}

/* ---- §10.6 Tips list ---- */
.tce-pg-status__tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.tce-pg-status__tip {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 22px;
    background: var(--w1-cream);
    border: 1px solid var(--w1-border-2);
    border-radius: var(--w1-radius);
}
.tce-pg-status__tip-ico {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--w1-accent);
    color: #fff;
    display: grid;
    place-items: center;
}
.tce-pg-status__tip-text {
    font-size: 14px;
    line-height: 1.55;
    color: var(--w1-ink-2);
}

/* ---- §10.7 Receipts list ---- */
.tce-pg-status__receipt-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.tce-pg-status__receipt {
    background: #fff;
    border: 1px solid var(--w1-border);
    border-radius: var(--w1-radius);
    padding: 24px 26px;
    transition: border-color .25s, box-shadow .25s;
}
.tce-pg-status__receipt:hover {
    border-color: var(--w1-border-2);
    box-shadow: var(--w1-shadow);
}
.tce-pg-status__receipt--validated { border-left: 4px solid var(--w1-ok); padding-left: 22px; }
.tce-pg-status__receipt--pending   { border-left: 4px solid var(--w1-warn); padding-left: 22px; }
.tce-pg-status__receipt--rejected  { border-left: 4px solid var(--w1-err); padding-left: 22px; }

.tce-pg-status__receipt-head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: start;
    margin-bottom: 14px;
}
.tce-pg-status__receipt-photo {
    width: 96px;
    height: 96px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--w1-paper-2);
    border: 1px solid var(--w1-border);
    position: relative;
    cursor: pointer;
    padding: 0;
    transition: transform .25s, box-shadow .25s;
    flex-shrink: 0;
}
.tce-pg-status__receipt-photo:hover {
    transform: scale(1.02);
    box-shadow: var(--w1-shadow);
}
.tce-pg-status__receipt-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.tce-pg-status__receipt-photo--missing {
    cursor: default;
    display: grid;
    place-items: center;
    color: var(--w1-ink-4);
}
.tce-pg-status__receipt-photo--missing:hover { transform: none; box-shadow: none; }
.tce-pg-status__receipt-photo-zoom {
    position: absolute;
    right: 6px;
    bottom: 6px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(12,20,36,.78);
    color: #fff;
    display: grid;
    place-items: center;
}

.tce-pg-status__receipt-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}
.tce-pg-status__receipt-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.tce-pg-status__receipt-no {
    font-family: var(--w1-mono);
    font-size: 14px;
    color: var(--w1-ink);
    font-weight: 600;
    letter-spacing: -.005em;
}
.tce-pg-status__receipt-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tce-pg-status__receipt-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: var(--w1-paper-2);
    border: 1px solid var(--w1-border);
    border-radius: 999px;
    font-size: 12px;
    color: var(--w1-ink-2);
    font-weight: 500;
}
.tce-pg-status__receipt-chip svg { color: var(--w1-ink-3); }
.tce-pg-status__receipt-chip--gs {
    background: var(--w1-accent-tint);
    border-color: #f7c4b9;
    color: var(--w1-accent-2);
    font-weight: 600;
}
.tce-pg-status__receipt-chip--gs svg { color: var(--w1-accent); }

.tce-pg-status__receipt-values {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin-bottom: 16px;
    padding: 14px 18px;
    background: var(--w1-paper-2);
    border-radius: 10px;
}
.tce-pg-status__receipt-value {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.tce-pg-status__receipt-value-label {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--w1-ink-3);
}
.tce-pg-status__receipt-value-amount {
    font-family: var(--w1-sans);
    font-size: 19px;
    font-weight: 700;
    color: var(--w1-ink);
    letter-spacing: -.015em;
}
.tce-pg-status__receipt-value-amount span {
    font-size: 13px;
    color: var(--w1-ink-3);
    font-weight: 500;
    margin-left: 2px;
}
.tce-pg-status__receipt-value--muted .tce-pg-status__receipt-value-amount {
    color: var(--w1-ink-3);
    font-weight: 500;
}

.tce-pg-status__receipt-reject { margin: 12px 0 0; }

.tce-pg-status__receipt-codes {
    margin-top: 12px;
    padding-top: 16px;
    border-top: 1px dashed var(--w1-border);
}
.tce-pg-status__receipt-codes-summary {
    margin: 0 0 12px;
    font-size: 13.5px;
    color: var(--w1-ink-2);
}
.tce-pg-status__codes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tce-pg-status__code {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    background: var(--w1-paper-2);
    border: 1px solid var(--w1-border);
    border-radius: 10px;
    font-family: var(--w1-mono);
    font-size: 13px;
    color: var(--w1-ink);
}
.tce-pg-status__code--gs {
    background: var(--w1-accent-tint);
    border-color: #f7c4b9;
}
.tce-pg-status__code--return {
    background: #eef2ff;
    border-color: #c7d2fe;
}
.tce-pg-status__code-ico {
    display: inline-flex;
    align-items: center;
    color: var(--w1-ink-3);
}
.tce-pg-status__code--gs .tce-pg-status__code-ico { color: var(--w1-accent); }
.tce-pg-status__code--return .tce-pg-status__code-ico { color: #4f46e5; }
.tce-pg-status__code-tag--return {
    background: #eef2ff;
    color: #4338ca;
}
.tce-pg-status__code-value { font-weight: 600; letter-spacing: -.005em; }
.tce-pg-status__code-tag {
    font-family: var(--w1-sans);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--w1-ink-3);
    padding: 2px 6px;
    background: #fff;
    border-radius: 4px;
}
.tce-pg-status__code-tag--gs { color: var(--w1-accent); background: #fff; }

.tce-pg-status__receipt-pending {
    margin: 12px 0 0;
    padding: 12px 16px;
    background: var(--w1-warn-tint);
    border: 1px solid #ead2a3;
    border-radius: 10px;
    font-size: 13.5px;
    color: #6b4a05;
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 600px) {
    .tce-pg-status__receipt { padding: 18px 18px; }
    .tce-pg-status__receipt--validated,
    .tce-pg-status__receipt--pending,
    .tce-pg-status__receipt--rejected { padding-left: 16px; }
    .tce-pg-status__receipt-head { grid-template-columns: 64px 1fr; gap: 14px; }
    .tce-pg-status__receipt-photo { width: 64px; height: 64px; }
    .tce-pg-status__receipt-values { padding: 12px 14px; gap: 14px 20px; }
}

/* ---- §10.8 Empty state ---- */
.tce-pg-status__empty {
    text-align: center;
    padding: 56px 32px;
    background: #fff;
    border: 1px dashed var(--w1-border-2);
    border-radius: var(--w1-radius-lg);
}
.tce-pg-status__empty-ico {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: var(--w1-cream);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--w1-accent);
}
.tce-pg-status__empty-title {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--w1-ink);
    letter-spacing: -.015em;
}
.tce-pg-status__empty-desc {
    margin: 0 auto 24px;
    color: var(--w1-ink-2);
    font-size: 14.5px;
    line-height: 1.6;
    max-width: 460px;
}

/* ---- §10.9 Actions footer ---- */
.tce-pg-status__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 0;
    border-top: 1px solid var(--w1-border);
    border-bottom: 1px solid var(--w1-border);
    margin-bottom: 48px;
}
.tce-pg-status__actions-email {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--w1-ink-3);
    font-size: 13px;
    font-family: var(--w1-mono);
}

/* ---- §10.10 Legal grid ---- */
.tce-pg-status__legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
.tce-pg-status__legal-item {
    background: var(--w1-paper-2);
    border: 1px solid var(--w1-border);
    border-radius: var(--w1-radius);
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.tce-pg-status__legal-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--w1-ink-3);
}
.tce-pg-status__legal-id {
    font-family: var(--w1-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--w1-ink);
    background: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid var(--w1-border);
    display: inline-block;
    align-self: flex-start;
    letter-spacing: -.01em;
}
.tce-pg-status__legal-hint {
    margin: 0;
    font-size: 13px;
    color: var(--w1-ink-2);
    line-height: 1.55;
}
.tce-pg-status__legal-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.tce-pg-status__legal-links a {
    display: inline-block;
    color: var(--w1-accent);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
    transition: color .2s, border-color .2s;
}
.tce-pg-status__legal-links a:hover,
.tce-pg-status__legal-links a:focus-visible {
    color: var(--w1-accent-2);
    border-color: var(--w1-accent-2);
    outline: none;
}
.tce-pg-status__legal-danger { color: var(--w1-err) !important; }
.tce-pg-status__legal-danger:hover,
.tce-pg-status__legal-danger:focus-visible { color: #7a201b !important; border-color: #7a201b !important; }

.tce-pg-status__legal-footer {
    margin: 24px 0 0;
    font-size: 12.5px;
    color: var(--w1-ink-3);
    text-align: center;
    line-height: 1.6;
}

@media (max-width: 720px) {
    .tce-pg-status__legal-grid { grid-template-columns: 1fr; }
}

/* ---- §10.12 Account redesign — mobile-first (.tce-account-*) ---- */

/*
 * Layout: mobile = single column stacked
 * Desktop (≥768px): grid 2 coloane (hero stânga | receipts dreapta)
 */

/* Wrapper principal */
.tce-account {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

/* ---- Hero ---- */
.tce-account-hero {
    background: var(--w1-navy);
    color: #fff;
    border-radius: var(--w1-radius-lg);
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}
.tce-account-hero__greeting {
    margin: 0 0 20px;
    font-family: var(--w1-sans);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.01em;
    color: rgba(255,255,255,.75);
}
.tce-account-hero__chances {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    position: relative;
}
.tce-account-hero__chances-num {
    font-family: var(--w1-sans);
    font-weight: 900;
    font-size: clamp(64px, 16vw, 96px);
    line-height: 1;
    letter-spacing: -.04em;
    /* Gold gradient pentru numărul mare */
    background: linear-gradient(135deg, #f5c542 0%, #f7a800 50%, #f5c542 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.tce-account-hero__chances-label {
    font-size: 20px;
    font-weight: 700;
    color: rgba(255,255,255,.9);
    letter-spacing: .02em;
    text-transform: uppercase;
    margin-top: -4px;
}
.tce-account-hero__gs-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
    padding: 5px 12px;
    background: rgba(245,197,66,.18);
    border: 1px solid rgba(245,197,66,.4);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 700;
    color: #f5c542;
    letter-spacing: .03em;
}
.tce-account-hero__sub {
    margin: 12px 0 20px;
    font-size: 15px;
    color: rgba(255,255,255,.65);
    line-height: 1.4;
}
.tce-account-hero__sub strong { color: rgba(255,255,255,.9); font-weight: 700; }

/* KPI row breakdown (valoare + GS) */
.tce-account-hero__kpi-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding: 12px 20px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--w1-radius);
    width: 100%;
    justify-content: center;
}
.tce-account-hero__kpi-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}
.tce-account-hero__kpi-val {
    font-family: var(--w1-sans);
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em;
}
.tce-account-hero__kpi-item--gs .tce-account-hero__kpi-val { color: #f5c542; }
.tce-account-hero__kpi-item--return .tce-account-hero__kpi-val { color: #a5b4fc; }
.tce-account-hero__kpi-lbl {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
}
.tce-account-hero__kpi-sep {
    font-size: 22px;
    font-weight: 300;
    color: rgba(255,255,255,.3);
    line-height: 1;
}

/* CTA button — coral proeminent, full-width pe mobil */
.tce-account-cta {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 15px 24px;
    margin-bottom: 12px;
    box-shadow: 0 8px 24px -6px rgba(232,90,79,.55);
}
.tce-account-cta svg {
    flex-shrink: 0;
}

.tce-account-hero__email {
    margin: 4px 0 0;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: rgba(255,255,255,.4);
    font-family: var(--w1-mono);
}

/* Sticky CTA pe mobil (la scroll jos, butonul rămâne vizibil) */
@supports (position: sticky) {
    .tce-account-cta {
        /* Se activează prin JS clasa .tce-cta-sticky — fallback e in-flow */
    }
}

/* ---- Receipts section ---- */
.tce-account-receipts {
    background: #fff;
    border: 1px solid var(--w1-border);
    border-radius: var(--w1-radius-lg);
    overflow: hidden;
}
.tce-account-receipts__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px 14px;
    border-bottom: 1px solid var(--w1-border);
    flex-wrap: wrap;
}
.tce-account-receipts__title {
    margin: 0;
    font-family: var(--w1-sans);
    font-size: 15px;
    font-weight: 700;
    color: var(--w1-ink);
    letter-spacing: -.01em;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tce-account-receipts__title svg { color: var(--w1-ink-3); flex-shrink: 0; }
.tce-account-receipts__pending-note {
    font-size: 12px;
    font-weight: 600;
    color: var(--w1-warn);
    background: var(--w1-warn-tint);
    padding: 3px 9px;
    border-radius: 999px;
    white-space: nowrap;
}

/* Lista de cards */
.tce-account-receipt-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Card individual — header always visible */
.tce-account-receipt-card {
    border-bottom: 1px solid var(--w1-border);
    transition: background .15s;
}
.tce-account-receipt-card:last-child { border-bottom: none; }

/* Indicator lateral color per status */
.tce-account-receipt-card--validated { border-left: 3px solid var(--w1-ok); }
.tce-account-receipt-card--pending   { border-left: 3px solid var(--w1-warn); }
.tce-account-receipt-card--rejected  { border-left: 3px solid var(--w1-err); }

.tce-account-receipt-card.is-expanded {
    background: var(--w1-cream);
}

/* Toggle button — acoperă întregul header card */
.tce-account-receipt-card__toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 14px 16px 14px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    color: inherit;
    font-family: inherit;
    /* Touch target minim 44px */
    min-height: 64px;
    transition: background .15s;
}
.tce-account-receipt-card__toggle:hover,
.tce-account-receipt-card__toggle:focus-visible {
    background: var(--w1-paper-2);
    outline: none;
}
.tce-account-receipt-card__toggle:focus-visible {
    outline: 2px solid var(--w1-accent);
    outline-offset: -2px;
}

.tce-account-receipt-card__left {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex: 1;
}

/* Dot indicator status */
.tce-account-receipt-card__dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--w1-ink-4);
}
.tce-account-receipt-card--validated .tce-account-receipt-card__dot { background: var(--w1-ok); }
.tce-account-receipt-card--pending   .tce-account-receipt-card__dot { background: var(--w1-warn); }
.tce-account-receipt-card--rejected  .tce-account-receipt-card__dot { background: var(--w1-err); }

.tce-account-receipt-card__info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.tce-account-receipt-card__no {
    font-family: var(--w1-mono);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--w1-ink);
    letter-spacing: -.005em;
    white-space: nowrap;
}
.tce-account-receipt-card__meta {
    font-size: 12px;
    color: var(--w1-ink-3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tce-account-receipt-card__right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Pill cu nr. coduri de șansă */
.tce-account-receipt-card__codes-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    background: #fff7e0;
    border: 1px solid #ead59a;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #7a5e00;
}
.tce-account-receipt-card__codes-pill svg { color: #d4a017; }

/* Chevron — rotit la expand */
.tce-account-receipt-card__chevron {
    color: var(--w1-ink-4);
    display: flex;
    align-items: center;
    transition: transform .2s cubic-bezier(.2,.7,.2,1);
}
.tce-account-receipt-card.is-expanded .tce-account-receipt-card__chevron {
    transform: rotate(180deg);
}

/* Body expandat */
.tce-account-receipt-card__body {
    padding: 0 20px 18px 20px;
    border-top: 1px dashed var(--w1-border);
    /* Animație height 0 → auto nu merge cu hidden, folosim padding ca indicator vizual */
}
.tce-account-receipt-card__body[hidden] { display: none; }

.tce-account-receipt-card__detail-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-top: 14px;
    flex-wrap: wrap;
}
.tce-account-receipt-card__photo {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}
.tce-account-receipt-card__detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: flex-start;
    flex: 1;
    padding-top: 4px;
}

/* ---- Tips section ---- */
.tce-account-tips {
    background: var(--w1-cream);
    border: 1px solid var(--w1-border-2);
    border-radius: var(--w1-radius-lg);
    padding: 22px 22px 18px;
    margin-bottom: 24px;
}
.tce-account-tips__title {
    margin: 0 0 14px;
    font-family: var(--w1-sans);
    font-size: 14.5px;
    font-weight: 700;
    color: var(--w1-ink);
    letter-spacing: -.01em;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tce-account-tips__title svg { color: var(--w1-accent); flex-shrink: 0; }
.tce-account-tips__list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.tce-account-tips__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--w1-ink-2);
}
.tce-account-tips__item strong { color: var(--w1-ink); font-weight: 700; }
.tce-account-tips__ico {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--w1-accent);
    color: #fff;
    display: grid;
    place-items: center;
    margin-top: 1px;
}

/* Accordion calcul șanse */
.tce-account-tips__accordion {
    border-top: 1px solid var(--w1-border-2);
    margin-top: 4px;
    padding-top: 12px;
}
.tce-account-tips__acc-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 8px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-family: var(--w1-sans);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--w1-accent);
    text-align: left;
}
.tce-account-tips__acc-toggle:hover { color: var(--w1-accent-2); }
.tce-account-tips__acc-toggle:focus-visible {
    outline: 2px solid var(--w1-accent);
    outline-offset: 2px;
    border-radius: 4px;
}
.tce-account-tips__acc-chevron {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    color: var(--w1-accent);
    transition: transform .2s cubic-bezier(.2,.7,.2,1);
}
.tce-account-tips__acc-toggle.is-open .tce-account-tips__acc-chevron {
    transform: rotate(180deg);
}
.tce-account-tips__acc-body {
    padding-top: 14px;
}
.tce-account-tips__acc-body[hidden] { display: none; }

/* ---- Settings section ---- */
.tce-account-settings {
    background: #fff;
    border: 1px solid var(--w1-border);
    border-radius: var(--w1-radius-lg);
    overflow: hidden;
    margin-bottom: 64px;
}
.tce-account-settings__title {
    margin: 0;
    padding: 16px 20px;
    font-family: var(--w1-sans);
    font-size: 14px;
    font-weight: 700;
    color: var(--w1-ink);
    letter-spacing: -.01em;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--w1-border);
    background: var(--w1-paper-2);
}
.tce-account-settings__title svg { color: var(--w1-ink-3); flex-shrink: 0; }
.tce-account-settings__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.tce-account-settings__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--w1-border);
    flex-wrap: wrap;
}
.tce-account-settings__item:last-child { border-bottom: none; }
.tce-account-settings__item--footer {
    flex-direction: column;
    background: var(--w1-paper-2);
}
.tce-account-settings__item-label {
    flex-shrink: 0;
    width: 120px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--w1-ink-3);
    padding-top: 2px;
}
.tce-account-settings__item-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
}
.tce-account-settings__link {
    display: inline-block;
    color: var(--w1-accent);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    padding: 2px 0;
    border-bottom: 1px solid transparent;
    transition: color .2s, border-color .2s;
}
.tce-account-settings__link:hover,
.tce-account-settings__link:focus-visible {
    color: var(--w1-accent-2);
    border-color: var(--w1-accent-2);
    outline: none;
}
.tce-account-settings__link--danger { color: var(--w1-err); }
.tce-account-settings__link--danger:hover,
.tce-account-settings__link--danger:focus-visible {
    color: #7a201b;
    border-color: #7a201b;
}
.tce-account-settings__retention {
    margin: 0 0 4px;
    font-size: 12px;
    color: var(--w1-ink-3);
    line-height: 1.55;
}
.tce-account-settings__operator {
    margin: 0;
    font-size: 11.5px;
    color: var(--w1-ink-4);
}

/* ---- Desktop layout ≥768px ---- */
@media (min-width: 768px) {
    .tce-account {
        grid-template-columns: 320px 1fr;
        gap: 28px;
        align-items: start;
    }
    .tce-account-hero {
        /* Hero rămâne stânga, sticky la scroll */
        position: sticky;
        top: 90px; /* sub nav sticky */
    }
    .tce-account-cta {
        /* Pe desktop nu mai e nevoie de full-width forțat */
        width: auto;
        min-width: 200px;
        align-self: stretch;
    }
    .tce-account-receipts {
        /* Receipts ocupă coloana dreaptă */
    }
}

/* ---- Narrow mobile ≤400px ---- */
@media (max-width: 400px) {
    .tce-account-hero { padding: 24px 18px 20px; }
    .tce-account-hero__chances-num { font-size: 72px; }
    .tce-account-receipt-card__toggle { padding: 12px 12px 12px 14px; }
    .tce-account-settings__item-label { width: 100%; }
    .tce-account-settings__item { flex-direction: column; gap: 6px; }
}

/* ---- §10.11 Zoom overlay (image lightbox) ---- */
.tce-pg-status__zoom-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12,20,36,.92);
    z-index: 9998;
    display: grid;
    place-items: center;
    padding: 24px;
}
.tce-pg-status__zoom-overlay[hidden] { display: none !important; }
.tce-pg-status__zoom-figure {
    max-width: min(900px, 96vw);
    max-height: 92vh;
    text-align: center;
    margin: 0;
}
.tce-pg-status__zoom-figure img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 32px 70px -16px rgba(0,0,0,.6);
}
.tce-pg-status__zoom-caption {
    margin-top: 14px;
    color: rgba(255,255,255,.8);
    font-size: 13px;
    font-family: var(--w1-mono);
}
.tce-pg-status__zoom-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.06);
    color: #fff;
    font-size: 28px;
    line-height: 0;
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.tce-pg-status__zoom-close:hover,
.tce-pg-status__zoom-close:focus-visible {
    background: var(--w1-accent);
    border-color: var(--w1-accent);
    outline: none;
    transform: scale(1.05);
}


/* =============================================================
 * §11. WINNERS PAGE — /castigatori
 *     Tabs bar + panels (meta + winner list + actions + method) + modal
 * ============================================================= */

.tce-pg-cas__main { padding: 0 0 96px; }

/* ---- §11.1 Tabs bar ---- */
.tce-pg-cas__tabs-section { padding-bottom: 24px; }
.tce-pg-cas__tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    background: var(--w1-paper-2);
    padding: 14px;
    border-radius: var(--w1-radius-lg);
    border: 1px solid var(--w1-border);
}
.tce-pg-cas__tab {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--w1-border);
    border-radius: var(--w1-radius);
    cursor: pointer;
    text-align: left;
    transition: transform .25s, box-shadow .25s, border-color .25s, background .25s;
    font-family: var(--w1-sans);
    color: var(--w1-ink);
}
.tce-pg-cas__tab:hover {
    transform: translateY(-2px);
    box-shadow: var(--w1-shadow);
    border-color: var(--w1-border-2);
}
.tce-pg-cas__tab.is-active,
.tce-pg-cas__tab.tce-cas__drawing-card.is-active {
    background: var(--w1-navy) !important;
    color: #fff !important;
    border-color: var(--w1-navy) !important;
    box-shadow: var(--w1-shadow-lg);
}
.tce-pg-cas__tab:focus-visible {
    outline: 2px solid var(--w1-accent);
    outline-offset: 2px;
}
.tce-pg-cas__tab-num {
    font-family: var(--w1-display);
    font-style: italic;
    font-size: 22px;
    color: var(--w1-accent);
    font-weight: 400;
    line-height: 1;
}
.tce-pg-cas__tab.is-active .tce-pg-cas__tab-num { color: var(--w1-accent-soft); }
.tce-pg-cas__tab-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.01em;
}
.tce-pg-cas__tab-date {
    font-size: 12.5px;
    color: var(--w1-ink-3);
}
.tce-pg-cas__tab.is-active .tce-pg-cas__tab-date { color: rgba(255,255,255,.7); }
.tce-pg-cas__tab-status {
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.tce-pg-cas__tab-status--done   { background: var(--w1-ok-tint); color: var(--w1-ok); }
.tce-pg-cas__tab-status--pending{ background: var(--w1-warn-tint); color: var(--w1-warn); }
.tce-pg-cas__tab.is-active .tce-pg-cas__tab-status--done   { background: rgba(62,122,92,.25); color: #b7e3c5; }
.tce-pg-cas__tab.is-active .tce-pg-cas__tab-status--pending{ background: rgba(185,116,0,.22); color: #f0c97a; }

@media (max-width: 900px) {
    .tce-pg-cas__tabs { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 10px; }
    .tce-pg-cas__tab { padding: 14px 16px; }
}
@media (max-width: 520px) {
    .tce-pg-cas__tabs { grid-template-columns: 1fr; }
}

/* ---- §11.2 Panel ---- */
.tce-pg-cas__panel {
    display: none;
    margin-top: 36px;
}
.tce-pg-cas__panel.is-active { display: block; }
.tce-pg-cas__panel[hidden] { display: none !important; }
.tce-pg-cas__panel-head { margin-bottom: 28px; }

/* ---- §11.3 Meta grid ---- */
.tce-pg-cas__meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}
.tce-pg-cas__meta-card {
    background: #fff;
    border: 1px solid var(--w1-border);
    border-radius: var(--w1-radius);
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.tce-pg-cas__meta-card--hash {
    grid-column: span 2;
}
@media (max-width: 720px) {
    .tce-pg-cas__meta-card--hash { grid-column: span 1; }
}
.tce-pg-cas__meta-label {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--w1-ink-3);
}
.tce-pg-cas__meta-value {
    font-family: var(--w1-sans);
    font-size: 24px;
    font-weight: 800;
    color: var(--w1-ink);
    letter-spacing: -.015em;
    line-height: 1;
}
.tce-pg-cas__meta-hint {
    font-size: 12.5px;
    color: var(--w1-ink-3);
}
.tce-pg-cas__meta-hash {
    font-family: var(--w1-mono);
    font-size: 13px;
    color: var(--w1-ink);
    background: var(--w1-paper-2);
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--w1-border);
    word-break: break-all;
    line-height: 1.5;
}
.tce-pg-cas__meta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 4px;
}
.tce-pg-cas__verify-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.tce-cas__verify-badge--pending.tce-pg-cas__verify-badge { background: var(--w1-paper-2); color: var(--w1-ink-3); border: 1px solid var(--w1-border); }
.tce-cas__verify-badge--ok.tce-pg-cas__verify-badge      { background: var(--w1-ok-tint); color: var(--w1-ok); }
.tce-cas__verify-badge--fail.tce-pg-cas__verify-badge    { background: var(--w1-err-tint); color: var(--w1-err); }
.tce-pg-cas__verify-note {
    margin-top: 6px;
    font-size: 12.5px;
    color: var(--w1-ink-3);
    line-height: 1.5;
}
.tce-pg-cas__meta-link {
    align-self: flex-start;
}

/* ---- §11.4 Winners list ---- */
.tce-pg-cas__winners {
    margin-bottom: 32px;
}
.tce-pg-cas__winners-title {
    margin: 0 0 16px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--w1-ink-2);
}
.tce-pg-cas__winner-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tce-pg-cas__winner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 16px 22px;
    background: #fff;
    border: 1px solid var(--w1-border);
    border-radius: var(--w1-radius);
    transition: border-color .2s, background .2s;
}
.tce-pg-cas__winner:hover {
    background: var(--w1-cream);
    border-color: var(--w1-border-2);
}
.tce-pg-cas__winner-pos {
    font-family: var(--w1-display);
    font-style: italic;
    font-weight: 400;
    font-size: 28px;
    color: var(--w1-accent);
    line-height: 1;
    min-width: 48px;
}
.tce-pg-cas__winner-body { min-width: 0; }
.tce-pg-cas__winner-name {
    margin: 0 0 4px;
    font-size: 15.5px;
    color: var(--w1-ink);
    font-weight: 500;
}
.tce-pg-cas__winner-name strong { font-weight: 700; }
.tce-pg-cas__winner-county {
    color: var(--w1-ink-3);
    font-weight: 400;
}
.tce-pg-cas__winner-meta {
    margin: 0;
    font-size: 12.5px;
    color: var(--w1-ink-3);
}
.tce-pg-cas__winner-code {
    font-family: var(--w1-mono);
    font-size: 13px;
    color: var(--w1-ink);
    background: var(--w1-accent-tint);
    padding: 7px 12px;
    border-radius: 8px;
    border: 1px solid #f7c4b9;
    font-weight: 600;
    letter-spacing: -.005em;
}

@media (max-width: 600px) {
    .tce-pg-cas__winner { grid-template-columns: auto 1fr; padding: 14px 16px; gap: 14px; }
    .tce-pg-cas__winner-code { grid-column: 1 / -1; justify-self: start; }
}

/* ---- §11.5 Actions row ---- */
.tce-pg-cas__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

/* ---- §11.6 Method expandable ---- */
.tce-pg-cas__method {
    background: var(--w1-navy);
    color: #fff;
    border-radius: var(--w1-radius);
    padding: 28px 32px;
    margin-top: 16px;
}
.tce-pg-cas__method[hidden] { display: none; }
.tce-pg-cas__method-title {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--w1-accent-soft);
}
.tce-pg-cas__method-list {
    margin: 0;
    padding-left: 22px;
    counter-reset: tce-method-counter;
    list-style: none;
}
.tce-pg-cas__method-list li {
    counter-increment: tce-method-counter;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255,255,255,.86);
}
.tce-pg-cas__method-list li::before {
    content: counter(tce-method-counter, decimal-leading-zero);
    position: absolute;
    left: -10px;
    top: 0;
    font-family: var(--w1-display);
    font-style: italic;
    font-size: 18px;
    color: var(--w1-accent);
    font-weight: 400;
}
.tce-pg-cas__method-list strong { color: #fff; font-weight: 600; }
.tce-pg-cas__method-list em { font-style: italic; color: var(--w1-accent-soft); }
.tce-pg-cas__method-list code {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    padding: 1px 6px;
    border-radius: 4px;
    font-family: var(--w1-mono);
    font-size: 12.5px;
}

/* ---- §11.7 Upcoming panel ---- */
.tce-pg-cas__upcoming {
    background: var(--w1-cream);
    border: 1px dashed var(--w1-border-2);
    border-radius: var(--w1-radius-lg);
    padding: 56px 32px;
    text-align: center;
}
.tce-pg-cas__upcoming-ico {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--w1-accent);
    border: 1px solid var(--w1-border);
}
.tce-pg-cas__upcoming-title {
    margin: 0 0 12px;
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 700;
    color: var(--w1-ink);
    letter-spacing: -.015em;
}
.tce-pg-cas__upcoming-title em {
    display: block;
    font-family: var(--w1-display);
    font-style: italic;
    font-weight: 400;
    color: var(--w1-accent);
    margin-top: 4px;
    font-size: .8em;
}
.tce-pg-cas__upcoming-desc {
    color: var(--w1-ink-2);
    font-size: 15px;
    line-height: 1.6;
    max-width: 520px;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 0;
    margin-bottom: 24px;
    text-align: center;
}

/* ---- §11.8 Page foot card ---- */
.tce-pg-cas__page-foot { padding-bottom: 16px; }
.tce-pg-cas__page-foot-card {
    background: var(--w1-paper-2);
    border-radius: var(--w1-radius);
    padding: 26px 30px;
    text-align: center;
}
.tce-pg-cas__page-foot-links {
    margin: 0 0 12px;
    font-size: 14px;
    color: var(--w1-ink-2);
}
.tce-pg-cas__page-foot-links a {
    color: var(--w1-accent);
    text-decoration: none;
    font-weight: 600;
}
.tce-pg-cas__page-foot-links a:hover,
.tce-pg-cas__page-foot-links a:focus-visible {
    color: var(--w1-accent-2);
    text-decoration: underline;
    outline: none;
}
.tce-pg-cas__page-foot-links span { color: var(--w1-ink-3); margin: 0 8px; }
.tce-pg-cas__page-foot-note {
    font-size: 12.5px;
    color: var(--w1-ink-3);
    line-height: 1.65;
    max-width: 880px;
    margin-left: auto !important;
    margin-right: auto !important;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
}

/* ---- §11.9 Modal pool (JS-controlled, .is-open state) ---- */
.tce-pg-cas__modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12,20,36,.78);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.tce-cas-modal-overlay.is-open.tce-pg-cas__modal-overlay { display: flex; }
.tce-pg-cas__modal {
    background: #fff;
    width: 100%;
    max-width: 720px;
    max-height: 80vh;
    border-radius: var(--w1-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 32px 70px -20px rgba(0,0,0,.5);
}
.tce-pg-cas__modal-head {
    padding: 20px 26px;
    border-bottom: 1px solid var(--w1-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.tce-pg-cas__modal-title {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--w1-ink);
    letter-spacing: -.01em;
}
.tce-pg-cas__modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--w1-paper-2);
    border: 1px solid var(--w1-border);
    color: var(--w1-ink-2);
    font-size: 22px;
    line-height: 0;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.tce-pg-cas__modal-close:hover,
.tce-pg-cas__modal-close:focus-visible {
    background: var(--w1-accent);
    color: #fff;
    border-color: var(--w1-accent);
    outline: none;
}
.tce-pg-cas__modal-body {
    padding: 20px 26px;
    overflow-y: auto;
    flex: 1;
}
.tce-pg-cas__modal-meta {
    margin: 0 0 14px;
    font-size: 13px;
    color: var(--w1-ink-3);
}
.tce-pg-cas__modal-search {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--w1-border);
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 14px;
    font-family: var(--w1-sans);
}
.tce-pg-cas__modal-search:focus {
    outline: none;
    border-color: var(--w1-accent);
    box-shadow: 0 0 0 4px var(--w1-accent-tint);
}
.tce-pg-cas__modal-loading {
    padding: 32px 0;
    text-align: center;
    color: var(--w1-ink-3);
    font-size: 14px;
}
.tce-pg-cas__modal-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
}
.tce-pg-cas__modal-list li {
    font-family: var(--w1-mono);
    font-size: 12.5px;
    padding: 8px 12px;
    background: var(--w1-paper-2);
    border: 1px solid var(--w1-border);
    border-radius: 8px;
    color: var(--w1-ink-2);
}
.tce-pg-cas__modal-list li.is-winner {
    background: var(--w1-accent-tint);
    border-color: #f7c4b9;
    color: var(--w1-accent-2);
    font-weight: 700;
}
.tce-pg-cas__modal-list li.is-hidden { display: none; }


/* =============================================================
 * §12. LEGAL PAGES — /regulament + /politica-confidentialitate
 *     Document-style typography pentru text-heavy content.
 * ============================================================= */

.tce-pg-legal__main { padding: 0 0 96px; }

/* ---- §12.1 Content article wrapper ---- */
.tce-pg-legal__content {
    font-family: var(--w1-sans);
    color: var(--w1-ink-2);
    font-size: 15px;
    line-height: 1.7;
}

.tce-pg-legal__art {
    padding: 28px 0 32px;
    border-bottom: 1px solid var(--w1-border);
}
.tce-pg-legal__art:last-of-type {
    border-bottom: none;
    padding-bottom: 16px;
}
.tce-pg-legal__art--final {
    background: var(--w1-paper-2, #f5f1ea);
    border-radius: 12px;
    padding: 28px;
    margin-top: 24px;
    text-align: center;
}
.tce-pg-legal__signoff {
    margin: 0 !important;
    line-height: 1.7;
    font-size: 14px;
    color: var(--w1-ink-2, #5a6a87);
}
.tce-pg-legal__signoff strong {
    color: var(--w1-ink, #1c2940);
    font-size: 15px;
    letter-spacing: .02em;
}

.tce-pg-legal__content h2 {
    margin: 0 0 18px;
    font-family: var(--w1-sans);
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    letter-spacing: -.015em;
    line-height: 1.25;
    color: var(--w1-ink);
}
.tce-pg-legal__content h3 {
    margin: 24px 0 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.005em;
    color: var(--w1-ink);
}
.tce-pg-legal__content p {
    margin: 0 0 14px;
}
.tce-pg-legal__content p:last-child {
    margin-bottom: 0;
}
.tce-pg-legal__content strong {
    color: var(--w1-ink);
    font-weight: 600;
}
.tce-pg-legal__content a {
    color: var(--w1-accent);
    text-decoration: none;
    border-bottom: 1px solid var(--w1-accent);
    padding-bottom: 1px;
    transition: color .2s, border-color .2s;
}
.tce-pg-legal__content a:hover,
.tce-pg-legal__content a:focus-visible {
    color: var(--w1-accent-2);
    border-color: var(--w1-accent-2);
    outline: none;
}
.tce-pg-legal__content ul,
.tce-pg-legal__content ol {
    margin: 0 0 16px;
    padding: 0;
    list-style: none;
}
.tce-pg-legal__content ul li,
.tce-pg-legal__content ol li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    line-height: 1.65;
}
.tce-pg-legal__content ul li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--w1-accent);
}
.tce-pg-legal__content ol {
    counter-reset: tce-legal-counter;
}
.tce-pg-legal__content ol li {
    counter-increment: tce-legal-counter;
}
.tce-pg-legal__content ol li::before {
    content: counter(tce-legal-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--w1-sans);
    font-weight: 700;
    color: var(--w1-accent);
    font-size: 14px;
    line-height: 1.7;
}
.tce-pg-legal__content code {
    font-family: var(--w1-mono);
    font-size: 13px;
    color: var(--w1-ink);
    background: var(--w1-paper-2);
    padding: 1px 6px;
    border-radius: 4px;
    border: 1px solid var(--w1-border);
}

/* ---- §12.2 Example callout ---- */
.tce-pg-legal__example {
    background: var(--w1-cream);
    border-left: 4px solid var(--w1-accent);
    padding: 16px 20px;
    border-radius: 0 var(--w1-radius-sm) var(--w1-radius-sm) 0;
    margin: 16px 0 18px;
    font-size: 14.5px;
    color: var(--w1-ink-2);
}
.tce-pg-legal__example strong {
    color: var(--w1-accent);
    margin-right: 4px;
}
.tce-pg-legal__example--max {
    background: var(--w1-accent-tint);
    border-color: var(--w1-accent-2);
}

/* ---- §12.3 Page footer notice ---- */
.tce-pg-legal__footer {
    margin-top: 48px;
    padding: 24px 28px;
    background: var(--w1-paper-2);
    border-radius: var(--w1-radius);
    text-align: center;
    color: var(--w1-ink-3);
    font-size: 13px;
    line-height: 1.6;
}
.tce-pg-legal__footer p { margin: 0; }
.tce-pg-legal__footer a {
    color: var(--w1-accent);
    text-decoration: none;
    font-weight: 600;
}
.tce-pg-legal__footer a:hover,
.tce-pg-legal__footer a:focus-visible {
    color: var(--w1-accent-2);
    text-decoration: underline;
    outline: none;
}

/* ---- §12.4 Inherited table override (.tce-pg-table already in §5.9) ---- */
.tce-pg-legal__content .tce-pg-table-wrap {
    margin: 18px 0 22px;
}


/* =============================================================
 * §13. LIVE DRAWING PAGE — /extragere-live
 *     Countdown + pool counter + spinner + method explainer
 *     (only NEW elements; existing .tce-live-countdown classes
 *     stylized from castigatori.css base, augmented here.)
 * ============================================================= */

.tce-pg-live__main { padding: 0 0 96px; }

/* ---- §13.1 Countdown big card ---- */
.tce-live-countdown {
    background: linear-gradient(135deg, var(--w1-navy) 0%, var(--w1-navy-deep) 100%);
    color: #fff;
    border-radius: var(--w1-radius-lg);
    padding: 40px 32px;
    text-align: center;
    margin-bottom: 24px;
    box-shadow: var(--w1-shadow-lg);
}
.tce-live-countdown__label {
    margin: 0 0 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--w1-accent-soft);
}
.tce-live-countdown__units {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}
.tce-live-countdown__unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 72px;
}
.tce-live-countdown__num {
    font-family: var(--w1-sans);
    font-size: clamp(40px, 7vw, 64px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -.03em;
    color: #fff;
    font-variant-numeric: tabular-nums;
}
.tce-live-countdown__name {
    margin-top: 6px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
}
.tce-live-countdown__sep {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 300;
    color: var(--w1-accent);
    margin: 0 2px;
}

/* ---- §13.2 Pool bar ---- */
.tce-pg-live__pool {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 26px;
    background: var(--w1-cream);
    border: 1px solid var(--w1-border-2);
    border-radius: var(--w1-radius);
    margin-bottom: 24px;
}
.tce-pg-live__pool-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--w1-ink-2);
    letter-spacing: -.005em;
}
.tce-pg-live__pool-count {
    font-family: var(--w1-sans);
    font-size: 24px;
    font-weight: 800;
    color: var(--w1-accent);
    letter-spacing: -.015em;
    line-height: 1;
}

/* ---- §13.3 Method block (waiting state) ---- */
.tce-pg-live__method {
    background: #fff;
    border: 1px solid var(--w1-border);
    border-radius: var(--w1-radius);
    padding: 28px 32px;
}
.tce-pg-live__method-title {
    margin: 0 0 16px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--w1-ink);
}
.tce-pg-live__method-foot {
    margin: 18px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--w1-border);
}

/* Use existing .tce-pg-cas__method-list color overrides for light bg */
.tce-pg-live__method .tce-pg-cas__method-list li {
    color: var(--w1-ink-2);
}
.tce-pg-live__method .tce-pg-cas__method-list li::before {
    color: var(--w1-accent);
}
.tce-pg-live__method .tce-pg-cas__method-list strong { color: var(--w1-ink); }
.tce-pg-live__method .tce-pg-cas__method-list code {
    background: var(--w1-paper-2);
    border-color: var(--w1-border);
    color: var(--w1-ink);
}

/* ---- §13.4 In-progress state ---- */
.tce-pg-live__progress {
    background: var(--w1-navy);
    color: #fff;
    border-radius: var(--w1-radius-lg);
    padding: 48px 32px;
    text-align: center;
}
.tce-pg-live__spinner {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border: 3px solid rgba(255,255,255,.18);
    border-top-color: var(--w1-accent);
    border-radius: 50%;
    animation: tce-pg-spin 1s linear infinite;
}
@keyframes tce-pg-spin {
    to { transform: rotate(360deg); }
}
.tce-pg-live__progress-title {
    margin: 0 0 8px;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.015em;
}
.tce-pg-live__progress-sub {
    margin: 0 auto;
    max-width: 520px;
    color: rgba(255,255,255,.75);
    font-size: 14.5px;
    line-height: 1.6;
}

/* Toggle states */
.tce-live__state { display: none; }
.tce-live__state.is-active { display: block; }


/* =============================================================
 * §14. WINNER ACCEPT PAGE — /acceptare-castig
 *     Light approach: chrome+head nou, body păstrat (.tce-form-page, etc.)
 *     stilizat în continuare de style.css/audit.css.
 * ============================================================= */

.tce-pg-winner__main { padding: 0 0 96px; }
.tce-pg-winner__head { padding-bottom: 36px; margin-bottom: 32px; }

/* Hide old hero markers (they're replaced by new .tce-pg-head) */
.tce-pg-winner .tce-form-page__header { display: none; }


/* =============================================================
 * §15. AUDIT PAGE — /audit-extragere
 *     Light approach: chrome+head nou, body păstrat (.tce-audit-*, .tce-uf-*)
 *     stilizat în continuare de audit.css.
 * ============================================================= */

.tce-pg-audit__main { padding: 0 0 96px; }
.tce-pg-audit__head { padding-bottom: 36px; margin-bottom: 32px; }
.tce-pg-audit .tce-audit-page { padding-top: 0; }
.tce-pg-audit .tce-container { max-width: 1200px; padding: 0; }


/* =============================================================
 * §16. RESULTS PAGE — /regulament-rezultate
 *     Light approach: chrome+head nou, body păstrat (.tce-results-*)
 *     stilizat în continuare de results.css.
 * ============================================================= */

.tce-pg-results__main { padding: 0 0 96px; }
.tce-pg-results__head { padding-bottom: 36px; margin-bottom: 32px; }

/* Hide old hero markers (replaced by new .tce-pg-head) */
.tce-pg-results .tce-results-hero { display: none; }

/* §17 NOTAR PAGE — REMOVED 2026-05-18 (pagina notar scoasă din campanie) */
