#armaturam-cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 15px 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999999;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.armaturam-cookie-consent-text {
    max-width: 75%;
    line-height: 1.4;
}

.armaturam-cookie-consent-link {
    color: #E31E25;
    text-decoration: underline;
}

.armaturam-cookie-consent-button {
    background-color: #E31E25; /* Цвет будет заменён из JS */
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 3px;
    margin-left: 15px;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.armaturam-cookie-consent-button:hover,
.armaturam-cookie-consent-button:focus {
    background-color: #b81a20;
    outline: none;
}