/* Slim full-width cookie bar — long, not tall */

.lb-cookie-notice {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    max-width: none;
    margin: 0;
    padding: 0.55rem 1.25rem;
    background: rgba(15, 23, 42, 0.97);
    border: none;
    border-top: 1px solid rgba(106, 250, 166, 0.22);
    border-radius: 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
    color: rgba(255, 255, 255, 0.88);
    pointer-events: auto;
}

.lb-cookie-notice[hidden] {
    display: none !important;
}

.lb-cookie-notice__inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 0;
}

.lb-cookie-notice__text {
    flex: 1 1 auto;
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lb-cookie-notice__text strong {
    font-weight: 600;
}

.lb-cookie-notice__text a {
    color: var(--primary-color, #6afaa6);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lb-cookie-notice__text a:hover {
    color: #fff;
}

.lb-cookie-notice__actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.4rem;
    align-items: center;
    flex-shrink: 0;
}

.lb-cookie-notice__actions .btn2 {
    min-height: 32px;
    height: 32px;
    padding: 0 0.85rem;
    font-size: 0.8rem;
    border-radius: 6px;
}

@media (max-width: 900px) {
    .lb-cookie-notice__text {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }

    .lb-cookie-notice__inner {
        flex-wrap: wrap;
        gap: 0.5rem 0.75rem;
    }
}

@media (max-width: 575px) {
    .lb-cookie-notice {
        padding: 0.5rem 0.85rem;
    }

    .lb-cookie-notice__actions {
        width: 100%;
        justify-content: flex-end;
    }
}
