.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    display: none;
    padding: 16px;
    background: rgba(29, 28, 28, 0.96);
    color: #fff;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
    font-family: 'Open Sans', Arial, sans-serif;
}

.cookie-consent.is-visible {
    display: block;
}

.cookie-consent__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent__title {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.cookie-consent__text {
    flex: 1 1 auto;
    font-size: 13px;
    line-height: 1.5;
}

.cookie-consent__text p {
    margin: 0;
}

.cookie-consent__text a {
    color: #fff;
    text-decoration: underline;
}

.cookie-consent__text a:hover {
    color: #f1f1f1;
}

.cookie-consent__actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.cookie-consent__btn {
    min-width: 120px;
    height: 40px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color .2s, color .2s, border-color .2s;
}

.cookie-consent__btn_accept {
    background: #cb000a;
    border-color: #cb000a;
    color: #fff;
}

.cookie-consent__btn_accept:hover {
    background: #e93638;
    border-color: #e93638;
}

.cookie-consent__btn_reject {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

.cookie-consent__btn_reject:hover {
    background: #fff;
    color: #1d1c1c;
}

@media (max-width: 767px) {
    .cookie-consent__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent__actions {
        flex-direction: column;
    }

    .cookie-consent__btn {
        width: 100%;
    }
}
