/**
 * TCE Promo — Cookie Banner styles
 * Loaded conditional via Frontend\CookieBanner if no consent persisted.
 *
 * Paleta TCE:
 *   Navy primary  #1c2940
 *   Gold accent   #b8941f  /  #d4aa3a
 *   Cream bg      #f6f4ef
 *   Text muted    #667085
 */

#tce-cookie-banner {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    background: #1c2940;
    color: #fff;
    border-top: 3px solid #b8941f;
    border-radius: 12px;
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.28), 0 8px 24px rgba(0, 0, 0, 0.18);
    padding: 20px 24px;
    z-index: 999999;
    font-family: var(--tce-font-base, 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif);
    font-size: 14px;
    line-height: 1.5;
    animation: tceCookieSlideUp 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes tceCookieSlideUp {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

#tce-cookie-banner h2 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    font-family: var(--tce-font-display, inherit);
    letter-spacing: 0.01em;
}

#tce-cookie-banner p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13.5px;
}

#tce-cookie-banner a {
    color: #d4aa3a;
    text-decoration: underline;
    text-underline-offset: 2px;
}

#tce-cookie-banner a:hover {
    color: #e8c768;
}

#tce-cookie-banner .tce-cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

/* ── Buton baza ─────────────────────────────────────── */
#tce-cookie-banner button {
    appearance: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    min-height: 44px;          /* touch target WCAG 2.5.8 */
    border-radius: 8px;
    transition: transform 150ms, box-shadow 150ms, background-color 150ms, border-color 150ms, color 150ms;
    line-height: 1;
}

#tce-cookie-banner button:focus-visible {
    outline: 3px solid #d4aa3a;
    outline-offset: 3px;
}

/* ── PRIMARY — "Accept toate" — gold ────────────────── */
#tce-cookie-banner .tce-cookie-accept {
    background: linear-gradient(135deg, #b8941f 0%, #d4aa3a 100%);
    color: #1c2940;
    border: none;
    font-weight: 700;
}

#tce-cookie-banner .tce-cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(184, 148, 31, 0.45);
}

#tce-cookie-banner .tce-cookie-accept:active {
    transform: translateY(0);
    box-shadow: none;
}

/* ── SECONDARY — "Doar necesare" — outline alb ──────── */
#tce-cookie-banner .tce-cookie-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

#tce-cookie-banner .tce-cookie-reject:hover {
    border-color: #b8941f;
    color: #d4aa3a;
    background: rgba(184, 148, 31, 0.08);
}

/* ── Motion-safe off ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    #tce-cookie-banner {
        animation: none;
    }
    #tce-cookie-banner button {
        transition: none;
    }
}

/* ── Mobile ─────────────────────────────────────────── */
@media (max-width: 600px) {
    #tce-cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 12px 12px 0 0;
        padding: 18px 16px;
    }

    #tce-cookie-banner .tce-cookie-actions {
        flex-direction: column;
    }

    #tce-cookie-banner button {
        width: 100%;
        text-align: center;
    }
}
