/* ================================================================
   Ravi Cat Tag Widgets — by Ravi
   Font: Roboto | Text: #000 | Accent: #FD5B66
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* ── Shared base ─────────────────────────────────────────────── */
.rctw-cat-widget,
.rctw-tag-widget {
    font-family: 'Roboto', sans-serif;
    color: #000;
    margin-bottom: 18px;
}

/* ── Widget Title ────────────────────────────────────────────── */
.rctw-title {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #FD5B66;
    padding-bottom: 6px;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.rctw-title span { color: #FD5B66; font-size: 1.05rem; }

/* ── Pills wrap ──────────────────────────────────────────────── */
.rctw-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ── Category Pill (filled default) ─────────────────────────── */
.rctw-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none !important;
    padding: 5px 14px;
    border-radius: 100px;
    background: #FD5B66;
    color: #fff !important;
    transition: opacity 0.18s, background 0.18s, color 0.18s;
    line-height: 1.4;
}
.rctw-cat-pill:hover { opacity: 0.85; }

/* ── Tag Pill (outlined default) ─────────────────────────────── */
.rctw-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none !important;
    padding: 4px 12px;
    border-radius: 6px;
    background: transparent;
    color: #FD5B66 !important;
    border: 2px solid #FD5B66;
    transition: background 0.18s, color 0.18s;
    line-height: 1.4;
}
.rctw-tag-pill:hover {
    background: #FD5B66;
    color: #fff !important;
}

/* ── Count badge ─────────────────────────────────────────────── */
.rctw-count {
    font-size: 0.78em;
    opacity: 0.75;
    font-weight: 400;
}

/* ── Empty / editor placeholder ─────────────────────────────── */
.rctw-empty {
    color: #999;
    font-size: 0.85rem;
    font-style: italic;
    margin: 0;
}
