.cookie__banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.cookie__banner.show {
    opacity: 1;
    pointer-events: auto;
}

.cookie__btn {
    background: #4CAF50;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

.cookie__btn:hover {
    background: #45a049;
}