.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    width: 90%;
    background-color: rgba(250, 250, 245, 0.95); /* бледно-белый / молочный */
    color: #2e2e2e;
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.6;
    z-index: 9999;
    display: none;
}

.cookie-link {
    color: #800020; /* бордовая, читаемая */
    font-weight: 600;
    text-decoration: underline;
}

.cookie-button {
    background-color: #800020; /* бордовая кнопка */
    border: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-button:hover {
    background-color: #5c0015;
}
