.cookie-consent {
    position: fixed;
    left: 36px;
    bottom: 72px;
    z-index: 10000000;
    box-sizing: border-box;
    width: 327px;
    max-width: calc(100vw - 32px);
    max-height: calc(100dvh - 32px);
    overflow: auto;
    padding: 16px;
    border-radius: 16px;
    background: #fff;
    color: #333;
    font-family: 'r', Arial, sans-serif;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .08);
}
.cookie-consent h2 { margin: 0 0 8px; font-size: 16px; line-height: 22px; font-weight: 500; }
.cookie-consent p { margin: 0; font-size: 14px; line-height: 20px; }
.cookie-consent__actions { display: flex; gap: 12px; margin-top: 16px; }
.cookie-consent button {
    flex: 1; min-width: 0; min-height: 44px; padding: 11px 12px 13px;
    border: 0; border-radius: 48px; background: #f6f6ff; color: #636fff;
    font: inherit; font-size: 14px; line-height: 20px; cursor: pointer;
}
.cookie-consent .cookie-consent__accept { background: #636fff; color: #fff; }
.cookie-consent button:focus-visible { outline: 2px solid #333; outline-offset: 3px; }
@media (max-width: 600px) { .cookie-consent { left: 16px; bottom: 24px; } }
