.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100001;
    padding: 16px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.cookie-consent[hidden] {
    display: none !important;
}

#nca-cookiesaccept-line,
.nca-cookiesaccept-line {
    display: none !important;
}

.cookie-consent__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    background: #2b2b2b;
    color: #fff;
    border: 1px solid #4a4a4a;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.cookie-consent__text {
    flex: 1 1 auto;
    min-width: 0;
}

.cookie-consent__title {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.cookie-consent__text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #abaaaa;
}

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

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

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

.cookie-consent__btn {
    min-width: 120px;
    min-height: 44px;
    padding: 10px 18px;
    border: 0;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.cookie-consent__btn--accept {
    background: #f54435;
    color: #fff;
    border-bottom: 2px solid #de3526;
}

.cookie-consent__btn--accept:hover {
    background: #df1d0c;
}

.cookie-consent__btn--reject {
    background: transparent;
    color: #fff;
    border: 1px solid #4a4a4a;
}

.cookie-consent__btn--reject:hover {
    border-color: #f54435;
    color: #f54435;
}

@media (max-width: 767px) {
    .cookie-consent {
        padding: 10px;
    }

    .cookie-consent__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px;
    }

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

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