.analytics-cookie-banner {
    position: fixed;
    z-index: 1400;
    right: 18px;
    bottom: 18px;
    left: 18px;
    display: flex;
    width: min(900px, calc(100% - 36px));
    margin: 0 auto;
    padding: 18px 20px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    background: #fff;
    color: #1b2a4a;
    box-shadow: 0 18px 52px rgba(15, 23, 42, .2);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.analytics-cookie-banner[hidden] {
    display: none;
}

.analytics-cookie-banner strong {
    display: block;
    margin-bottom: 4px;
    font-size: .9rem;
}

.analytics-cookie-banner p {
    margin: 0;
    color: #64748b;
    font-size: .78rem;
    line-height: 1.5;
}

.analytics-cookie-banner a {
    display: inline-block;
    margin-top: 4px;
    color: #c25f10;
    font-size: .74rem;
    font-weight: 800;
}

.analytics-cookie-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 9px;
}

.analytics-cookie-actions button {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 9px;
    font: inherit;
    font-size: .76rem;
    font-weight: 850;
    cursor: pointer;
}

.analytics-cookie-reject {
    border: 1px solid #cbd5e1;
    background: #fff;
    color: #1b2a4a;
}

.analytics-cookie-accept {
    border: 1px solid #f28c28;
    background: #f28c28;
    color: #fff;
}

.analytics-cookie-actions button:focus-visible {
    outline: 3px solid rgba(242, 140, 40, .35);
    outline-offset: 2px;
}

@media (max-width: 560px) {
    .analytics-cookie-banner {
        right: 12px;
        bottom: 12px;
        left: 12px;
        width: calc(100% - 24px);
        padding: 16px;
        align-items: stretch;
        flex-direction: column;
        gap: 13px;
    }

    .analytics-cookie-actions {
        width: 100%;
    }

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