/* ======================================================
   Cookie Consent Banner — lt-cookie
   Isolated stylesheet, loaded only on public frontend.
   ====================================================== */

.lt-cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 16px 20px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    background: #0f1b2d;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.35);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    will-change: transform, opacity;
}

.lt-cookie--visible {
    transform: translateY(0);
    opacity: 1;
}

.lt-cookie__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.lt-cookie__text {
    flex: 1;
    min-width: 200px;
}

.lt-cookie__text p {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
}

.lt-cookie__text strong {
    color: #cbd5e1;
    font-weight: 600;
}

.lt-cookie__text a {
    color: #22c55e;
    text-decoration: underline;
    text-decoration-color: rgba(34, 197, 94, 0.4);
    transition: color 0.2s, text-decoration-color 0.2s;
}

.lt-cookie__text a:hover {
    color: #4ade80;
    text-decoration-color: rgba(74, 222, 128, 0.7);
}

.lt-cookie__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.lt-cookie__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: background 0.25s, color 0.25s, opacity 0.25s, outline-offset 0.15s;
    min-height: 44px;
    white-space: nowrap;
}

.lt-cookie__btn:focus-visible {
    outline: 2px solid #22c55e;
    outline-offset: 3px;
}

.lt-cookie__btn--accept {
    background: #22c55e;
    color: #fff;
}

.lt-cookie__btn--accept:hover {
    background: #16a34a;
}

.lt-cookie__btn--more {
    background: rgba(255, 255, 255, 0.06);
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.lt-cookie__btn--more:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #e2e8f0;
}

@media (max-width: 600px) {
    .lt-cookie__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .lt-cookie__actions {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .lt-cookie__btn {
        width: 100%;
        padding: 12px 20px;
    }
}