.cookie-banner {
    position: fixed;
    bottom: 100px;
    left: 0;
    width: 100%;
    background: #333;
    color: #fff;
    padding: 15px 0;
    text-align: center;
    z-index: 9999;
}
.cookie-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.cookie-btn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}
.cookie-btn:hover { background: #0056b3; }