#cookie-banner {
    display: none; /* по умолчанию скрыт, JS показывает */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #222;
    color: #fff;
    padding: 15px 20px;
    text-align: center;
    z-index: 9999;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

#cookie-banner .cookie-banner-text {
    display: inline-block;
    margin-right: 15px;
    vertical-align: middle;
}

#cookie-banner #accept-cookies {
    margin-left: 10px;
    padding: 8px 20px;
    background-color: #f7c51e;
    border: none;
    color: #000;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.2s ease;
    vertical-align: middle;
}

#cookie-banner #accept-cookies:hover {
    background-color: #e0b214;
}

@media (max-width: 600px) {
    #cookie-banner {
        padding: 12px 15px;
        font-size: 13px;
    }
    #cookie-banner .cookie-banner-text {
        display: block;
        margin: 0 0 10px 0;
    }
    #cookie-banner #accept-cookies {
        margin: 0;
    }
}