/* ─── FoodLink Discovery Page ─────────────────────────────────────── */

:root {
    --orange: #FF8A00;
    --orange-light: #fff4e6;
    --text-primary: #1a1a2e;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --bg: #f9fafb;
}

.restaurants-page {
    background: var(--bg);
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text-primary);
}

.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.rl-hidden { display: none !important; }

/* ── Header ──────────────────────────────────────────────────────── */
.rl-header {
    background: rgba(255,255,255,0.92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 200;
}

.rl-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    position: relative;
}

.rl-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 800;
    white-space: nowrap;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}
.rl-logo img { height: 32px; }
.rl-logo span em,
.rl-logo span strong { color: var(--orange); font-style: normal; }

/* ── Search ──────────────────────────────────────────────────────── */
.rl-search {
    flex: 1;
    display: flex;
    gap: 8px;
    max-width: 600px;
}
.rl-search-wrap {
    flex: 1;
    position: relative;
}
.rl-search-wrap input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: .95rem;
    font-family: inherit;
    outline: none;
    background: #fff;
    color: var(--text-primary);
    transition: border-color .15s;
    box-sizing: border-box;
}
.rl-search-wrap input:focus { border-color: var(--orange); }
.rl-search button {
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .15s;
    flex-shrink: 0;
}
.rl-search button:hover { opacity: .88; }

/* ── Autocomplete dropdown ───────────────────────────────────────── */
.rl-suggest {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    z-index: 400;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .18s, transform .18s;
}
.rl-suggest.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.rl-suggest-group { padding: 6px 0; }
.rl-suggest-group + .rl-suggest-group { border-top: 1px solid var(--border); }
.rl-suggest-label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #aaa;
    padding: 6px 14px 4px;
    margin: 0;
}
.rl-suggest .rl-suggest-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 14px;
    border: none;
    background: #fff;
    color: var(--text-primary);
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: .92rem;
    transition: background .12s;
    box-shadow: none;
    border-radius: 0;
}
.rl-suggest .rl-suggest-item:hover,
.rl-suggest .rl-suggest-item.focused { background: #f3f4f6; color: var(--text-primary); }
.rl-suggest .rl-suggest-item.focused .rl-suggest-name { color: var(--text-primary); }
.rl-suggest-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--bg);
    color: var(--text-muted);
    overflow: hidden;
}
.rl-suggest-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.rl-suggest-icon.place { background: #fff0e6; color: var(--orange); }
.rl-suggest-text { flex: 1; min-width: 0; }
.rl-suggest-name {
    font-weight: 600;
    font-size: .9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rl-suggest-name mark {
    background: none;
    color: var(--orange);
    font-weight: 700;
}
.rl-suggest-sub {
    font-size: .78rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rl-suggest-badge {
    font-size: .72rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 8px;
    flex-shrink: 0;
}
.rl-suggest-badge.active  { background: #e8f9ee; color: #2a9d5c; }
.rl-suggest-badge.unclaimed { background: #f0f4ff; color: #4361ee; }
.rl-suggest-empty {
    padding: 14px;
    text-align: center;
    color: var(--text-muted);
    font-size: .88rem;
}

/* ── Language switcher ───────────────────────────────────────────── */
.rl-lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    padding: 8px 12px;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 600;
    font-family: inherit;
    white-space: nowrap;
    transition: border-color .15s, background .15s;
}
.rl-lang-btn:hover { border-color: var(--orange); background: var(--orange-light); }
.rl-lang-btn .rl-chevron { transition: transform .2s; color: var(--text-muted); }
.rl-lang-btn.open .rl-chevron { transform: rotate(180deg); }

/* Dropdown */
.rl-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    border: 1px solid var(--border);
    min-width: 180px;
    padding: 8px;
    z-index: 300;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .2s, transform .2s;
}
.rl-lang-dropdown.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.rl-lang-title {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #aaa;
    margin: 4px 8px 8px;
}
.rl-lang-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: .92rem;
    font-family: inherit;
    color: #333;
    text-align: left;
    transition: background .15s;
}
.rl-lang-opt:hover { background: #f5f5f5; }
.rl-lang-opt.active { background: var(--orange-light); color: var(--orange); font-weight: 600; }
.rl-lang-check { margin-left: auto; color: var(--orange); display: none; }
.rl-lang-opt.active .rl-lang-check { display: block; }

/* Flags */
.fi.fis { width: 22px; height: 22px; border-radius: 50%; }
.rl-flag-sm { width: 16px; height: 16px; border-radius: 3px; }

/* ── Filters ─────────────────────────────────────────────────────── */
.rl-main { max-width: 1100px; margin: 0 auto; padding: 24px 16px; }
.rl-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.rl-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: .88rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    color: var(--text-primary);
}
.rl-filter-btn:hover,
.rl-filter-btn.active {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}
.rl-filter-btn svg { flex-shrink: 0; }

/* Utility filters (Ordina online / Aperto ora) — bordo tratteggiato */
.rl-filter-util {
    border-style: dashed;
    opacity: .85;
}
.rl-filter-util:hover,
.rl-filter-util.active {
    opacity: 1;
    border-style: solid;
}

/* Divisore verticale tra categorie e filtri utility */
.rl-filter-divider {
    width: 1px;
    background: var(--border);
    margin: 4px 2px;
    flex-shrink: 0;
}

/* Near-me button states */
.rl-filter-nearby.rl-nearby-on {
    background: #e63946;
    color: #fff;
    border-color: #e63946;
    border-style: solid;
    opacity: 1;
}
.rl-filter-nearby.rl-nearby-loading {
    opacity: .6;
    pointer-events: none;
}

/* Distance badge shown on cards when nearby filter is active */
.rl-dist-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: .72rem;
    font-weight: 600;
    color: #e63946;
    white-space: nowrap;
}

/* Geo error toast */
#geoToast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: #fff;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: .84rem;
    z-index: 9999;
    opacity: 0;
    transition: opacity .25s;
    pointer-events: none;
    max-width: 90vw;
    text-align: center;
}
#geoToast.show { opacity: 1; }

/* Scroll orizzontale su mobile */
@media (max-width: 640px) {
    .rl-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        padding-bottom: 4px;
        gap: 6px;
    }
    .rl-filters::-webkit-scrollbar { display: none; }
    .rl-filter-btn {
        padding: 6px 11px;
        font-size: .78rem;
        gap: 4px;
        white-space: nowrap;
    }
    .rl-filter-btn svg { width: 11px; height: 11px; }
}

/* ── Country filters ─────────────────────────────────────────────── */
.rl-country-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.rl-country-filters:empty { display: none; }
.rl-country-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: .85rem;
    font-family: inherit;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-primary);
    transition: all .18s;
    white-space: nowrap;
}
.rl-country-btn:hover { border-color: var(--orange); color: var(--orange); }
.rl-country-btn.active {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}
.rl-country-btn .fi { width: 16px; height: 16px; border-radius: 3px; flex-shrink: 0; }
.rl-country-count {
    font-size: .75rem;
    opacity: .7;
    font-weight: 400;
}

/* ── Grid ────────────────────────────────────────────────────────── */
.rl-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* ── Card ────────────────────────────────────────────────────────── */
.rl-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
    border: 1px solid var(--border);
    transition: transform .2s, box-shadow .2s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.rl-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.rl-card-cover {
    width: 100%;
    height: 160px;
    object-fit: cover;
    background: #eee;
    display: block;
}
.rl-card-cover-placeholder {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, var(--orange) 0%, #ffb347 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.rl-placeholder-brand {
    font-size: 1.7rem;
    font-weight: 700;
    color: rgba(255,255,255,.9);
    letter-spacing: -0.5px;
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-user-select: none;
    user-select: none;
}
.rl-placeholder-brand strong {
    font-weight: 800;
}
.rl-card-body { padding: 14px 16px; }
.rl-card-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--text-primary);
}
.rl-card-cuisine {
    font-size: .83rem;
    color: var(--text-muted);
    margin: 0 0 8px;
    text-transform: capitalize;
}
.rl-card-address {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    font-size: .82rem;
    color: var(--text-muted);
    margin: 0 0 10px;
    overflow: hidden;
}
.rl-card-address span {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rl-card-address svg { flex-shrink: 0; margin-top: 1px; }
.rl-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

/* ── Badges ──────────────────────────────────────────────────────── */
.rl-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: .78rem;
    font-weight: 600;
}
.rl-badge svg { flex-shrink: 0; }
.rl-badge-active  { background: #e8f9ee; color: #2a9d5c; }
.rl-badge-pending { background: var(--orange-light); color: var(--orange); }
.rl-badge-info    { background: #f0f4ff; color: #4361ee; }
.rl-badge-open    { background: #e8f9ee; color: #2a9d5c; }
.rl-badge-closed  { background: #fde8e8; color: #c0392b; }

.rl-rating {
    font-size: .85rem;
    color: var(--orange);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

/* ── Loading / Empty ─────────────────────────────────────────────── */
.rl-loading, .rl-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ── Footer ──────────────────────────────────────────────────────── */
.rl-footer {
    text-align: center;
    padding: 24px;
    color: var(--text-muted);
    font-size: .85rem;
    margin-top: 40px;
    border-top: 1px solid var(--border);
}
.rl-footer a { color: var(--orange); text-decoration: none; }

/* ── Explore banner ─────────────────────────────────────────────── */
.rl-explore-result {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--orange-light);
    border: 1px solid #ffd199;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: .9rem;
    color: #7a4a00;
    margin-bottom: 16px;
}
.rl-explore-result svg { flex-shrink: 0; color: var(--orange); }

/* Spinner animation */
@keyframes rl-spin { to { transform: rotate(360deg); } }
.rl-spin { animation: rl-spin .8s linear infinite; will-change: transform; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 600px) {
    .rl-header-inner { flex-wrap: wrap; }
    .rl-search { max-width: 100%; order: 3; flex-basis: 100%; }
    .rl-lang-btn { margin-left: auto; }
    .rl-grid { grid-template-columns: 1fr; }
    .rl-lang-dropdown { right: 0; }
}

/* ── Mode toggle bar ─────────────────────────────────────────────── */
.rl-mode-bar {
    display: flex;
    justify-content: center;
    padding: 10px 16px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 57px;
    z-index: 190;
}

.rl-mode-pill {
    display: flex;
    background: #f3f4f6;
    border-radius: 30px;
    padding: 4px;
    gap: 2px;
}

.rl-mode-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 8px 22px;
    border-radius: 26px;
    border: none;
    background: transparent;
    font-size: .9rem;
    font-family: inherit;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}
.rl-mode-btn.active {
    background: #fff;
    color: var(--text-primary);
    box-shadow: 0 1px 5px rgba(0,0,0,.12);
    font-weight: 600;
}
.rl-mode-btn:hover:not(.active) { color: var(--text-primary); }

@media (max-width: 640px) {
    .rl-mode-bar { top: 105px; }
    .rl-mode-btn { padding: 7px 14px; font-size: .82rem; gap: 5px; }
}

/* ── Partner section: hidden state ──────────────────────────────── */
.rl-ph-hidden { display: none !important; }

/* ── Partner hero ────────────────────────────────────────────────── */
.rl-ph-cover-img {
    display: block;
    max-width: 100%;
    width: 860px;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
}

.rl-ph-hero {
    text-align: center;
    padding: 52px 24px 40px;
    background: linear-gradient(160deg, #fff8f0 0%, #fff4e6 50%, #fff 100%);
    border-bottom: 1px solid #fde8cc;
}
.rl-ph-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 12px;
    line-height: 1.2;
}
.rl-ph-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .rl-ph-title { font-size: 1.5rem; }
    .rl-ph-subtitle { font-size: .95rem; }
    .rl-ph-hero { padding: 36px 20px 28px; }
}

/* ── Partner benefits ────────────────────────────────────────────── */
.rl-ph-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 920px;
    margin: 36px auto 0;
    padding: 0 24px 36px;
    border-bottom: 1px solid var(--border);
}
.rl-ph-benefit {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 22px 16px 18px;
    text-align: center;
    transition: box-shadow .18s;
}
.rl-ph-benefit:hover { box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.rl-ph-bico {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--orange-light);
    border: 1.5px solid #ffd199;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--orange);
    transition: background .18s;
}
.rl-ph-benefit:hover .rl-ph-bico {
    background: #ffe8c2;
}
.rl-ph-btit { font-weight: 700; font-size: .93rem; margin-bottom: 5px; color: var(--text-primary); }
.rl-ph-bsub { font-size: .8rem; color: var(--text-muted); line-height: 1.45; }

@media (max-width: 640px) {
    .rl-ph-benefits { grid-template-columns: repeat(2, 1fr); padding: 0 16px 28px; margin-top: 24px; }
}

/* ── Partner search section ──────────────────────────────────────── */
.rl-ph-search-section {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 24px 56px;
    text-align: center;
}
.rl-ph-search-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px;
}
.rl-ph-search-sub {
    color: var(--text-muted);
    font-size: .93rem;
    margin: 0 0 22px;
}
.rl-ph-search-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.rl-ph-input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid var(--border);
    border-radius: 30px;
    font-size: .95rem;
    font-family: inherit;
    outline: none;
    color: var(--text-primary);
    transition: border-color .2s, box-shadow .2s;
    min-width: 0;
}
.rl-ph-input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,138,0,.12);
}
.rl-ph-search-btn {
    padding: 0 18px;
    background: var(--orange);
    border: none;
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .1s;
    flex-shrink: 0;
    height: 46px;
    width: 52px;
}
.rl-ph-search-btn:hover { background: #e07700; }
.rl-ph-search-btn:active { transform: scale(.96); }

@media (max-width: 640px) {
    .rl-ph-search-section { padding: 28px 16px 40px; }
    .rl-ph-search-title { font-size: 1.15rem; }
}

/* ── Place cards (partner search results) ────────────────────────── */
.rl-ph-results {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}
.rl-place-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 12px 14px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: border-color .18s, box-shadow .18s, transform .15s;
}
.rl-place-card:hover {
    border-color: var(--orange);
    box-shadow: 0 4px 18px rgba(255,138,0,.12);
    transform: translateY(-1px);
}
.rl-place-card.rl-place-fl { border-color: #a7e3c0; }
.rl-place-card.rl-place-fl:hover { border-color: #2a9d5c; box-shadow: 0 4px 18px rgba(42,157,92,.12); }

.rl-place-thumb {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg);
}
.rl-place-thumb-ph {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    background: var(--orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    flex-shrink: 0;
}
.rl-place-info { flex: 1; min-width: 0; }
.rl-place-name {
    font-weight: 600;
    font-size: .93rem;
    color: var(--text-primary);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rl-place-address {
    font-size: .8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rl-place-rating { font-size: .8rem; color: #f59e0b; font-weight: 600; }

.rl-place-badge {
    font-size: .71rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}
.rl-place-badge-fl  { background: #e8f9ee; color: #2a9d5c; }
.rl-place-badge-new { background: #fff4e6; color: var(--orange); }

.rl-place-cta {
    font-weight: 700;
    font-size: .83rem;
    color: var(--orange);
    white-space: nowrap;
    margin-left: 4px;
    flex-shrink: 0;
}

.rl-place-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 28px;
    color: var(--text-muted);
    font-size: .9rem;
}
.rl-place-empty {
    text-align: center;
    padding: 28px;
    color: var(--text-muted);
    font-size: .9rem;
    margin: 0;
}

@media (max-width: 480px) {
    .rl-place-cta { display: none; }
    .rl-place-badge { display: none; }
}

@media (max-width: 420px) {
    .rl-badge { padding: 4px 7px; gap: 3px; }
    .rl-badge-text { display: none; }
    .rl-card-footer { gap: 4px; }
}
