.cookie-consent[hidden] { display: none !important; }
.cookie-consent {
    position: fixed;
    z-index: 10000;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid #d8d8d8;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.14);
    font-family: "Open Sans", Arial, sans-serif;
    color: #222;
}
.cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    max-width: 1360px;
    margin: 0 auto;
}
.cookie-consent__content { max-width: 860px; font-size: 14px; line-height: 1.55; }
.cookie-consent__content p { margin: 0 0 10px; }
.cookie-consent__content p:last-child { margin-bottom: 0; }
.cookie-consent__content a { color: #1a5ea8; text-decoration: underline; }
.cookie-consent__actions { display: flex; flex: 0 0 360px; flex-direction: column; gap: 10px; }
.cookie-consent__button {
    min-height: 46px;
    padding: 10px 18px;
    border: 1px solid #174f8a;
    border-radius: 2px;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    cursor: pointer;
}
.cookie-consent__button--primary { background: #174f8a; color: #fff; }
.cookie-consent__button--secondary { background: #fff; color: #174f8a; }
.cookie-consent__button:hover { opacity: 0.88; }
.cookie-consent__button:focus-visible { outline: 3px solid rgba(23,79,138,.3); outline-offset: 2px; }
@media (max-width: 800px) {
    .cookie-consent { padding: 16px; }
    .cookie-consent__inner { align-items: stretch; flex-direction: column; gap: 16px; }
    .cookie-consent__content { font-size: 13px; }
    .cookie-consent__actions { flex-basis: auto; width: 100%; }
}
