/* Баннер-карточка справа внизу */
.cookie-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 380px;
    width: calc(100% - 40px);

    background: #1a1a1c;
    color: white;

    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-family: sans-serif;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cookie-bar__content {
    padding: 20px;
}

.cookie-bar p {
    margin: 0 0 16px 0;
    font-size: 14px;
    line-height: 1.5;
     color: #eee;
}



.cookie-bar a {
    color: #4a90e2;
    text-decoration: none;
}

.cookie-bar a:hover {
    text-decoration: underline;
}

.cookie-bar__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-consent__accept,
.cookie-consent__decline {

    background: #3d4347;
    color: #ffffff;
    border-color: #444;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.cookie-consent__accept {
        background: #ffc107;
    color: #0d0d0d;
}

.cookie-consent__accept:hover {
    background: #ffc107;
    transform: translateY(-1px);
}



.cookie-consent__decline:hover {
    background: #3d4347;
    transform: translateY(-1px);
}