/* CB Cookie Consent — Cookie Bar */

#cb-cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #000000;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.4);
}

#cb-cookie-bar.cb-hidden {
    display: none;
}

.cb-cookie-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cb-cookie-bar__text {
    flex: 1 1 300px;
    padding-right: 32px;
}

.cb-cookie-bar__title {
    font-weight: 700;
    font-size: 15px;
    margin: 0 0 6px 0;
    display: block;
}

.cb-cookie-bar__body {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.cb-cookie-bar__body a {
    color: #ffffff;
    text-decoration: underline;
}

.cb-cookie-bar__body a:hover {
    color: #FF6600;
}

.cb-cookie-bar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cb-cookie-bar__btn {
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 4px;
    line-height: 1;
    transition: opacity 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.cb-cookie-bar__btn:hover {
    opacity: 0.85;
}

.cb-cookie-bar__btn--reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cb-cookie-bar__btn--accept {
    background: #FF6600;
    color: #ffffff;
    border: 2px solid #FF6600;
}

.cb-cookie-bar__close {
    position: absolute;
    top: 10px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 6px;
    transition: color 0.2s ease;
}

.cb-cookie-bar__close:hover {
    color: #ffffff;
}

@media (max-width: 600px) {
    #cb-cookie-bar {
        font-size: 12px;
    }

    .cb-cookie-bar__inner {
        padding: 12px 14px 12px 14px;
        gap: 10px;
        flex-wrap: nowrap;
        align-items: center;
    }

    .cb-cookie-bar__text {
        flex: 1 1 auto;
        padding-right: 0;
        min-width: 0;
    }

    .cb-cookie-bar__title {
        font-size: 13px;
        margin-bottom: 3px;
    }

    .cb-cookie-bar__body {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .cb-cookie-bar__actions {
        flex-direction: column;
        gap: 6px;
        flex-shrink: 0;
    }

    .cb-cookie-bar__btn {
        padding: 7px 12px;
        font-size: 12px;
        white-space: nowrap;
    }

    .cb-cookie-bar__close {
        top: 6px;
        right: 8px;
        font-size: 16px;
    }
}
