.analytics-consent {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 10000;
    width: min(520px, calc(100% - 32px));
    padding: 20px;
    background: #fff;
    border: 1px solid #d9e0e7;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
    color: #1f2a33;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.45;
}

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

.analytics-consent__title {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
}

.analytics-consent__text {
    margin: 0;
}

.analytics-consent__link {
    color: #0070c9;
    text-decoration: underline;
}

.analytics-consent__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.analytics-consent__button {
    min-width: 130px;
    padding: 10px 16px;
    border: 1px solid #111;
    border-radius: 3px;
    background: #111;
    color: #fff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.analytics-consent__button_secondary {
    background: #fff;
    color: #111;
}

.analytics-consent__button:focus {
    outline: 2px solid #0070c9;
    outline-offset: 2px;
}

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

    .analytics-consent__actions {
        display: grid;
    }

    .analytics-consent__button {
        width: 100%;
    }
}
