.cookie-banner {
    position: fixed;
    bottom: -150%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: bottom 0.5s ease-in-out;
    z-index: 9999;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    max-width: 70%;
}

.cookie-banner a {
    color: #007bff;
    text-decoration: none;
}

.cookie-banner button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
}

.cookie-banner button:hover {
    background: #0056b3;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 10px;
    }
    .cookie-banner p {
        max-width: 100%;
        font-size: 14px;
    }
    .cookie-banner button {
        width: 100%;
        max-width: 300px;
    }
}

.cookie-banner button {
    transition: background-color 0.3s ease-in-out;
}

.cookie-banner button:hover {
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3);
}