/* Cookie consent banner & preferences (above chat / nav) */
#rf-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200000;
    padding: 0;
    font-family: var(--font-sans, 'Lato', sans-serif);
    pointer-events: none;
}

#rf-cookie-banner.rf-cc-visible {
    pointer-events: auto;
}

.rf-cc-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(26, 26, 26, 0.96);
    color: #f5f5f5;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.rf-cc-inner h2 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
}

.rf-cc-inner p {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.rf-cc-links {
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.rf-cc-links a {
    color: #e8b4c7;
    text-decoration: underline;
}

.rf-cc-links a:hover {
    color: #fff;
}

.rf-cc-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.rf-cc-actions button {
    font-family: inherit;
    font-size: 0.85rem;
    padding: 0.55rem 1rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: opacity 0.15s ease, background 0.15s ease;
}

.rf-cc-btn-primary {
    background: var(--color-accent, #c2447b);
    color: #fff;
}

.rf-cc-btn-primary:hover {
    opacity: 0.92;
}

.rf-cc-btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
}

.rf-cc-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
}

.rf-cc-custom {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: none;
}

.rf-cc-custom.rf-cc-open {
    display: block;
}

.rf-cc-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.rf-cc-row input[type='checkbox'] {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.rf-cc-row label {
    font-size: 0.88rem;
    line-height: 1.45;
    cursor: pointer;
}

.rf-cc-row strong {
    display: block;
    margin-bottom: 0.2rem;
    color: #fff;
}

.rf-cc-badge {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.55);
    margin-left: 0.35rem;
}

@media (max-width: 600px) {
    .rf-cc-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .rf-cc-actions button {
        width: 100%;
    }
}
