/* GDPR-style cookie notice — fixed bottom bar (first visit until choice) */

.lc-cookie-consent {
    position: fixed;
    z-index: 10800;
    left: 0;
    right: 0;
    bottom: 0;
    padding: calc(0.85rem + env(safe-area-inset-bottom, 0px)) calc(1rem + env(safe-area-inset-right, 0px))
        calc(0.85rem + env(safe-area-inset-bottom, 0px)) calc(1rem + env(safe-area-inset-left, 0px));
    background: rgba(15, 17, 23, 0.97);
    color: #f1f5f9;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.lc-cookie-consent.lc-cookie-consent--visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.lc-cookie-consent__inner {
    max-width: min(1100px, 100%);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1rem 1.25rem;
}

.lc-cookie-consent__text {
    flex: 1 1 280px;
    min-width: 0;
}

.lc-cookie-consent__title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #fff;
}

.lc-cookie-consent__desc {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: rgba(241, 245, 249, 0.88);
}

.lc-cookie-consent__desc a {
    color: #93c5fd;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lc-cookie-consent__desc a:hover {
    color: #bfdbfe;
}

.lc-cookie-consent__actions {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-end;
}

.lc-cookie-consent__btn {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    line-height: 1.25;
    white-space: nowrap;
}

.lc-cookie-consent__btn:focus-visible {
    outline: 2px solid #93c5fd;
    outline-offset: 2px;
}

.lc-cookie-consent__btn--reject {
    background: transparent;
    color: #e2e8f0;
    border-color: rgba(255, 255, 255, 0.28);
}

.lc-cookie-consent__btn--reject:hover {
    background: rgba(255, 255, 255, 0.06);
}

.lc-cookie-consent__btn--accept {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.lc-cookie-consent__btn--accept:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

body.lc-cookie-consent-open {
    padding-bottom: var(--lc-cookie-banner-h, 0px);
}

@media (prefers-reduced-motion: reduce) {
    .lc-cookie-consent {
        transition: none;
    }
}
