.cookie-consent {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 80;
    width: min(420px, calc(100vw - 32px));
    display: grid;
    gap: 16px;
    padding: 18px;
    color: var(--text);
    border: 1px solid rgba(19, 54, 111, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
}

.cookie-consent-copy {
    display: grid;
    gap: 6px;
}

.cookie-consent-copy strong {
    font-size: 0.96rem;
    color: var(--brand-deep);
}

.cookie-consent-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
}

.cookie-consent-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

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

    .cookie-consent-actions {
        justify-content: stretch;
    }

    .cookie-consent-actions .button {
        flex: 1;
    }
}
