/* Public styles for Kemore SEO. */
.rrseo-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    font-size: 14px;
    margin: 12px 0;
}
.rrseo-breadcrumbs a { text-decoration: none; }
.rrseo-breadcrumbs span { opacity: .55; }
.rrseo-back-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: #2563eb;
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .25);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 9999;
}
.rrseo-back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}
.rrseo-back-to-top:hover { transform: translateY(-2px); }
