.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: rgba(24, 24, 27, 0.97);
    color: #f4f4f5;
    padding: 1.25rem 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
    display: none;
}

html.cookie-consent-pending .cookie-consent-banner {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

html.cookie-consent-resolved .cookie-consent-banner {
    display: none !important;
}

.cookie-consent-banner.is-visible {
    display: block;
    transform: translateY(0);
    opacity: 1;
}

.cookie-consent-banner.is-hidden {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-consent-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-consent-banner__text {
    flex: 1 1 280px;
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
    color: #e4e4e7;
}

.cookie-consent-banner__links {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
}

.cookie-consent-banner__links a {
    color: #a5b4fc;
    text-decoration: underline;
    font-size: 12px;
}

.cookie-consent-banner__links a:hover {
    color: #c7d2fe;
}

.cookie-consent-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-consent-banner__actions .rbt-btn {
    white-space: nowrap;
}

.cookie-consent-fab {
    position: fixed;
    right: 25px;
    bottom: 200px;
    width: 64px;
    height: 64px;
    border: none;
    border-radius: 50%;
    background: #27272a;
    color: #fbbf24;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    z-index: 9998;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

html.cookie-consent-resolved .cookie-consent-fab {
    display: flex;
}

.cookie-consent-fab.is-visible {
    display: flex;
}

.cookie-consent-fab.is-hidden {
    display: none !important;
}

.cookie-consent-fab:hover {
    transform: scale(1.08);
    background: #3f3f46;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cookie-consent-fab:focus-visible {
    outline: 2px solid #a5b4fc;
    outline-offset: 3px;
}

#cookie-consent-reject{
    color: white !important;
}

.cookie-consent-fab svg {
    width: 26px;
    height: 26px;
}

.cookie-consent-fab i {
    font-size: 22px;
    line-height: 1;
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 1rem 0;
    }

    .cookie-consent-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-banner__actions {
        width: 100%;
    }

    .cookie-consent-banner__actions .rbt-btn {
        flex: 1 1 auto;
        justify-content: center;
    }

    .cookie-consent-fab {
        right: 18px;
        bottom: 220px;
        width: 56px;
        height: 56px;
    }

    .cookie-consent-fab svg {
        width: 22px;
        height: 22px;
    }
}
