

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;600;700;900&display=swap');

.cookies-bar-wrap {
    width: 100%;
    padding: 0 16px 16px;
    position: fixed;
    z-index: 9999;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}
.cookies-bar-wrap.hide { display: none; }
.cookies-bar {
    width: 100%;
    max-width: 780px;
    background: rgba(30, 30, 30, 0.92);
    backdrop-filter: blur(2px);
    border-radius: 8px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    box-sizing: border-box;
}
.cookies-bar__text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    min-width: 200px;
}
.cookies-bar__title {
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}
.cookies-bar__text a {
    color: #ffffff;
    text-decoration: underline;
}
.cookies-bar__btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 28px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}
.cookies-bar__btn:hover {
    background: #26cef1;
    color: #000000;
}
@media (max-width: 600px) {
    .cookies-bar { padding: 16px; gap: 12px; }
    .cookies-bar__btn { width: 100%; text-align: center; }
}
