/* Bynix cookie banner — purple/teal accent theme */
.bx-cookie-banner {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 9999;

    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;

    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(20, 15, 35, 0.97);
    color: #fff;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(138, 66, 255, 0.2);
    opacity: 0;
    transform: translateY(110%);
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
    will-change: transform, opacity;
}

.bx-cookie-banner.bx-cookie-banner--visible {
    opacity: 1;
    transform: translateY(0);
}

.bx-cookie-banner__text {
    max-width: 900px;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.bx-cookie-banner__policy-link {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    white-space: nowrap;
    margin-left: 6px;
    transition: color 0.2s;
}

.bx-cookie-banner__policy-link:hover {
    color: #8a42ff;
}

.bx-cookie-banner__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    flex-shrink: 0;
}

.bx-cookie-banner__btn {
    border: 0;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s, transform 0.15s;
}

.bx-cookie-banner__btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.bx-cookie-banner__btn--primary {
    background: #8a42ff;
    color: #fff;
}

.bx-cookie-banner__btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(138, 66, 255, 0.4);
}

.bx-cookie-banner__btn--link {
    background: transparent;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: underline;
    padding: 10px 6px;
    font-size: 13px;
}

/* Footer cookie / legal links */
.bx-sf-legal-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.bx-sf-legal-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: color 0.2s;
}

.bx-sf-legal-link:hover {
    color: #8a42ff;
}

.bx-sf-cookie-link {
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.bx-sf-cookie-link:hover {
    color: #8a42ff;
}

/* Footer has light bg (bg-one) — cookie settings button matches other footer links */
.footer-one .bx-sf-cookie-link {
    color: rgba(0, 0, 0, 0.7);
    font-size: 20px;
    font-weight: 500;
    line-height: 53px;
}

.footer-one .bx-sf-cookie-link:hover {
    color: #B66CFF;
}

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

    .bx-cookie-banner__actions {
        justify-content: flex-start;
    }

    .bx-sf-legal-links {
        gap: 12px;
    }
}
