.cookie-consent {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 16000;
    display: none;
    justify-content: center;
    pointer-events: none;
}

.cookie-consent.is-visible {
    display: flex;
}

.cookie-consent__inner {
    width: min(760px, 100%);
    background: rgba(17, 17, 17, 0.94);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 10px 28px rgba(0,0,0,0.22);
    backdrop-filter: blur(10px);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    pointer-events: auto;
}

.cookie-consent__text {
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.92);
}

.cookie-consent__text a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.cookie-consent__btn {
    border: 1px solid rgba(255,255,255,0.18);
    background: #ffffff;
    color: #111111;
    padding: 10px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.cookie-consent__btn:hover {
    transform: translateY(-1px);
}

.cookie-consent__btn--ghost {
    background: transparent;
    color: #ffffff;
}

@media (max-width: 640px) {
    .cookie-consent {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .cookie-consent__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px;
    }

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