.cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 15px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    font-family: Arial, sans-serif;
    transition: transform 0.3s ease;
    transform: translateY(0);
}

.cookie-notification.hidden {
    transform: translateY(100%);
}

.cookie-notification__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.cookie-notification__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1 1 300px;
}

.cookie-notification__button {
    background: #333;
    background-color: #333333;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.cookie-notification__button:hover {
    background: #45a049;
}

@media (max-width: 768px) {
    .cookie-notification__content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-notification__button {
        width: 100%;
    }
}