.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: #2a2d2f;
color: #fff;
padding: 14px 20px;
border-top: 1px solid #abbdc3;
display: none; /* Показывается только если нет согласия */
z-index: 99999;
font-family: system-ui, -apple-system, sans-serif;
font-size: 14px;
line-height: 1.5;
}
.cookie-banner-inner {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
gap: 16px;
flex-wrap: wrap;
}
.cookie-banner p {
margin: 0;
flex: 1;
min-width: 220px;
}
.cookie-banner a {
color: #abbdc3;
text-decoration: none;
}
.cookie-banner a:hover {
text-decoration: underline;
}
.cookie-accept-btn {
height: 48px;
line-height: 48px;
padding: 0 29px;
border: 1px solid #abbdc3;
background: #fff;
display: inline-block;
color: #000000;
text-decoration: none;
transition: 0.3s;
background: #f9f9f9;
font-size: 1rem;
cursor: pointer;
}
.cookie-accept-btn:hover { background: #2a2d2f; color: #fff; }
.cookie-accept-btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

@media (max-width: 640px) {
.cookie-banner-inner { flex-direction: column; text-align: center; }
.cookie-accept-btn { width: 100%; }
}